@@ -24,7 +24,7 @@ |
||
| 24 | 24 | "name"=>$versionInfo[0]["name"], |
| 25 | 25 | "updatable"=>$updatable |
| 26 | 26 | ]; |
| 27 | - }catch(Throwable $e){ |
|
| 27 | + } catch (Throwable $e) { |
|
| 28 | 28 | return null; |
| 29 | 29 | } |
| 30 | 30 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | "name"=>$versionInfo[0]["name"], |
| 25 | 25 | "updatable"=>$updatable |
| 26 | 26 | ]; |
| 27 | - }catch(Throwable $e){ |
|
| 27 | + } catch(Throwable $e){ |
|
| 28 | 28 | return null; |
| 29 | 29 | } |
| 30 | 30 | } |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | } catch (ErrorException $e) { |
| 24 | 24 | } catch (Exception $e) { |
| 25 | 25 | } |
| 26 | - $className = "App\\Babel\\Extension\\$oj\\$synchronizerProvider"; |
|
| 26 | + $className="App\\Babel\\Extension\\$oj\\$synchronizerProvider"; |
|
| 27 | 27 | if (class_exists($className)) { |
| 28 | 28 | return new $className($all_data); |
| 29 | 29 | } else { |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | } catch (ErrorException $e) { |
| 52 | 52 | } catch (Exception $e) { |
| 53 | 53 | } |
| 54 | - $className = "App\\Babel\\Extension\\$oj\\$submitterProvider"; |
|
| 54 | + $className="App\\Babel\\Extension\\$oj\\$submitterProvider"; |
|
| 55 | 55 | if (class_exists($className)) { |
| 56 | 56 | return new $className($sub, $all_data); |
| 57 | 57 | } else { |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | } catch (ErrorException $e) { |
| 57 | 57 | } catch (Exception $e) { |
| 58 | 58 | } |
| 59 | - $className = "App\\Babel\\Extension\\$name\\$judgerProvider"; |
|
| 59 | + $className="App\\Babel\\Extension\\$name\\$judgerProvider"; |
|
| 60 | 60 | if (class_exists($className)) { |
| 61 | 61 | return new $className(); |
| 62 | 62 | } else { |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | //writing database |
| 39 | 39 | $this->transactionDB(); |
| 40 | 40 | |
| 41 | - }catch(Throwable $e){ |
|
| 41 | + } catch(Throwable $e){ |
|
| 42 | 42 | if ($e->getMessage()!==""){ |
| 43 | 43 | $this->command->line("\n <bg=red;fg=white> {$e->getMessage()} </>\n"); |
| 44 | 44 | } |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | |
| 221 | 221 | DB::commit(); |
| 222 | 222 | |
| 223 | - }catch(Throwable $e){ |
|
| 223 | + } catch(Throwable $e){ |
|
| 224 | 224 | DB::rollback(); |
| 225 | 225 | if ($e->getMessage()!=="") { |
| 226 | 226 | $this->command->line("\n <bg=red;fg=white> {$e->getMessage()} </>\n"); |
@@ -39,8 +39,8 @@ discard block |
||
| 39 | 39 | //writing database |
| 40 | 40 | $this->transactionDB(); |
| 41 | 41 | |
| 42 | - }catch(Throwable $e){ |
|
| 43 | - if ($e->getMessage()!==""){ |
|
| 42 | + } catch (Throwable $e) { |
|
| 43 | + if ($e->getMessage()!=="") { |
|
| 44 | 44 | $this->command->line("\n <bg=red;fg=white> {$e->getMessage()} </>\n"); |
| 45 | 45 | } |
| 46 | 46 | } |
@@ -59,12 +59,12 @@ discard block |
||
| 59 | 59 | public function __construct($class) |
| 60 | 60 | { |
| 61 | 61 | $this->command=$class; |
| 62 | - $this->versionParser = new VersionConstraintParser(); |
|
| 62 | + $this->versionParser=new VersionConstraintParser(); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | private function parseVersion() |
| 66 | 66 | { |
| 67 | - if(empty($this->babelConfig)){ |
|
| 67 | + if (empty($this->babelConfig)) { |
|
| 68 | 68 | throw new Exception('Missing babel.json Config file.'); |
| 69 | 69 | } |
| 70 | 70 | |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | |
| 135 | 135 | DB::commit(); |
| 136 | 136 | |
| 137 | - }catch(Throwable $e){ |
|
| 137 | + } catch (Throwable $e) { |
|
| 138 | 138 | DB::rollback(); |
| 139 | 139 | if ($e->getMessage()!=="") { |
| 140 | 140 | $this->command->line("\n <bg=red;fg=white> {$e->getMessage()} </>\n"); |
@@ -88,11 +88,11 @@ discard block |
||
| 88 | 88 | if (!isset($data["ori"]) || !isset($data["path"]) || !isset($data["baseurl"]) || !isset($data["space_deli"]) || !isset($data["cookie"])) { |
| 89 | 89 | throw new Exception("data is not completely exist in cacheImage"); |
| 90 | 90 | } |
| 91 | - $ori = $data["ori"]; |
|
| 92 | - $path = $data["path"]; |
|
| 93 | - $baseurl = $data["baseurl"]; |
|
| 94 | - $space_deli = $data["space_deli"]; |
|
| 95 | - $cookie = $data["cookie"]; |
|
| 91 | + $ori=$data["ori"]; |
|
| 92 | + $path=$data["path"]; |
|
| 93 | + $baseurl=$data["baseurl"]; |
|
| 94 | + $space_deli=$data["space_deli"]; |
|
| 95 | + $cookie=$data["cookie"]; |
|
| 96 | 96 | |
| 97 | 97 | $para["path"]=$path; |
| 98 | 98 | $para["base"]=$baseurl; |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | $reg="/< *im[a]?g[^>]*src *= *[\"\\']?([^\"\\'>]*)[^>]*>/si"; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - return preg_replace_callback($reg, function ($matches) use ($para) { |
|
| 108 | + return preg_replace_callback($reg, function($matches) use ($para) { |
|
| 109 | 109 | global $config; |
| 110 | 110 | $url=trim($matches[1]); |
| 111 | 111 | if (stripos($url, "http://")===false && stripos($url, "https://")===false) { |
@@ -138,24 +138,24 @@ discard block |
||
| 138 | 138 | public function procInfo($data) |
| 139 | 139 | { |
| 140 | 140 | if (isset($data["path"])) { |
| 141 | - $path = $data["path"]; |
|
| 141 | + $path=$data["path"]; |
|
| 142 | 142 | } else { |
| 143 | 143 | throw new Exception("path is not exist in data"); |
| 144 | 144 | } |
| 145 | 145 | if (isset($data["baseurl"])) { |
| 146 | - $baseurl = $data["baseurl"]; |
|
| 146 | + $baseurl=$data["baseurl"]; |
|
| 147 | 147 | } else { |
| 148 | 148 | throw new Exception("baseurl is not exist in data"); |
| 149 | 149 | } |
| 150 | 150 | if (isset($data["space_deli"])) { |
| 151 | - $space_deli = $data["space_deli"]; |
|
| 151 | + $space_deli=$data["space_deli"]; |
|
| 152 | 152 | } else { |
| 153 | - $space_deli = true; |
|
| 153 | + $space_deli=true; |
|
| 154 | 154 | } |
| 155 | 155 | if (isset($data["cookie"])) { |
| 156 | - $cookie = $data["cookie"]; |
|
| 156 | + $cookie=$data["cookie"]; |
|
| 157 | 157 | } else { |
| 158 | - $cookie = ""; |
|
| 158 | + $cookie=""; |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | $this->pro["description"]=$this->_cacheImage($this->pro["description"], $path, $baseurl, $space_deli, $cookie); |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | } catch (ErrorException $e) { |
| 33 | 33 | } catch (Exception $e) { |
| 34 | 34 | } |
| 35 | - $className = "App\\Babel\\Extension\\$name\\$crawlerProvider"; |
|
| 35 | + $className="App\\Babel\\Extension\\$name\\$crawlerProvider"; |
|
| 36 | 36 | if (class_exists($className)) { |
| 37 | 37 | $temp=new $className(); |
| 38 | 38 | $temp->importCommandLine($commandLineObject); |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | } catch (ErrorException $e) { |
| 34 | 34 | } catch (Exception $e) { |
| 35 | 35 | } |
| 36 | - $className = "App\\Babel\\Extension\\$name\\$monitorProvider"; |
|
| 36 | + $className="App\\Babel\\Extension\\$name\\$monitorProvider"; |
|
| 37 | 37 | if (class_exists($className)) { |
| 38 | 38 | return new $className(); |
| 39 | 39 | } else { |
@@ -13,15 +13,15 @@ |
||
| 13 | 13 | { |
| 14 | 14 | $version=UpdateModel::checkUpdate(); |
| 15 | 15 | |
| 16 | - $status = [ |
|
| 17 | - ['name' => 'NOJ Version', 'value' => version()], |
|
| 18 | - ['name' => 'Lastest Version', 'value' => is_null($version)?'Failed to fetch latest version':$version["name"]], |
|
| 19 | - ['name' => 'Problems', 'value' => \App\Models\Eloquent\ProblemModel::count()], |
|
| 20 | - ['name' => 'Solutions', 'value' => \App\Models\Eloquent\ProblemSolutionModel::count()], |
|
| 21 | - ['name' => 'Submissions', 'value' => \App\Models\Eloquent\SubmissionModel::count()], |
|
| 22 | - ['name' => 'Contests', 'value' => \App\Models\Eloquent\ContestModel::count()], |
|
| 23 | - ['name' => 'Users', 'value' => \App\Models\Eloquent\UserModel::count()], |
|
| 24 | - ['name' => 'Groups', 'value' => \App\Models\Eloquent\GroupModel::count()], |
|
| 16 | + $status=[ |
|
| 17 | + ['name' => 'NOJ Version', 'value' => version()], |
|
| 18 | + ['name' => 'Lastest Version', 'value' => is_null($version) ? 'Failed to fetch latest version' : $version["name"]], |
|
| 19 | + ['name' => 'Problems', 'value' => \App\Models\Eloquent\ProblemModel::count()], |
|
| 20 | + ['name' => 'Solutions', 'value' => \App\Models\Eloquent\ProblemSolutionModel::count()], |
|
| 21 | + ['name' => 'Submissions', 'value' => \App\Models\Eloquent\SubmissionModel::count()], |
|
| 22 | + ['name' => 'Contests', 'value' => \App\Models\Eloquent\ContestModel::count()], |
|
| 23 | + ['name' => 'Users', 'value' => \App\Models\Eloquent\UserModel::count()], |
|
| 24 | + ['name' => 'Groups', 'value' => \App\Models\Eloquent\GroupModel::count()], |
|
| 25 | 25 | ]; |
| 26 | 26 | |
| 27 | 27 | return view('admin::dashboard.general', [ |