This repository was archived by the owner on Mar 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenStreetmap.php
53 lines (43 loc) · 1.55 KB
/
OpenStreetmap.php
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
<?php
/**
* Class OpenStreetmap
*
* @created 12.05.2019
* @author smiley <smiley@chillerlan.net>
* @copyright 2019 smiley
* @license MIT
*/
namespace chillerlan\OAuth\Providers;
use chillerlan\HTTP\Utils\MessageUtil;
use chillerlan\OAuth\Core\{OAuth1Provider, ProviderException};
use Psr\Http\Message\ResponseInterface;
use function sprintf, strip_tags;
/**
* @see https://wiki.openstreetmap.org/wiki/API
* @see https://wiki.openstreetmap.org/wiki/OAuth
*
* @deprecated https://github.com/openstreetmap/operations/issues/867
*/
class OpenStreetmap extends OAuth1Provider{
protected string $requestTokenURL = 'https://www.openstreetmap.org/oauth/request_token';
protected string $authURL = 'https://www.openstreetmap.org/oauth/authorize';
protected string $accessTokenURL = 'https://www.openstreetmap.org/oauth/access_token';
protected string $apiURL = 'https://api.openstreetmap.org';
protected string|null $apiDocs = 'https://wiki.openstreetmap.org/wiki/API';
protected string|null $applicationURL = 'https://www.openstreetmap.org/user/{USERNAME}/oauth_clients';
/**
* @inheritDoc
*/
public function me():ResponseInterface{
$response = $this->request('/api/0.6/user/details.json');
$status = $response->getStatusCode();
if($status === 200){
return $response;
}
$body = MessageUtil::getContents($response);
if(!empty($body)){
throw new ProviderException(strip_tags($body));
}
throw new ProviderException(sprintf('user info error error HTTP/%s', $status));
}
}