@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $this->handlePages($pages); |
40 | 40 | $continue = $content['query-continue-offset'] ?? null; |
41 | 41 | |
42 | - while($continue !== null && $continue !== ''){ |
|
42 | + while ($continue !== null && $continue !== '') { |
|
43 | 43 | $this->info($continue); |
44 | 44 | |
45 | 45 | $pagesApiUri = config('wiki.api_uri').$queryPages.'|offset='.$continue; |
@@ -65,23 +65,23 @@ discard block |
||
65 | 65 | continue; |
66 | 66 | } |
67 | 67 | |
68 | - if($icon !== false) { |
|
68 | + if ($icon !== false) { |
|
69 | 69 | $picturesApiUri = config('wiki.api_uri').$this->queryPicture.$icon['fulltext']; |
70 | 70 | |
71 | 71 | $response = $this->httpClient->get($picturesApiUri); |
72 | 72 | $content = json_decode($response->getBody()->getContents(), true); |
73 | 73 | $picturesInfo = $content['query']['pages']; |
74 | - foreach($picturesInfo as $picture) { |
|
74 | + foreach ($picturesInfo as $picture) { |
|
75 | 75 | if (isset(last($picture['imageinfo'])['url'])) { |
76 | 76 | try { |
77 | 77 | $response = $this->httpClient->get(last($picture['imageinfo'])['url']); |
78 | 78 | $content = $response->getBody()->getContents(); |
79 | - $path = 'public/pages/' . $pageModel->id . '.png'; |
|
80 | - Storage::put('public/pages/' . $pageModel->id . '.png', $content); |
|
81 | - }catch (ClientException $e){ |
|
79 | + $path = 'public/pages/'.$pageModel->id.'.png'; |
|
80 | + Storage::put('public/pages/'.$pageModel->id.'.png', $content); |
|
81 | + } catch (ClientException $e) { |
|
82 | 82 | $path = ''; |
83 | 83 | } |
84 | - }else{ |
|
84 | + } else { |
|
85 | 85 | $path = ''; |
86 | 86 | } |
87 | 87 | } |
@@ -78,10 +78,10 @@ |
||
78 | 78 | $content = $response->getBody()->getContents(); |
79 | 79 | $path = 'public/pages/' . $pageModel->id . '.png'; |
80 | 80 | Storage::put('public/pages/' . $pageModel->id . '.png', $content); |
81 | - }catch (ClientException $e){ |
|
81 | + } catch (ClientException $e){ |
|
82 | 82 | $path = ''; |
83 | 83 | } |
84 | - }else{ |
|
84 | + } else{ |
|
85 | 85 | $path = ''; |
86 | 86 | } |
87 | 87 | } |
@@ -17,10 +17,10 @@ |
||
17 | 17 | |
18 | 18 | public function execute(string $type, string $search):array |
19 | 19 | { |
20 | - if($type === 'farming') { |
|
20 | + if ($type === 'farming') { |
|
21 | 21 | $type = 'culture'; |
22 | 22 | } |
23 | - if($type === 'croppingSystem') { |
|
23 | + if ($type === 'croppingSystem') { |
|
24 | 24 | $type = 'label'; |
25 | 25 | } |
26 | 26 | return $this->pageRepository->search($type, $search); |
@@ -8,7 +8,7 @@ |
||
8 | 8 | |
9 | 9 | interface PageRepository |
10 | 10 | { |
11 | - public function get(string $pageId):?Page; |
|
11 | + public function get(string $pageId): ?Page; |
|
12 | 12 | public function getByIds(array $pagesId):array; |
13 | 13 | public function save(Page $page); |
14 | 14 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | public function get(string $pageId): ?Page |
15 | 15 | { |
16 | 16 | $pageModel = PageModel::where('page_id', $pageId)->first(); |
17 | - if(!isset($pageModel)){ |
|
17 | + if (!isset($pageModel)) { |
|
18 | 18 | return null; |
19 | 19 | } |
20 | 20 | return new Page($pageModel->page_id, $pageModel->dry); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | public function save(Page $page) |
35 | 35 | { |
36 | 36 | $pageModel = PageModel::where('page_id', $page->pageId())->first(); |
37 | - if(!isset($pageModel)){ |
|
37 | + if (!isset($pageModel)) { |
|
38 | 38 | $pageModel = new PageModel(); |
39 | 39 | } |
40 | 40 | $pageModel->page_id = $page->pageId(); |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | public function search(string $type, string $search):array |
46 | 46 | { |
47 | 47 | $pageModel = PageModel::query() |
48 | - ->where('title','LIKE', '%'.$search.'%') |
|
48 | + ->where('title', 'LIKE', '%'.$search.'%') |
|
49 | 49 | ->where('type', $type) |
50 | 50 | ->get(); |
51 | 51 | |
52 | - if(!isset($pageModel)){ |
|
52 | + if (!isset($pageModel)) { |
|
53 | 53 | return []; |
54 | 54 | } |
55 | 55 | return $pageModel->toArray(); |
@@ -29,7 +29,7 @@ |
||
29 | 29 | public function execute(string $id, string $type, string $title) |
30 | 30 | { |
31 | 31 | $characteristic = $this->characteristicRepository->getBy(['title' => $title, 'type' => $type]); |
32 | - if(!isset($characteristic)){ |
|
32 | + if (!isset($characteristic)) { |
|
33 | 33 | $characteristic = new Characteristic($id, $type, $title, false); |
34 | 34 | $characteristic->create(); |
35 | 35 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | |
32 | 32 | public function create(string $icon = null) |
33 | 33 | { |
34 | - if(isset($icon)){ |
|
34 | + if (isset($icon)) { |
|
35 | 35 | copy(storage_path('app/'.$icon), storage_path('app/public/characteristics/'.$this->id.'.png')); |
36 | 36 | $this->icon = 'public/characteristics/'.$this->id.'.png'; |
37 | 37 | } |
@@ -34,17 +34,17 @@ |
||
34 | 34 | return $this->pageId; |
35 | 35 | } |
36 | 36 | |
37 | - public function title():?string |
|
37 | + public function title(): ?string |
|
38 | 38 | { |
39 | 39 | return $this->title; |
40 | 40 | } |
41 | 41 | |
42 | - public function type():?string |
|
42 | + public function type(): ?string |
|
43 | 43 | { |
44 | 44 | return $this->type; |
45 | 45 | } |
46 | 46 | |
47 | - public function icon():?string |
|
47 | + public function icon(): ?string |
|
48 | 48 | { |
49 | 49 | return $this->icon; |
50 | 50 | } |
@@ -45,12 +45,12 @@ |
||
45 | 45 | return $this->visible; |
46 | 46 | } |
47 | 47 | |
48 | - public function icon():? string |
|
48 | + public function icon(): ? string |
|
49 | 49 | { |
50 | 50 | return $this->icon; |
51 | 51 | } |
52 | 52 | |
53 | - public function pageId():? int |
|
53 | + public function pageId(): ? int |
|
54 | 54 | { |
55 | 55 | return $this->pageId; |
56 | 56 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $allCharacteristics = app(GetAllCharacteristics::class)->get(); |
36 | 36 | try { |
37 | 37 | $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray(); |
38 | - }catch (\Throwable $e){ |
|
38 | + } catch (\Throwable $e){ |
|
39 | 39 | Log::emergency($e->getMessage().' '.$e->getLine().' '.$e->getFile().' '.$e->getTraceAsString()); |
40 | 40 | return redirect()->route('wizard.profile'); |
41 | 41 | } |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | { |
67 | 67 | try { |
68 | 68 | $user = app(GetUser::class)->get($userId)->toArray(); |
69 | - }catch (UserNotFound $e){ |
|
69 | + } catch (UserNotFound $e){ |
|
70 | 70 | throw new NotFoundHttpException(); |
71 | 71 | } |
72 | 72 |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $allCharacteristics = app(GetAllCharacteristics::class)->get(); |
36 | 36 | try { |
37 | 37 | $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray(); |
38 | - }catch (\Throwable $e){ |
|
38 | + } catch (\Throwable $e) { |
|
39 | 39 | Log::emergency($e->getMessage().' '.$e->getLine().' '.$e->getFile().' '.$e->getTraceAsString()); |
40 | 40 | return redirect()->route('wizard.profile'); |
41 | 41 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $roles = app(GetUserRole::class)->get()->toArray(); |
44 | 44 | $practises = app(GetUserPractises::class)->get(Auth::user()->uuid); |
45 | 45 | $interactions = app(InteractionsQueryByUser::class)->get(Auth::user()->uuid); |
46 | - $usersCharacteristics = array_merge($context['productions'], $context['characteristics'], $context['characteristicsDepartement']); |
|
46 | + $usersCharacteristics = array_merge($context['productions'], $context['characteristics'], $context['characteristicsDepartement']); |
|
47 | 47 | $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid'); |
48 | 48 | $role = last($user['roles']); |
49 | 49 | $routeComment = route('profile.comments.show'); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | { |
69 | 69 | try { |
70 | 70 | $user = app(GetUser::class)->get($userId)->toArray(); |
71 | - }catch (UserNotFound $e){ |
|
71 | + } catch (UserNotFound $e) { |
|
72 | 72 | throw new NotFoundHttpException(); |
73 | 73 | } |
74 | 74 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $roles = app(GetUserRole::class)->get()->toArray(); |
78 | 78 | $practises = app(GetUserPractises::class)->get($userId); |
79 | 79 | $interactions = app(InteractionsQueryByUser::class)->get($userId); |
80 | - $usersCharacteristics = array_merge($context['productions'], $context['characteristics']); |
|
80 | + $usersCharacteristics = array_merge($context['productions'], $context['characteristics']); |
|
81 | 81 | $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid'); |
82 | 82 | $role = last($user['roles']); |
83 | 83 | |
@@ -143,9 +143,9 @@ discard block |
||
143 | 143 | $uri = config('wiki.api_uri').'?action=query&list=search&srwhat=text&srsearch='.$qry.'&srqiprofile=classic_noboostlinks&srnamespace=3000&format=json'; |
144 | 144 | $response = $client->get($uri); |
145 | 145 | $content = json_decode($response->getBody()->getContents(), true); |
146 | - if(isset($content['query']['search'])){ |
|
146 | + if (isset($content['query']['search'])) { |
|
147 | 147 | $results = array_column($content['query']['search'], 'title'); |
148 | - return array_map(function ($item){ |
|
148 | + return array_map(function($item) { |
|
149 | 149 | return str_replace('Structure:', '', $item); |
150 | 150 | }, $results); |
151 | 151 | } |