@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | public function current(): ?User |
| 15 | 15 | { |
| 16 | 16 | $userModel = Auth::user(); |
| 17 | - if(!isset($userModel)){ |
|
| 17 | + if (!isset($userModel)) { |
|
| 18 | 18 | return null; |
| 19 | 19 | } |
| 20 | 20 | $roles = $userModel->roles()->pluck('name')->toArray(); |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | Auth::login($authenticate, true); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function wikiSessionId():? string |
|
| 30 | + public function wikiSessionId(): ? string |
|
| 31 | 31 | { |
| 32 | 32 | return Session::get('wiki_session_id'); |
| 33 | 33 | } |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | interface InteractionRepository |
| 11 | 11 | { |
| 12 | 12 | public function save(CanInteract $canInteract, Interaction $interaction); |
| 13 | - public function getByInteractUser(CanInteract $canInteract, int $pageId):?Interaction; |
|
| 13 | + public function getByInteractUser(CanInteract $canInteract, int $pageId): ?Interaction; |
|
| 14 | 14 | public function transfer(CanInteract $anonymous, CanInteract $registered); |
| 15 | 15 | public function getCountInteractionsOnPage(int $pageId):array; |
| 16 | 16 | public function getInteractionsByUser(string $userId):array; |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $this->handlePages($pages); |
| 36 | 36 | $continue = $content['continue']['gapcontinue'] ?? null; |
| 37 | 37 | |
| 38 | - while($continue !== null && $continue !== ''){ |
|
| 38 | + while ($continue !== null && $continue !== '') { |
|
| 39 | 39 | $this->info($continue); |
| 40 | 40 | |
| 41 | 41 | $pagesApiUri = config('wiki.api_uri').$queryPages.'&gapcontinue='.$continue; |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | $this->doneAt = $doneAt; |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - public function doneAt():?\DateTime |
|
| 20 | + public function doneAt(): ?\DateTime |
|
| 21 | 21 | { |
| 22 | 22 | return $this->doneAt; |
| 23 | 23 | } |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | public function execute(string $uuid) |
| 12 | 12 | { |
| 13 | 13 | $user = User::query()->where('uuid', $uuid)->first(); |
| 14 | - if(!isset($user)){ |
|
| 14 | + if (!isset($user)) { |
|
| 15 | 15 | return null; |
| 16 | 16 | } |
| 17 | 17 | $pathPicture = $user->path_picture; |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | public function get(string $userId) |
| 26 | 26 | { |
| 27 | 27 | $comments = Cache::get("comments_".$userId); |
| 28 | - if(isset($comments)){ |
|
| 28 | + if (isset($comments)) { |
|
| 29 | 29 | return json_decode($comments, true); |
| 30 | 30 | } |
| 31 | 31 | |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | $comments = $content['query']['usercomments']; |
| 35 | 35 | |
| 36 | 36 | $commentsToRetrieved = []; |
| 37 | - foreach($comments as $comment){ |
|
| 38 | - if(!isset($commentsToRetrieved[$comment['pageid']])) { |
|
| 37 | + foreach ($comments as $comment) { |
|
| 38 | + if (!isset($commentsToRetrieved[$comment['pageid']])) { |
|
| 39 | 39 | $commentsToRetrieved[$comment['pageid']] = $comment; |
| 40 | 40 | |
| 41 | 41 | $realPageId = $comment['associatedid']; |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | public $icon; |
| 14 | 14 | public $opt; |
| 15 | 15 | |
| 16 | - public function __construct(string $uuid, string $label, string $type, ?string $icon, $prettyLabel, array $opt = []) |
|
| 16 | + public function __construct(string $uuid, string $label, string $type, ?string $icon, $prettyLabel, array $opt = []) |
|
| 17 | 17 | { |
| 18 | 18 | $this->uuid = $uuid; |
| 19 | 19 | $this->label = $label; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | private function handleDepartments($departments) |
| 52 | 52 | { |
| 53 | - foreach($departments as $key => $department){ |
|
| 53 | + foreach ($departments as $key => $department) { |
|
| 54 | 54 | $department = last($department)['printouts']; |
| 55 | 55 | |
| 56 | 56 | $climat = last($department['A un climat'])['fulltext']; |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | $iconUrlApi = str_replace(':file:', last($department['A une icone'])['fulltext'], $this->queryPictures); |
| 60 | 60 | |
| 61 | 61 | $characteristicModel = CharacteristicsModel::query()->where('code', $number)->first(); |
| 62 | - if(!isset($characteristicModel)){ |
|
| 62 | + if (!isset($characteristicModel)) { |
|
| 63 | 63 | $characteristicModel = new CharacteristicsModel(); |
| 64 | 64 | } |
| 65 | 65 | |
@@ -79,19 +79,19 @@ discard block |
||
| 79 | 79 | $response = $this->httpClient->get(config('wiki.api_uri').$iconUrlApi); |
| 80 | 80 | $content = json_decode($response->getBody()->getContents(), true); |
| 81 | 81 | $picturesInfo = $content['query']['pages']; |
| 82 | - foreach($picturesInfo as $picture) { |
|
| 82 | + foreach ($picturesInfo as $picture) { |
|
| 83 | 83 | if (isset($picture['imageinfo']) && isset(last($picture['imageinfo'])['url'])) { |
| 84 | 84 | $characteristicModel->page_id = $picture['pageid']; |
| 85 | 85 | try { |
| 86 | 86 | $response = $this->httpClient->get(last($picture['imageinfo'])['url']); |
| 87 | 87 | $content = $response->getBody()->getContents(); |
| 88 | - $path = 'public/characteristics/' . $uuid . '.png'; |
|
| 89 | - Storage::put('public/characteristics/' . $uuid . '.png', $content); |
|
| 90 | - }catch (ClientException $e){ |
|
| 88 | + $path = 'public/characteristics/'.$uuid.'.png'; |
|
| 89 | + Storage::put('public/characteristics/'.$uuid.'.png', $content); |
|
| 90 | + } catch (ClientException $e) { |
|
| 91 | 91 | $this->info('No icon for department : '.$number); |
| 92 | 92 | $path = ''; |
| 93 | 93 | } |
| 94 | - }else{ |
|
| 94 | + } else { |
|
| 95 | 95 | $this->info('No icon for department : '.$number); |
| 96 | 96 | $path = ''; |
| 97 | 97 | } |
@@ -87,11 +87,11 @@ |
||
| 87 | 87 | $content = $response->getBody()->getContents(); |
| 88 | 88 | $path = 'public/characteristics/' . $uuid . '.png'; |
| 89 | 89 | Storage::put('public/characteristics/' . $uuid . '.png', $content); |
| 90 | - }catch (ClientException $e){ |
|
| 90 | + } catch (ClientException $e){ |
|
| 91 | 91 | $this->info('No icon for department : '.$number); |
| 92 | 92 | $path = ''; |
| 93 | 93 | } |
| 94 | - }else{ |
|
| 94 | + } else{ |
|
| 95 | 95 | $this->info('No icon for department : '.$number); |
| 96 | 96 | $path = ''; |
| 97 | 97 | } |
@@ -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 | } |