@@ -62,7 +62,7 @@ |
||
| 62 | 62 | */ |
| 63 | 63 | public function filter($query, array $scopes = []) |
| 64 | 64 | { |
| 65 | - $query->when(isset($scopes['role']), function ($query) use ($scopes) { |
|
| 65 | + $query->when(isset($scopes['role']), function($query) use ($scopes) { |
|
| 66 | 66 | $query->where('role', $scopes['role']); |
| 67 | 67 | }); |
| 68 | 68 | $query->where('role', '<>', 'SUPERADMIN'); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | $filesCollection = Collection::make(); |
| 24 | 24 | $filesFromFields = $this->getFiles($fields); |
| 25 | 25 | |
| 26 | - $filesFromFields->each(function ($file) use ($object, $filesCollection) { |
|
| 26 | + $filesFromFields->each(function($file) use ($object, $filesCollection) { |
|
| 27 | 27 | $newFile = File::withTrashed()->find($file['id']); |
| 28 | 28 | $pivot = $newFile->newPivot($object, Arr::except($file, ['id']), 'fileables', true); |
| 29 | 29 | $newFile->setRelation('pivot', $pivot); |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | $object->files()->sync([]); |
| 50 | 50 | |
| 51 | - $this->getFiles($fields)->each(function ($file) use ($object) { |
|
| 51 | + $this->getFiles($fields)->each(function($file) use ($object) { |
|
| 52 | 52 | $object->files()->attach($file['id'], Arr::except($file, ['id'])); |
| 53 | 53 | }); |
| 54 | 54 | } |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | if (in_array($role, $this->model->filesParams ?? []) |
| 75 | 75 | || in_array($role, config('twill.block_editor.files', []))) { |
| 76 | 76 | |
| 77 | - Collection::make($filesForRole)->each(function ($file) use (&$files, $role, $locale) { |
|
| 77 | + Collection::make($filesForRole)->each(function($file) use (&$files, $role, $locale) { |
|
| 78 | 78 | $files->push([ |
| 79 | 79 | 'id' => $file['id'], |
| 80 | 80 | 'role' => $role, |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | if ($object->has('files')) { |
| 100 | 100 | foreach ($object->files->groupBy('pivot.role') as $role => $filesByRole) { |
| 101 | 101 | foreach ($filesByRole->groupBy('pivot.locale') as $locale => $filesByLocale) { |
| 102 | - $fields['files'][$locale][$role] = $filesByLocale->map(function ($file) { |
|
| 102 | + $fields['files'][$locale][$role] = $filesByLocale->map(function($file) { |
|
| 103 | 103 | return $file->toCmsArray(); |
| 104 | 104 | }); |
| 105 | 105 | } |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | try { |
| 34 | 34 | $blobUri = $request->input('bloburi'); |
| 35 | 35 | $method = $request->input('_method'); |
| 36 | - $permissions = '' ; |
|
| 36 | + $permissions = ''; |
|
| 37 | 37 | if (strtolower($method) === 'put') { |
| 38 | 38 | $permissions = 'w'; |
| 39 | 39 | } else if (strtolower($method) === 'delete') { |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | $now = new DateTime("now", new DateTimeZone("UTC")); |
| 49 | 49 | $expire = $now->modify('+15 min'); |
| 50 | 50 | |
| 51 | - $path = $this->config->get('filesystems.disks.' . $disk .'.container') . str_replace(azureEndpoint($disk), '', $blobUri); |
|
| 51 | + $path = $this->config->get('filesystems.disks.' . $disk . '.container') . str_replace(azureEndpoint($disk), '', $blobUri); |
|
| 52 | 52 | $sasUrl = $blobUri . '?' . $this->blobSharedAccessSignatureHelper->generateBlobServiceSharedAccessSignatureToken('b', $path, $permissions, $expire); |
| 53 | 53 | return $listener->uploadIsSigned($sasUrl, false); |
| 54 | 54 | } catch (\Exception $e) { |
@@ -51,13 +51,13 @@ |
||
| 51 | 51 | // anonymous functions are used to let configuration dictate |
| 52 | 52 | // the execution of the appropriate implementation |
| 53 | 53 | $endpointByType = [ |
| 54 | - 'local' => function () { |
|
| 54 | + 'local' => function() { |
|
| 55 | 55 | return $this->urlGenerator->route('admin.media-library.medias.store'); |
| 56 | 56 | }, |
| 57 | - 's3' => function () use ($libraryDisk) { |
|
| 57 | + 's3' => function() use ($libraryDisk) { |
|
| 58 | 58 | return s3Endpoint($libraryDisk); |
| 59 | 59 | }, |
| 60 | - 'azure' => function () use ($libraryDisk) { |
|
| 60 | + 'azure' => function() use ($libraryDisk) { |
|
| 61 | 61 | return azureEndpoint($libraryDisk); |
| 62 | 62 | }, |
| 63 | 63 | ]; |
@@ -51,13 +51,13 @@ |
||
| 51 | 51 | // anonymous functions are used to let configuration dictate |
| 52 | 52 | // the execution of the appropriate implementation |
| 53 | 53 | $endpointByType = [ |
| 54 | - 'local' => function () { |
|
| 54 | + 'local' => function() { |
|
| 55 | 55 | return $this->urlGenerator->route('admin.file-library.files.store'); |
| 56 | 56 | }, |
| 57 | - 's3' => function () use ($libraryDisk) { |
|
| 57 | + 's3' => function() use ($libraryDisk) { |
|
| 58 | 58 | return s3Endpoint($libraryDisk); |
| 59 | 59 | }, |
| 60 | - 'azure' => function () use ($libraryDisk) { |
|
| 60 | + 'azure' => function() use ($libraryDisk) { |
|
| 61 | 61 | return azureEndpoint($libraryDisk); |
| 62 | 62 | }, |
| 63 | 63 | ]; |
@@ -102,7 +102,7 @@ |
||
| 102 | 102 | 'hasFiles', |
| 103 | 103 | 'hasPosition', |
| 104 | 104 | 'hasRevisions', |
| 105 | - ])->filter(function ($enabled) { |
|
| 105 | + ])->filter(function($enabled) { |
|
| 106 | 106 | return $enabled; |
| 107 | 107 | }); |
| 108 | 108 | |
@@ -23,12 +23,12 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | $submittedLanguages = Collection::make($fields['languages'] ?? []); |
| 25 | 25 | |
| 26 | - $atLeastOneLanguageIsPublished = $submittedLanguages->contains(function ($language) { |
|
| 26 | + $atLeastOneLanguageIsPublished = $submittedLanguages->contains(function($language) { |
|
| 27 | 27 | return $language['published']; |
| 28 | 28 | }); |
| 29 | 29 | |
| 30 | 30 | foreach ($locales as $index => $locale) { |
| 31 | - $submittedLanguage = Arr::first($submittedLanguages->filter(function ($lang) use ($locale) { |
|
| 31 | + $submittedLanguage = Arr::first($submittedLanguages->filter(function($lang) use ($locale) { |
|
| 32 | 32 | return $lang['value'] == $locale; |
| 33 | 33 | })); |
| 34 | 34 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | $fields[$locale] = [ |
| 40 | 40 | 'active' => $activeField, |
| 41 | - ] + $attributes->mapWithKeys(function ($attribute) use (&$fields, $locale, $localesCount, $index) { |
|
| 41 | + ] + $attributes->mapWithKeys(function($attribute) use (&$fields, $locale, $localesCount, $index) { |
|
| 42 | 42 | $attributeValue = $fields[$attribute] ?? null; |
| 43 | 43 | |
| 44 | 44 | // if we are at the last locale, |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | { |
| 80 | 80 | if ($this->model->isTranslatable()) { |
| 81 | 81 | $attributes = $this->model->translatedAttributes; |
| 82 | - $query->whereHas('translations', function ($q) use ($scopes, $attributes) { |
|
| 82 | + $query->whereHas('translations', function($q) use ($scopes, $attributes) { |
|
| 83 | 83 | foreach ($attributes as $attribute) { |
| 84 | 84 | if (isset($scopes[$attribute]) && is_string($scopes[$attribute])) { |
| 85 | 85 | $q->where($attribute, 'like', '%' . $scopes[$attribute] . '%'); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | $mediasCollection = Collection::make(); |
| 24 | 24 | $mediasFromFields = $this->getMedias($fields); |
| 25 | 25 | |
| 26 | - $mediasFromFields->each(function ($media) use ($object, $mediasCollection) { |
|
| 26 | + $mediasFromFields->each(function($media) use ($object, $mediasCollection) { |
|
| 27 | 27 | $newMedia = Media::withTrashed()->find(is_array($media['id']) ? Arr::first($media['id']) : $media['id']); |
| 28 | 28 | $pivot = $newMedia->newPivot($object, Arr::except($media, ['id']), config('twill.mediables_table', 'twill_mediables'), true); |
| 29 | 29 | $newMedia->setRelation('pivot', $pivot); |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | $object->medias()->sync([]); |
| 50 | 50 | |
| 51 | - $this->getMedias($fields)->each(function ($media) use ($object) { |
|
| 51 | + $this->getMedias($fields)->each(function($media) use ($object) { |
|
| 52 | 52 | $object->medias()->attach($media['id'], Arr::except($media, ['id'])); |
| 53 | 53 | }); |
| 54 | 54 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | if (in_array($role, array_keys($this->model->mediasParams ?? [])) |
| 78 | 78 | || in_array($role, array_keys(config('twill.block_editor.crops', []))) |
| 79 | 79 | || in_array($role, array_keys(config('twill.settings.crops', [])))) { |
| 80 | - Collection::make($mediasForRole)->each(function ($media) use (&$medias, $role, $locale) { |
|
| 80 | + Collection::make($mediasForRole)->each(function($media) use (&$medias, $role, $locale) { |
|
| 81 | 81 | $customMetadatas = $media['metadatas']['custom'] ?? []; |
| 82 | 82 | if (isset($media['crops']) && !empty($media['crops'])) { |
| 83 | 83 | foreach ($media['crops'] as $cropName => $cropData) { |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | // TODO: document this and actually think about moving to queuable job after content type updates |
| 58 | 58 | public function handle() |
| 59 | 59 | { |
| 60 | - $this->db->table(config('twill.mediables_table', 'twill_mediables'))->orderBy('id')->chunk(100, function ($attached_medias) { |
|
| 60 | + $this->db->table(config('twill.mediables_table', 'twill_mediables'))->orderBy('id')->chunk(100, function($attached_medias) { |
|
| 61 | 61 | foreach ($attached_medias as $attached_media) { |
| 62 | 62 | $uuid = Media::withTrashed()->find($attached_media->media_id, ['uuid'])->uuid; |
| 63 | 63 | |