-
Notifications
You must be signed in to change notification settings - Fork 5
/
osmApi.inc.php
78 lines (68 loc) · 1.56 KB
/
osmApi.inc.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
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
<?php
/**
*/
require_once( __DIR__ . '/common.inc.php');
require_once( __DIR__ . '/lib/yapafo/lib/OSM/Api.php');
session_start();
$osmApi = getOsmApi();
$oauth = $osmApi->getCredentials();
if (isset($_REQUEST['oauth_token']))
{
// Check that the callback is for us.
$creds = $oauth->getRequestToken();
if ($creds['token'] == $_REQUEST['oauth_token'])
{
$oauth->requestAccessToken(
isset($_REQUEST['oauth_verifier']) ? $_REQUEST['oauth_verifier'] : null
);
}
else
{
echo '<p>ERROR, oauth token does not match !</p>' . "\n";
}
}
/**
*@return OSM_Api
*/
function getOsmApi() {
// osm api handler is instantiated if necessary
if (!isset($_SESSION['api']))
{
$_SESSION['api'] = new OSM_Api(array('appName' => Conf::APP_NAME, 'url' => OSM_Api::URL_PROD_UK, 'simulation' => false));
}
$osmApi = $_SESSION['api'];
$oauth = $osmApi->getCredentials();
if (!$oauth)
{
$oauth = new OSM_Auth_OAuth(
Conf::OAUTH_CONSUMER_KEY,
Conf::OAUTH_CONSUMER_SECRET,
array('callback_url' => currentPageURLwithoutQuery())
);
$osmApi->setCredentials($oauth);
}
return $osmApi ;
}
function startOsmAuth() {
$osmApi = $_SESSION['api'];
$oauth = $osmApi->getCredentials();
if (!$oauth->hasAccessToken())
{
try
{
// try to get a access token
$oauth->requestAccessToken();
header('Location:' . currentPageURL());
}
catch (OSM_HttpException $ex)
{
if ($ex->getHttpCode() == '401')
{
$osmApi->clearCachedAuthPermissions();
$req = $oauth->requestAuthorizationUrl();
header('Location:' . $req['url']);
exit();
}
}
}
}