-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathProvider.php
More file actions
251 lines (220 loc) · 6.47 KB
/
Provider.php
File metadata and controls
251 lines (220 loc) · 6.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Felix Nüsse <felix.nuesse@t-online.de>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Unsplash\ProviderHandler;
use OCP\Files\IAppData;
use OCP\Http\Client\IClientService;
use OCP\IConfig;
use Psr\Log\LoggerInterface;
use OCP\Files\NotFoundException;
abstract class Provider
{
const SIZE_SMALL = 0;
const SIZE_NORMAL = 1;
const SIZE_HIGH = 2;
const SIZE_ULTRA = 3;
/**
* // Please override this value for your own provider.
* @var string
*/
public string $DEFAULT_SEARCH = "nature";
public bool $ALLOW_CUSTOMIZING = true;
public bool $REQUIRES_AUTH = false;
public string $DEFAULT_TOKEN = "";
public bool $IS_CACHED = false;
public string $CACHED_URL = "/index.php/apps/unsplash/api/image";
public string $DEFAULT_METADATA_URL="";
/**
* Provider constructor.
*
* @param $appName
* @param LoggerInterface $logger
* @param IConfig $config
* @param IClientService $clientService
* @param $pName
*/
public function __construct(
protected string $appName,
protected LoggerInterface $logger,
protected IConfig $config,
protected IAppData $appData,
protected IClientService $clientService,
protected string $providerName,
)
{
}
/**
* This sets a custom search query if the provider supports this.
*
* @param string $term
*/
public function setCustomSearchTerms(string $term): void
{
if ($this->ALLOW_CUSTOMIZING) {
$this->config->setAppValue($this->appName, 'splash/provider/' . $this->providerName . '/searchterms', $term);
}
}
/**
*
* This returns a single searchterm. It will be restricted to letters, and lowercase.
* This filtering i s there to prevent url hijacking or malforming due to searchterms
* @return string
*/
public function getRandomSearchTerm(): string
{
$termarray = explode(",", $this->getCustomSearchterms());
shuffle($termarray);
$term = strtolower($termarray[0]);
// only allow letters as searchterm
$term = preg_replace('/[^a-z-]/i','', $term);
return $term;
}
/**
*
* This returns the custom searchterm
* It is not filtered!
* @return string
*/
public function getCustomSearchterms(): string
{
if (!$this->ALLOW_CUSTOMIZING) {
return "";
}
$term = $this->config->getAppValue($this->appName, 'splash/provider/' . $this->providerName . '/searchterms', $this->DEFAULT_SEARCH);
if ($term == "") {
return $this->DEFAULT_SEARCH;
}
return $term;
}
/**
* Returns the providername
* @return string
*/
public function getName(): string
{
return $this->providerName;
}
/**
* Returns if the provider is customizable
* @return string
*/
public function isCustomizable(): bool
{
return $this->ALLOW_CUSTOMIZING;
}
/**
* Returns if the provider requires an api token
* @return string
*/
public function requiresAuth(): bool
{
return $this->REQUIRES_AUTH;
}
/**
*
* This returns the token.
* It either returns the default or the stored token.
*
* @return string
*/
public function getToken(): string
{
if (!$this->REQUIRES_AUTH) {
return "";
}
$token = $this->config->getAppValue($this->appName, 'splash/provider/' . $this->providerName . '/token', $this->DEFAULT_TOKEN);
return $token;
}
public function isCached(): bool
{
return $this->IS_CACHED;
}
/**
*/
public function getCachedImageURL(): string
{
return $this->CACHED_URL;
}
/**
*/
public function getMetadata(): ProviderMetadata
{
return new ProviderMetadata($this->DEFAULT_METADATA_URL, $this->DEFAULT_METADATA_URL, "", "", $this->providerName);
}
/**
* fetches a background to be cached
*/
public function fetchCached()
{
}
/**
* Deletes the currently cached background
*/
public function deleteCached()
{
}
/*
* This should return all URLS which need to be whitelisted for csrf
*/
public abstract function getWhitelistResourceUrls();
/*
* This should return a url to a random image
*/
public abstract function getRandomImageUrl($size);
/*
* This should return a url to a random image filtered by $search
*/
public abstract function getRandomImageUrlBySearchTerm($search, $size);
/**
*
* This doesnt really belong here. I should create a utils class or something like it
* @param $host
* @return bool|string
*/
protected function getData($host)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $host);
if ($this->config->getSystemValueBool('debug', false)) {
curl_setopt($ch, CURLOPT_VERBOSE, 1);
}
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_AUTOREFERER, false);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
/**
* This doesnt really belong here. I should create a utils class or something like it
* @throws NotPermittedException
*/
protected function getImageFolder()
{
try {
$rootFolder = $this->appData->getFolder($this->providerName);
} catch (NotFoundException $e) {
$rootFolder = $this->appData->newFolder($this->providerName);
}
return $rootFolder;
}
}