-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
results.php
58 lines (47 loc) · 1.93 KB
/
results.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
<?php
namespace Antsstyle\NFTCryptoBlocker;
require __DIR__ . '/vendor/autoload.php';
use Antsstyle\NFTCryptoBlocker\Core\Session;
use Antsstyle\NFTCryptoBlocker\Credentials\APIKeys;
use Antsstyle\NFTCryptoBlocker\Core\CoreDB;
use Antsstyle\NFTCryptoBlocker\Core\LogManager;
use Antsstyle\NFTCryptoBlocker\Core\Config;
use Abraham\TwitterOAuth\TwitterOAuth;
Session::checkSession();
if (!$_SESSION['oauth_token']) {
$location = Config::HOMEPAGE_URL . "error";
header("Location: $location", true, 302);
exit();
}
$request_token = [];
$request_token['oauth_token'] = $_SESSION['oauth_token'];
$request_token['oauth_token_secret'] = $_SESSION['oauth_token_secret'];
$requestOAuthToken = filter_input(INPUT_GET, 'oauth_token', FILTER_SANITIZE_STRING);
$requestOAuthVerifier = filter_input(INPUT_GET, 'oauth_verifier', FILTER_SANITIZE_STRING);
if ($request_token['oauth_token'] !== $requestOAuthToken) {
// Show error, redirect user back to homepage
LogManager::$webLogger->error("Non-matching OAuth tokens - aborting.");
exit();
}
$connection = new TwitterOAuth(APIKeys::consumer_key, APIKeys::consumer_secret,
$request_token['oauth_token'], $request_token['oauth_token_secret']);
try {
$access_token = $connection->oauth("oauth/access_token", ["oauth_verifier" => $requestOAuthVerifier]);
} catch (\Exception $e) {
LogManager::$webLogger->error("Could not get access token");
LogManager::$webLogger->error(print_r($e, true));
$location = Config::HOMEPAGE_URL . "failure";
header("Location: $location", true, 302);
exit();
}
if (isset($access_token)) {
$success = CoreDB::insertUserInformation($access_token);
if ($success) {
$_SESSION['usertwitterid'] = $access_token['user_id'];
$location = Config::SETTINGSPAGE_URL;
header("Location: $location", true, 302);
} else {
$location = Config::HOMEPAGE_URL . "failure";
header("Location: $location", true, 302);
}
}