| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <?php
- namespace Api\Controller;
- use Think\Controller;
- class ImportSwaggerController extends BaseController {
- public function import(){
- $login_user = $this->checkLogin();
- $json = file_get_contents($_FILES["file"]["tmp_name"]) ;
- //$json = file_get_contents("../Public/swagger.json") ;//test
- $json_array = json_decode($json ,1 );
- unset($json);
- if ($json_array['info']) {
- $this->_fromSwaggerV2($json_array);
- return ;
- }
- $this->sendError(10303);
- }
- private function _fromSwaggerV2($json_array){
- $login_user = $this->checkLogin();
- // TODO 这里需要检查下合法性。比如关键字检查/黑名单检查/字符串过滤
- $item_array = array(
- "item_name" => $json_array['info']['title'] ? $json_array['info']['title'] : 'from swagger' ,
- "item_type" => '1' ,
- "item_description" => $json_array['info']['description'] ? $json_array['info']['description'] :'',
- "password" => time().rand(),
- "members" => array(),
- "pages" =>array(
- "pages" => array(),
- "catalogs" => array()
- )
- ) ;
- $level = 2 ;
- $item_array['pages']['pages'] = $this->_getPageByPaths($json_array );
- D("Item")->import( json_encode($item_array) , $login_user['uid'] );
-
- //echo D("Item")->export(196053901215026 );
- //echo json_encode($item_array);
- $this->sendResult(array());
- }
- private function _getPageByPaths($json_array){
- $return = array() ;
- $paths = $json_array['paths'] ;
- foreach ($paths as $url => $value) {
- foreach ($value as $method => $value2) {
- $return[] = $this->_requestToDoc($method , $url , $value2 , $json_array);
- }
- }
- return $return ;
- }
- private function _requestToDoc($method , $url , $request , $json_array){
- $return = array() ;
- $return['page_title'] = $request['summary'] ;
- $return['s_number'] = 99 ;
- $return['page_comments'] = '' ;
-
- $content = '
- **简要描述:**
- - '.$request['description'].'
- **请求URL:**
- - ` '.$url.' `
-
- **请求方式:**
- - '.$method.' ';
- if ($request['header']) {
- $content .='
- **Header:**
- |Header名|是否必选|类型|说明|
- |:---- |:---|:----- |----- |'."\n";
- foreach ($request['headerData'] as $key => $value) {
- $content .= '|'.$value["key"].' | | text | '.$value["value"].' |'."\n";
- }
- }
- if ($request['rawModeData']) {
- $content .= '
- **请求参数示例**
- ```
- '.$request['rawModeData'].'
- ```
- ';
- }
- if ($request['parameters']) {
- $content .='
- **参数:**
- |参数名|是否必选|类型|说明|
- |:---- |:---|:----- |----- |'."\n";
- foreach ($request['parameters'] as $key => $value) {
- $content .= '|'.$value["name"].' | '.($value["required"] ? '是' : '否' ).' |'.$value["type"].' | '.$value["description"].' |'."\n";
- }
- }
- if ($request['responses']['200']) {
- $responses = $request['responses']['200'] ;
- //如果返回信息是引用对象
- if ($request['responses']['200']['schema'] && $request['responses']['200']['schema']['$ref'] ) {
- $str_array = explode("/", $request['responses']['200']['schema']['$ref']) ;
- if ($str_array[1] && $str_array[2]) {
- $responses = $json_array[$str_array[1]][$str_array[2]] ;
- $content .='
- **返回参数说明:**
- |参数名|类型|说明|
- |:---- |:---|:----- |----- |'."\n";
- foreach ($responses['properties'] as $key => $value) {
- $content .= '|'.$key.'|'.$value["type"].' | '.$value["description"].' |'."\n";
- }
-
- }
-
- }else{
- //如果返回的是普通json
- $content .= '
- **返回示例**
- ```
- '.$this->_indent_json(json_encode($responses)).'
- ```
- ';
- }
- }
- $return['page_content'] = $content ;
- return $return ;
- }
- /**
- * Indents a flat JSON string to make it more human-readable.
- *
- * @param string $json The original JSON string to process.
- *
- * @return string Indented version of the original JSON string.
- */
- private function _indent_json($json) {
- $result = '';
- $pos = 0;
- $strLen = strlen($json);
- $indentStr = ' ';
- $newLine = "\n";
- $prevChar = '';
- $outOfQuotes = true;
- for ($i=0; $i<=$strLen; $i++) {
- // Grab the next character in the string.
- $char = substr($json, $i, 1);
- // Are we inside a quoted string?
- if ($char == '"' && $prevChar != '\\') {
- $outOfQuotes = !$outOfQuotes;
- // If this character is the end of an element,
- // output a new line and indent the next line.
- } else if(($char == '}' || $char == ']') && $outOfQuotes) {
- $result .= $newLine;
- $pos --;
- for ($j=0; $j<$pos; $j++) {
- $result .= $indentStr;
- }
- }
- // Add the character to the result string.
- $result .= $char;
- // If the last character was the beginning of an element,
- // output a new line and indent the next line.
- if (($char == ',' || $char == '{' || $char == '[') && $outOfQuotes) {
- $result .= $newLine;
- if ($char == '{' || $char == '[') {
- $pos ++;
- }
- for ($j = 0; $j < $pos; $j++) {
- $result .= $indentStr;
- }
- }
- $prevChar = $char;
- }
- return $result;
- }
- }
|