This repository has been archived by the owner on Jul 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathAuth.php
91 lines (78 loc) · 1.77 KB
/
Auth.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
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
namespace PhpEarth\Stats;
use Facebook\Facebook;
use Facebook\Exceptions\FacebookSDKException;
use Facebook\Exceptions\FacebookResponseException;
/**
* Class Auth.
*/
class Auth
{
/**
* @var Facebook
*/
public $fb;
/**
* @var Config
*/
private $config;
/**
* @var
*/
private $error;
/**
* Auth constructor.
*
* @param Config $config
*/
public function __construct(Config $config)
{
$this->config = $config;
$this->fb = new Facebook([
'app_id' => $this->config->getParameter('fb_app_id'),
'app_secret' => $this->config->getParameter('fb_app_secret'),
'default_graph_version' => $this->config->getParameter('default_graph_version'),
]);
}
/**
* Checks if current Facebook access token is valid.
*
* @return bool
*/
public function isValid()
{
try {
$this->fb->get('/me');
$this->error = null;
return true;
} catch (FacebookResponseException $e) {
if ($e->getErrorType() == 'OAuthException') {
$this->error = $e->getMessage().' Error type: '.$e->getErrorType();
} else {
$this->error = $e->getMessage();
}
return false;
} catch (FacebookSDKException $e) {
$this->error = $e->getMessage();
return false;
}
}
/**
* Get error.
*
* @return mixed
*/
public function getError()
{
return $this->error;
}
/**
* Set default Facebook access token.
*
* @param string $token
*/
public function setToken($token)
{
$this->fb->setDefaultAccessToken($token);
}
}