@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | $practisesToReturn = []; |
21 | 21 | $practises = $this->interactionsRepository->getDoneByUser($userId); |
22 | - foreach ($practises as $practise){ |
|
22 | + foreach ($practises as $practise) { |
|
23 | 23 | $year = $practise->doneAt()->format('Y'); |
24 | 24 | $practisesToReturn[$year][] = $practise->toArray(); |
25 | 25 | } |
@@ -11,6 +11,6 @@ |
||
11 | 11 | public function getByType(string $type, bool $isMain):array; |
12 | 12 | public function getAllByType(string $type):array; |
13 | 13 | public function save(Characteristic $c); |
14 | - public function getBy(array $conditions):?Characteristic; |
|
14 | + public function getBy(array $conditions): ?Characteristic; |
|
15 | 15 | public function search(string $type, string $search):array; |
16 | 16 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function add(array $cs) |
41 | 41 | { |
42 | - foreach ($cs as $c){ |
|
42 | + foreach ($cs as $c) { |
|
43 | 43 | $cModel = new CharacteristicsModel(); |
44 | 44 | $cModel->fill($c); |
45 | 45 | $cModel->save(); |
@@ -64,13 +64,13 @@ discard block |
||
64 | 64 | public function getBy(array $conditions): ?Characteristic |
65 | 65 | { |
66 | 66 | $characteristicModel = CharacteristicsModel::query() |
67 | - ->when(isset($conditions['type']), function ($query) use($conditions){ |
|
67 | + ->when(isset($conditions['type']), function($query) use($conditions){ |
|
68 | 68 | $query->where('type', $conditions['type']); |
69 | - })->when(isset($conditions['title']), function ($query) use($conditions){ |
|
69 | + })->when(isset($conditions['title']), function($query) use($conditions){ |
|
70 | 70 | $query->where('code', $conditions['title']); |
71 | 71 | }) |
72 | 72 | ->first(); |
73 | - if(!isset($characteristicModel)){ |
|
73 | + if (!isset($characteristicModel)) { |
|
74 | 74 | return null; |
75 | 75 | } |
76 | 76 | return $characteristicModel->toDomain(); |
@@ -80,13 +80,13 @@ discard block |
||
80 | 80 | { |
81 | 81 | $characteristicModel = CharacteristicsModel::query() |
82 | 82 | ->where('type', $type) |
83 | - ->where('pretty_page_label','LIKE', '%'.$search.'%') |
|
83 | + ->where('pretty_page_label', 'LIKE', '%'.$search.'%') |
|
84 | 84 | ->get(); |
85 | 85 | |
86 | - if(!isset($characteristicModel)){ |
|
86 | + if (!isset($characteristicModel)) { |
|
87 | 87 | return []; |
88 | 88 | } |
89 | - foreach ($characteristicModel as $characteristic){ |
|
89 | + foreach ($characteristicModel as $characteristic) { |
|
90 | 90 | $characteristics[] = $characteristic->toArray(); |
91 | 91 | } |
92 | 92 | return $characteristics ?? []; |
@@ -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; |
@@ -31,14 +31,14 @@ discard block |
||
31 | 31 | $allCharacteristics = app(GetAllCharacteristics::class)->get(); |
32 | 32 | try { |
33 | 33 | $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray(); |
34 | - }catch (\Throwable $e){ |
|
34 | + } catch (\Throwable $e) { |
|
35 | 35 | return redirect()->route('wizard.profile'); |
36 | 36 | } |
37 | 37 | $user = app(AuthGateway::class)->current()->toArray(); |
38 | 38 | $roles = app(GetUserRole::class)->get()->toArray(); |
39 | 39 | $practises = app(GetUserPractises::class)->get(Auth::user()->uuid); |
40 | 40 | $interactions = app(InteractionsQueryByUser::class)->get(Auth::user()->uuid); |
41 | - $usersCharacteristics = array_merge($context['productions'], $context['characteristics']); |
|
41 | + $usersCharacteristics = array_merge($context['productions'], $context['characteristics']); |
|
42 | 42 | $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid'); |
43 | 43 | $role = last($user['roles']); |
44 | 44 | |
@@ -104,9 +104,9 @@ discard block |
||
104 | 104 | $uri = config('wiki.api_uri').'?action=query&list=search&srwhat=text&srsearch='.$qry.'&srqiprofile=classic_noboostlinks&srnamespace=3000&format=json'; |
105 | 105 | $response = $client->get($uri); |
106 | 106 | $content = json_decode($response->getBody()->getContents(), true); |
107 | - if(isset($content['query']['search'])){ |
|
107 | + if (isset($content['query']['search'])) { |
|
108 | 108 | $results = array_column($content['query']['search'], 'title'); |
109 | - return array_map(function ($item){ |
|
109 | + return array_map(function($item) { |
|
110 | 110 | return str_replace('Structure:', '', $item); |
111 | 111 | }, $results); |
112 | 112 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | $allCharacteristics = app(GetAllCharacteristics::class)->get(); |
32 | 32 | try { |
33 | 33 | $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray(); |
34 | - }catch (\Throwable $e){ |
|
34 | + } catch (\Throwable $e){ |
|
35 | 35 | return redirect()->route('wizard.profile'); |
36 | 36 | } |
37 | 37 | $user = app(AuthGateway::class)->current()->toArray(); |
@@ -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 | ->where('page_id', $interaction->pageId()) |
26 | 26 | ->first(); |
27 | 27 | |
28 | - if($interactionModel === null) { |
|
28 | + if ($interactionModel === null) { |
|
29 | 29 | $interactionModel = new InteractionModel(); |
30 | 30 | $interactionModel->{$canInteract->key()} = isset($user->id) ? $user->id : $canInteract->identifier(); |
31 | 31 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function getByInteractUser(CanInteract $canInteract, int $pageId): ?Interaction |
39 | 39 | { |
40 | - if($canInteract->key() == 'user_id') { |
|
40 | + if ($canInteract->key() == 'user_id') { |
|
41 | 41 | $user = User::query()->where('uuid', $canInteract->identifier())->first(); |
42 | 42 | } |
43 | 43 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | ->where('page_id', $pageId) |
47 | 47 | ->first(); |
48 | 48 | |
49 | - if(!isset($interactionModel)){ |
|
49 | + if (!isset($interactionModel)) { |
|
50 | 50 | return null; |
51 | 51 | } |
52 | 52 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | ->orderBy('updated_at', 'desc') |
83 | 83 | ->get(); |
84 | 84 | |
85 | - foreach($interactionsModel as $interaction) { |
|
85 | + foreach ($interactionsModel as $interaction) { |
|
86 | 86 | $page = PageModel::query()->where('page_id', $interaction->page_id)->first(); |
87 | 87 | $applause = InteractionModel::query()->where('page_id', $interaction->page_id)->where('applause', true)->count(); |
88 | 88 | if ($interaction->follow) { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | ->where('user_id', $user->id) |
105 | 105 | ->where('done', true) |
106 | 106 | ->get(); |
107 | - foreach ($records as $record){ |
|
107 | + foreach ($records as $record) { |
|
108 | 108 | $practises[] = new PractiseVo( |
109 | 109 | $record->page_id, |
110 | 110 | $record->page->title ?? '', |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | ->where('page_id', $pageId) |
123 | 123 | ->whereNotNull('user_id') |
124 | 124 | ->paginate() |
125 | - ->through(function ($item){ |
|
125 | + ->through(function($item) { |
|
126 | 126 | return $item->user->context->toDto(); |
127 | 127 | }) |
128 | 128 | ; |
@@ -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 | } |