|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Thinktomorrow\AssetLibrary\Traits; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Support\Collection; |
|
6
|
|
|
use Thinktomorrow\AssetLibrary\Models\Asset; |
|
7
|
|
|
use Thinktomorrow\AssetLibrary\Models\AssetUploader; |
|
8
|
|
|
use Thinktomorrow\Locale\Locale; |
|
9
|
|
|
|
|
10
|
|
|
trait AssetTrait |
|
11
|
|
|
{ |
|
12
|
|
|
/** |
|
13
|
|
|
* @return mixed |
|
14
|
|
|
*/ |
|
15
|
19 |
|
public function assets() |
|
16
|
|
|
{ |
|
17
|
19 |
|
return $this->morphToMany(Asset::class, 'entity', 'asset_pivots')->withPivot('type', 'locale'); |
|
|
|
|
|
|
18
|
|
|
} |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @param string $type |
|
22
|
|
|
* @param string $locale |
|
|
|
|
|
|
23
|
|
|
* @return bool |
|
24
|
|
|
*/ |
|
25
|
4 |
|
public function hasFile($type = '', $locale = null): bool |
|
26
|
|
|
{ |
|
27
|
4 |
|
$filename = $this->getFilename($type, $locale); |
|
28
|
|
|
|
|
29
|
4 |
|
return (bool) $filename && basename($filename) != 'other.png'; |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @param string $type |
|
34
|
|
|
* @param string $locale |
|
|
|
|
|
|
35
|
|
|
* @return string |
|
36
|
|
|
*/ |
|
37
|
6 |
|
public function getFilename($type = '', $locale = null): string |
|
38
|
|
|
{ |
|
39
|
6 |
|
return basename($this->getFileUrl($type, '', $locale)); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* @param string $type |
|
44
|
|
|
* @param string $size |
|
45
|
|
|
* @param string $locale |
|
|
|
|
|
|
46
|
|
|
* @return string |
|
47
|
|
|
*/ |
|
48
|
16 |
|
public function getFileUrl($type = '', $size = '', $locale = null): ?string |
|
49
|
|
|
{ |
|
50
|
16 |
|
if ($this->assets->first() === null || $this->assets->first()->pivot === null) { |
|
|
|
|
|
|
51
|
2 |
|
return null; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
16 |
|
$locale = $this->normalizeLocale($locale); |
|
55
|
|
|
|
|
56
|
16 |
|
$assets = $this->assets->where('pivot.type', $type); |
|
57
|
16 |
|
if ($assets->count() > 1) { |
|
58
|
5 |
|
$assets = $assets->where('pivot.locale', $locale); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
16 |
|
if ($assets->isEmpty()) { |
|
62
|
1 |
|
return null; |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
16 |
|
return $assets->first()->getFileUrl($size); |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
/** |
|
69
|
|
|
* Adds a file to this model, accepts a type and locale to be saved with the file. |
|
70
|
|
|
* |
|
71
|
|
|
* @param $file |
|
72
|
|
|
* @param $type |
|
73
|
|
|
* @param string $locale |
|
|
|
|
|
|
74
|
|
|
*/ |
|
75
|
7 |
|
public function addFile($file, $type = '', $locale = null): void |
|
76
|
|
|
{ |
|
77
|
7 |
|
$locale = $this->normalizeLocale($locale); |
|
78
|
|
|
|
|
79
|
7 |
|
$asset = AssetUploader::upload($file); |
|
80
|
7 |
|
$asset->attachToModel($this, $type, $locale); |
|
|
|
|
|
|
81
|
7 |
|
} |
|
82
|
|
|
|
|
83
|
|
|
/** |
|
84
|
|
|
* Adds multiple files to this model, accepts a type and locale to be saved with the file. |
|
85
|
|
|
* |
|
86
|
|
|
* @param $files |
|
87
|
|
|
* @param $type |
|
88
|
|
|
* @param string $locale |
|
|
|
|
|
|
89
|
|
|
*/ |
|
90
|
3 |
|
public function addFiles($files, $type = '', $locale = null): void |
|
91
|
|
|
{ |
|
92
|
3 |
|
$files = (array) $files; |
|
93
|
3 |
|
$locale = $this->normalizeLocale($locale); |
|
94
|
|
|
|
|
95
|
3 |
|
$asset = AssetUploader::upload($files); |
|
96
|
|
|
|
|
97
|
3 |
|
collect($asset)->each->attachToModel($this, $type, $locale); |
|
98
|
3 |
|
} |
|
99
|
|
|
|
|
100
|
|
|
/** |
|
101
|
|
|
* @return mixed |
|
102
|
|
|
*/ |
|
103
|
|
|
public function getAllImages() |
|
104
|
|
|
{ |
|
105
|
1 |
|
$images = $this->assets->filter(function ($asset) { |
|
106
|
1 |
|
return $asset->getExtensionForFilter() == 'image'; |
|
107
|
1 |
|
}); |
|
108
|
|
|
|
|
109
|
1 |
|
return $images; |
|
110
|
|
|
} |
|
111
|
|
|
|
|
112
|
|
|
/** |
|
113
|
|
|
* @param null $type |
|
114
|
|
|
* @param string $locale |
|
|
|
|
|
|
115
|
|
|
* @return mixed |
|
116
|
|
|
*/ |
|
117
|
2 |
|
public function getAllFiles($type = null, $locale = null) |
|
118
|
|
|
{ |
|
119
|
2 |
|
$locale = $this->normalizeLocale($locale); |
|
120
|
|
|
|
|
121
|
2 |
|
$files = $this->assets->where('pivot.type', $type)->where('pivot.locale', $locale); |
|
122
|
|
|
|
|
123
|
2 |
|
return $files; |
|
124
|
|
|
} |
|
125
|
|
|
|
|
126
|
|
|
/** |
|
127
|
|
|
* @param string|null $locale |
|
128
|
|
|
* @return string |
|
|
|
|
|
|
129
|
|
|
*/ |
|
130
|
18 |
|
private function normalizeLocale($locale = null): ?string |
|
131
|
|
|
{ |
|
132
|
18 |
|
$locale = $locale ?? Locale::getDefault(); |
|
133
|
|
|
|
|
134
|
18 |
|
return $locale; |
|
135
|
|
|
} |
|
136
|
|
|
} |
|
137
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idableprovides a methodequalsIdthat in turn relies on the methodgetId(). If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()as an abstract method to the trait will make sure it is available.