@@ -18,17 +18,17 @@ |
||
| 18 | 18 | $h = $img->height(); |
| 19 | 19 | $w = $img->width(); |
| 20 | 20 | |
| 21 | - if($dim == null){ |
|
| 21 | + if ($dim == null) { |
|
| 22 | 22 | return $img->response(); |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | $img = Image::cache(function($image) use($pathPicture, $dim, $w, $h){ |
| 26 | - if($w <= $h) { |
|
| 27 | - $image->make($pathPicture)->widen($dim, function ($constraint) { |
|
| 26 | + if ($w <= $h) { |
|
| 27 | + $image->make($pathPicture)->widen($dim, function($constraint) { |
|
| 28 | 28 | $constraint->upsize(); |
| 29 | 29 | }); |
| 30 | - }else{ |
|
| 31 | - $image->make($pathPicture)->heighten($dim, function ($constraint) { |
|
| 30 | + } else { |
|
| 31 | + $image->make($pathPicture)->heighten($dim, function($constraint) { |
|
| 32 | 32 | $constraint->upsize(); |
| 33 | 33 | }); |
| 34 | 34 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $image->make($pathPicture)->widen($dim, function ($constraint) { |
| 32 | 32 | $constraint->upsize(); |
| 33 | 33 | }); |
| 34 | - }else{ |
|
| 34 | + } else{ |
|
| 35 | 35 | $image->make($pathPicture)->heighten($dim, function ($constraint) { |
| 36 | 36 | $constraint->upsize(); |
| 37 | 37 | }); |
@@ -15,9 +15,9 @@ |
||
| 15 | 15 | |
| 16 | 16 | public function department():string |
| 17 | 17 | { |
| 18 | - if(substr($this->postalCode, 0, 2) > 96){ |
|
| 19 | - return substr($this->postalCode, 0,3); |
|
| 18 | + if (substr($this->postalCode, 0, 2) > 96) { |
|
| 19 | + return substr($this->postalCode, 0, 3); |
|
| 20 | 20 | } |
| 21 | - return substr($this->postalCode, 0,2); |
|
| 21 | + return substr($this->postalCode, 0, 2); |
|
| 22 | 22 | } |
| 23 | 23 | } |
@@ -33,8 +33,8 @@ |
||
| 33 | 33 | |
| 34 | 34 | public function update(array $interactions, array $doneValue = []) |
| 35 | 35 | { |
| 36 | - foreach ($interactions as $interaction){ |
|
| 37 | - switch ($interaction){ |
|
| 36 | + foreach ($interactions as $interaction) { |
|
| 37 | + switch ($interaction) { |
|
| 38 | 38 | case 'follow': |
| 39 | 39 | $this->follow = true; |
| 40 | 40 | break; |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | // @see https://wiki.tripleperformance.fr/wiki/Aide:Requettes_Insights |
| 23 | 23 | private $queryFarming = "?action=ask&api_version=3&query=[[Est un élément de profil::Production]]|?A un fichier d'icone de caractéristique|?Doit être affiché par défaut|?A une priorité d'affichage|?A un label|sort=A une priorité d'affichage|order=asc&format=json"; |
| 24 | - private $queryCroppingSystem = "?action=ask&api_version=3&query=[[Est un élément de profil::Cahier des charges]]|?A un fichier d'icone de caractéristique|?Doit être affiché par défaut|?A une priorité d'affichage|?A un label|sort=A une priorité d'affichage|order=asc&format=json"; |
|
| 24 | + private $queryCroppingSystem = "?action=ask&api_version=3&query=[[Est un élément de profil::Cahier des charges]]|?A un fichier d'icone de caractéristique|?Doit être affiché par défaut|?A une priorité d'affichage|?A un label|sort=A une priorité d'affichage|order=asc&format=json"; |
|
| 25 | 25 | |
| 26 | 26 | |
| 27 | 27 | public function __construct() |
@@ -46,27 +46,27 @@ discard block |
||
| 46 | 46 | $content = json_decode($response->getBody()->getContents(), true); |
| 47 | 47 | $characteristics = $content['query']['results']; |
| 48 | 48 | |
| 49 | - foreach ($characteristics as $key => $characteristic){ |
|
| 49 | + foreach ($characteristics as $key => $characteristic) { |
|
| 50 | 50 | $page = key($characteristic); |
| 51 | 51 | $characteristic = last($characteristic); |
| 52 | 52 | |
| 53 | 53 | $uuid = Uuid::uuid4(); |
| 54 | 54 | $path = ''; |
| 55 | - if(isset($characteristic['printouts']['A un fichier d\'icone de caractéristique'][0]['fulltext'])) { |
|
| 55 | + if (isset($characteristic['printouts']['A un fichier d\'icone de caractéristique'][0]['fulltext'])) { |
|
| 56 | 56 | $picture = $characteristic['printouts']['A un fichier d\'icone de caractéristique'][0]['fulltext']; |
| 57 | 57 | $picturesApiUri = config('wiki.api_uri').$queryPictures.$picture; |
| 58 | 58 | |
| 59 | 59 | $response = $this->httpClient->get($picturesApiUri); |
| 60 | 60 | $content = json_decode($response->getBody()->getContents(), true); |
| 61 | 61 | $picturesInfo = $content['query']['pages']; |
| 62 | - foreach($picturesInfo as $picture) { |
|
| 62 | + foreach ($picturesInfo as $picture) { |
|
| 63 | 63 | if (isset(last($picture['imageinfo'])['url'])) { |
| 64 | 64 | try { |
| 65 | 65 | $response = $this->httpClient->get(last($picture['imageinfo'])['url']); |
| 66 | 66 | $content = $response->getBody()->getContents(); |
| 67 | - $path = 'public/characteristics/' . $uuid . '.png'; |
|
| 68 | - Storage::put('public/characteristics/' . $uuid . '.png', $content); |
|
| 69 | - }catch (ClientException $e){ |
|
| 67 | + $path = 'public/characteristics/'.$uuid.'.png'; |
|
| 68 | + Storage::put('public/characteristics/'.$uuid.'.png', $content); |
|
| 69 | + } catch (ClientException $e) { |
|
| 70 | 70 | $path = ''; |
| 71 | 71 | } |
| 72 | 72 | } |
@@ -86,17 +86,17 @@ discard block |
||
| 86 | 86 | $characteristicsToSave = [ |
| 87 | 87 | 'uuid' => $uuid, |
| 88 | 88 | 'main' => $main, |
| 89 | - 'priority' => (int)last($characteristic['printouts']['A une priorité d\'affichage']), |
|
| 89 | + 'priority' => (int) last($characteristic['printouts']['A une priorité d\'affichage']), |
|
| 90 | 90 | 'icon' => $path, |
| 91 | 91 | 'page_label' => $label, |
| 92 | 92 | 'pretty_page_label' => $prettyPage, |
| 93 | - 'page_id' => (int)$pageInfo['pageid'], |
|
| 93 | + 'page_id' => (int) $pageInfo['pageid'], |
|
| 94 | 94 | 'type' => $type, |
| 95 | 95 | 'code' => $pageInfo['title'] |
| 96 | 96 | ]; |
| 97 | 97 | |
| 98 | - $model = CharacteristicsModel::where('page_id', (int)$pageInfo['pageid'])->first(); |
|
| 99 | - if(!isset($model)) { |
|
| 98 | + $model = CharacteristicsModel::where('page_id', (int) $pageInfo['pageid'])->first(); |
|
| 99 | + if (!isset($model)) { |
|
| 100 | 100 | $model = new CharacteristicsModel(); |
| 101 | 101 | } |
| 102 | 102 | $model->fill($characteristicsToSave); |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | $content = $response->getBody()->getContents(); |
| 67 | 67 | $path = 'public/characteristics/' . $uuid . '.png'; |
| 68 | 68 | Storage::put('public/characteristics/' . $uuid . '.png', $content); |
| 69 | - }catch (ClientException $e){ |
|
| 69 | + } catch (ClientException $e){ |
|
| 70 | 70 | $path = ''; |
| 71 | 71 | } |
| 72 | 72 | } |
@@ -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; |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | |
| 23 | 23 | public function toDto():ContextDto |
| 24 | 24 | { |
| 25 | - $characteristics = $this->user->characteristics()->get()->transform(function(CharacteristicsModel $item){ |
|
| 25 | + $characteristics = $this->user->characteristics()->get()->transform(function(CharacteristicsModel $item) { |
|
| 26 | 26 | return $item->toDto(); |
| 27 | 27 | }); |
| 28 | 28 | return new ContextDto( |
@@ -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']; |
@@ -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); |