Passed
Push — master ( 46c2f1...d9d3cc )
by John
05:30
created
app/Http/Middleware/TrustProxies.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,5 +19,5 @@
 block discarded – undo
19 19
      *
20 20
      * @var int
21 21
      */
22
-    protected $headers = Request::HEADER_X_FORWARDED_ALL;
22
+    protected $headers=Request::HEADER_X_FORWARDED_ALL;
23 23
 }
Please login to merge, or discard this patch.
app/Models/ResponseModel.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
             $statusCode=200;
15 15
         }
16 16
         $output=[
17
-             'ret' => $statusCode,
17
+                'ret' => $statusCode,
18 18
             'desc' => is_null($desc) ? self::desc($statusCode) : $desc,
19 19
             'data' => $data
20 20
         ];
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             $statusCode=1000;
28 28
         }
29 29
         $output=[
30
-             'ret' => $statusCode,
30
+                'ret' => $statusCode,
31 31
             'desc' => is_null($desc) ? self::desc($statusCode) : $desc,
32 32
             'data' => $data
33 33
         ];
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
             '451'  => "Unavailable For Legal Reasons",
45 45
 
46 46
             '1000' => "Unspecified Response", /** Under normal condictions those errors shouldn't been displayed to end users
47
-                                                 *  unless they attempt to do so, some submissions should be intercepted
48
-                                                 *  by the frontend before the request sended
49
-                                                 */
47
+             *  unless they attempt to do so, some submissions should be intercepted
48
+             *  by the frontend before the request sended
49
+             */
50 50
             '1001' => "Internal Sever Error",
51 51
             '1002' => "Service Currently Unavailable",
52 52
             '1003' => "Missing Params",
Please login to merge, or discard this patch.
app/Babel/Submit/Curl.php 1 patch
Braces   +105 added lines, -21 removed lines patch added patch discarded remove patch
@@ -18,11 +18,31 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function login($all_data)
20 20
     {
21
-        if (isset($all_data["url"]))    $url=$all_data["url"]; else throw new Exception("url is not exist in all_data");
22
-        if (isset($all_data["data"]))   $data=$all_data["data"]; else throw new Exception("data is not exist in all_data");
23
-        if (isset($all_data["oj"]))     $oj=$all_data["oj"]; else throw new Exception("oj is not exist in all_data");
24
-        if (isset($all_data["ret"]))    $ret=$all_data["ret"]; else $ret='false';
25
-        if (isset($all_data["handle"])) $handle=$all_data["handle"]; else $handle="default";
21
+        if (isset($all_data["url"])) {
22
+            $url=$all_data["url"];
23
+        } else {
24
+            throw new Exception("url is not exist in all_data");
25
+        }
26
+        if (isset($all_data["data"])) {
27
+            $data=$all_data["data"];
28
+        } else {
29
+            throw new Exception("data is not exist in all_data");
30
+        }
31
+        if (isset($all_data["oj"])) {
32
+            $oj=$all_data["oj"];
33
+        } else {
34
+            throw new Exception("oj is not exist in all_data");
35
+        }
36
+        if (isset($all_data["ret"])) {
37
+            $ret=$all_data["ret"];
38
+        } else {
39
+            $ret='false';
40
+        }
41
+        if (isset($all_data["handle"])) {
42
+            $handle=$all_data["handle"];
43
+        } else {
44
+            $handle="default";
45
+        }
26 46
 
27 47
         $datapost=curl_init();
28 48
         $headers=array("Expect:");
@@ -54,12 +74,36 @@  discard block
 block discarded – undo
54 74
 
55 75
     public function grab_page($all_data)
56 76
     {
57
-        if (isset($all_data["site"]))    $site=$all_data["site"]; else throw new Exception("site is not exist in all_data");
58
-        if (isset($all_data["oj"]))      $oj=$all_data["oj"]; else throw new Exception("oj is not exist in all_data");
59
-        if (isset($all_data["headers"])) $headers=$all_data["headers"]; else $headers=[];
60
-        if (isset($all_data["handle"]))  $handle=$all_data["handle"]; else $handle="default";
61
-        if (isset($all_data["follow"]))  $follow=$all_data["follow"]; else $follow=false;
62
-        if (isset($all_data["vcid"]))  $vcid=$all_data["vcid"]."_"; else $vcid="";
77
+        if (isset($all_data["site"])) {
78
+            $site=$all_data["site"];
79
+        } else {
80
+            throw new Exception("site is not exist in all_data");
81
+        }
82
+        if (isset($all_data["oj"])) {
83
+            $oj=$all_data["oj"];
84
+        } else {
85
+            throw new Exception("oj is not exist in all_data");
86
+        }
87
+        if (isset($all_data["headers"])) {
88
+            $headers=$all_data["headers"];
89
+        } else {
90
+            $headers=[];
91
+        }
92
+        if (isset($all_data["handle"])) {
93
+            $handle=$all_data["handle"];
94
+        } else {
95
+            $handle="default";
96
+        }
97
+        if (isset($all_data["follow"])) {
98
+            $follow=$all_data["follow"];
99
+        } else {
100
+            $follow=false;
101
+        }
102
+        if (isset($all_data["vcid"])) {
103
+            $vcid=$all_data["vcid"]."_";
104
+        } else {
105
+            $vcid="";
106
+        }
63 107
 
64 108
         $handle=urlencode($handle);
65 109
 
@@ -86,16 +130,56 @@  discard block
 block discarded – undo
86 130
 
87 131
     public function post_data($all_data)
88 132
     {
89
-        if (isset($all_data["site"]))         $site=$all_data["site"]; else throw new Exception("site is not exist in all_data");
90
-        if (isset($all_data["data"]))         $data=$all_data["data"]; else throw new Exception("data is not exist in all_data");
91
-        if (isset($all_data["oj"]))           $oj=$all_data["oj"]; else throw new Exception("oj is not exist in all_data");
92
-        if (isset($all_data["ret"]))          $ret=$all_data["ret"]; else $ret=false;
93
-        if (isset($all_data["follow"]))       $follow=$all_data["follow"]; else $follow=true;
94
-        if (isset($all_data["returnHeader"])) $returnHeader=$all_data["returnHeader"]; else $returnHeader=true;
95
-        if (isset($all_data["postJson"]))     $postJson=$all_data["postJson"]; else $postJson=false;
96
-        if (isset($all_data["extraHeaders"])) $extraHeaders=$all_data["extraHeaders"]; else $extraHeaders=[];
97
-        if (isset($all_data["handle"]))       $handle=$all_data["handle"]; else $handle="default";
98
-        if (isset($all_data["vcid"]))  $vcid=$all_data["vcid"]."_"; else $vcid="";
133
+        if (isset($all_data["site"])) {
134
+            $site=$all_data["site"];
135
+        } else {
136
+            throw new Exception("site is not exist in all_data");
137
+        }
138
+        if (isset($all_data["data"])) {
139
+            $data=$all_data["data"];
140
+        } else {
141
+            throw new Exception("data is not exist in all_data");
142
+        }
143
+        if (isset($all_data["oj"])) {
144
+            $oj=$all_data["oj"];
145
+        } else {
146
+            throw new Exception("oj is not exist in all_data");
147
+        }
148
+        if (isset($all_data["ret"])) {
149
+            $ret=$all_data["ret"];
150
+        } else {
151
+            $ret=false;
152
+        }
153
+        if (isset($all_data["follow"])) {
154
+            $follow=$all_data["follow"];
155
+        } else {
156
+            $follow=true;
157
+        }
158
+        if (isset($all_data["returnHeader"])) {
159
+            $returnHeader=$all_data["returnHeader"];
160
+        } else {
161
+            $returnHeader=true;
162
+        }
163
+        if (isset($all_data["postJson"])) {
164
+            $postJson=$all_data["postJson"];
165
+        } else {
166
+            $postJson=false;
167
+        }
168
+        if (isset($all_data["extraHeaders"])) {
169
+            $extraHeaders=$all_data["extraHeaders"];
170
+        } else {
171
+            $extraHeaders=[];
172
+        }
173
+        if (isset($all_data["handle"])) {
174
+            $handle=$all_data["handle"];
175
+        } else {
176
+            $handle="default";
177
+        }
178
+        if (isset($all_data["vcid"])) {
179
+            $vcid=$all_data["vcid"]."_";
180
+        } else {
181
+            $vcid="";
182
+        }
99 183
 
100 184
         $handle=urlencode($handle);
101 185
 
Please login to merge, or discard this patch.
app/Http/Controllers/OAuth/AAuthController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
                 if (config('app.allow_oauth_temp_account')) {
81 81
                     try {
82 82
                         $createdUser=User::create([
83
-                            'name' => $aauth_user->name."#".substr($aauth_user->id , 0 , 4),
83
+                            'name' => $aauth_user->name."#".substr($aauth_user->id, 0, 4),
84 84
                             'email' => Str::random(16)."@temporary.email",
85 85
                             'password' => '',
86 86
                             'avatar' => '/static/img/avatar/default.png',
Please login to merge, or discard this patch.
app/Models/ProblemModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@
 block discarded – undo
296 296
         $preQuery=DB::table($this->table)->where('hide', '=', 0);
297 297
         if ($filter['oj']) {
298 298
             $OJ=OJ::find($filter['oj']);
299
-            if(blank($OJ) || !$OJ->status) {
299
+            if (blank($OJ) || !$OJ->status) {
300 300
                 return null;
301 301
             }
302 302
             $preQuery=$preQuery->where(["OJ"=>$filter['oj']]);
Please login to merge, or discard this patch.
app/Models/Eloquent/Tool/MonacoTheme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@
 block discarded – undo
299 299
 
300 300
     public static function getTheme($id) {
301 301
         if (!isset(self::$theme[$id])) {
302
-            if(isset(self::$theme[config('app.editor_theme')])){
302
+            if (isset(self::$theme[config('app.editor_theme')])) {
303 303
                 return self::$theme[config('app.editor_theme')];
304 304
             }
305 305
             return self::$theme['material-design-darker'];
Please login to merge, or discard this patch.
app/Models/AccountModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
                 Cache::tags(['bing', 'pic'])->put(date("Y-m-d"), "/static/img/themes/bing/".date("Y-m-d").".jpg");
126 126
             }
127 127
             $ret["image"]=Cache::tags(['bing', 'pic'])->get(date("Y-m-d"));
128
-        } catch(Exception $e) {
128
+        } catch (Exception $e) {
129 129
             $ret["image"]="/static/img/themes/material.png";
130 130
         }
131 131
         return $ret;
Please login to merge, or discard this patch.