-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApitestController.php
127 lines (109 loc) · 4.5 KB
/
ApitestController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
namespace backend\controllers;
use common\lib\ApiReflection;
use common\lib\Curl;
use Yii;
use yii\helpers\Inflector;
class ApitestController extends AuthController
{
/**
* @inheritdoc
*/
public $layout = 'main-iframe';
public $noLoginAccess = ['index'];
/**
* Lists all WebsiteNewsModel models.
* @return mixed
*/
public function actionIndex()
{
$contrl = $this->get('c', '');
$action = $this->get('a','');
$returnParams = [];
$token = 0;
if(!empty($contrl) && !empty($action)){
$apiReflection = new ApiReflection();
$classNameTemp = Inflector::id2camel($contrl);
$ref = new \ReflectionClass('\\api\\controllers\\' . $classNameTemp.'Controller');
$parendRef = $ref->getParentClass();
$methods = $ref->getMethods(\ReflectionMethod::IS_PUBLIC);
$parentMethods = $parendRef->getMethods(\ReflectionMethod::IS_PUBLIC);
$ownMethods = array_diff($methods, $parentMethods);
if($parendRef->getShortName() == 'AuthApiCommonContoller'){
$token = 1;
}
if (!empty($ownMethods)) {
foreach ($ownMethods as $own) {
$parm = [];
$actionName = $own->getName();
$apiName = '';
if (strlen($actionName) > 6) {
$apiName = substr($actionName, 0, 6);
}
if ($apiName != 'action') {
continue;
}
$actionName = Inflector::camel2id(substr($actionName, 6, strlen($actionName) - 6));
if($actionName == $action){
$parm['tags'] = $apiReflection->parseDocCommentTags($own);
if (empty($parm['tags']['description']) === false && strpos($parm['tags']['description'], 'targetDoc->') !== false) {
$newDocArr = explode('->', $parm['tags']['description']);
$apiDocClass = $newDocArr[1] ?? '';
$apiDocMethod = $newDocArr[2] ?? '';
if (empty($apiDocClass) == false && empty($apiDocMethod) == false) {
$targetMethod = new \ReflectionMethod($apiDocClass, $apiDocMethod);
$parm['tags'] = $apiReflection->parseDocCommentTags($targetMethod);
}
}
if(!empty($parm['tags']['param'])){
$parm['tags']['param'] = $apiReflection->formatParams($parm['tags']['param']);
}
$apiRootUrl = Yii::$app->params['api_root_url'];
$returnParams['url'] = $apiRootUrl.$contrl.'/'.$action;
$returnParams['params'] = $parm['tags']['param']??'';
$returnParams['actondesc'] = $parm['tags']['description']??'';
}
}
}
}
return $this->render('index', ['apiData' => $returnParams,'token'=>$token]);
}
private function postCurl($params,$url){
$returnArr = [];
$curlObj = new Curl();
$curlObj->post($params)->url($url);
$error = '';
$content = '';
if ($curlObj->error()) {
$error = $curlObj->message();
} else {
$content = $curlObj->data();
Yii::warning('接口全量测试:'.$url.' params:'.json_encode($params).' res:'.$content);
if (json_decode($content,true) != false) {
$newObj = json_decode($content, true);
if ($newObj['code'] != 200) {
$error = $newObj['msg'];
}
}else{
$error = 'json格式错误:'.$content;
}
}
if (empty($error)) {
$returnArr = ['status' => true,'res' => $newObj];
}else{
$returnArr = ['status' => false,'res' => $error];
}
return $returnArr;
}
/**
* Displays a single WebsiteNewsModel model.
* @param integer $id
* @return mixed
*/
public function actionView($id)
{
return $this->render('view', [
'model' => $this->findModel($id),
]);
}
}