-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
172 lines (151 loc) · 6.82 KB
/
index.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
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
<?php
/**
* Copyright (c) 2008, 2010, 2016, JavaDan and/or its affiliates. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* - Neither the name of Oracle nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* Created using PhpStorm.
*
* @package Roli
*
* @author Java <[email protected]>
* @time-stamp 22/08/2016, 03:12 PM.
*/
require_once __DIR__ . '/vendor/autoload.php';
use Roli\Security\Crypt\BaseCrypt;
$name = 'localhost';
$password = '*danDD9+2017@';
$detailed = '*Administrator @Dick@';
$encrypt_name = BaseCrypt::encrypt($name, $detailed);
$encrypt_password = BaseCrypt::encrypt($password, $detailed);
echo "<h1>User localhost: {$encrypt_name}";
echo "<br />Password {$encrypt_password}";
echo '<br />User localhost: ' . BaseCrypt::decrypt($encrypt_name, $detailed);
echo '<br />Password ' . BaseCrypt::decrypt($encrypt_password, $detailed) . '</h1>';
$app_id = '290233574680993';
$app_secret = '04375d7110ec57f9d2d9882b3b01a24c';
$detailed = '*Administrator @Dick@';
$encrypt_app_id = BaseCrypt::encrypt($app_id, $detailed);
$encrypt_app_secret = BaseCrypt::encrypt($app_secret, $detailed);
echo '<pre>';
echo "encrypted app_id: {$encrypt_app_id}";
echo "\n" . "encrypted app_secret: {$encrypt_app_secret}";
echo "\n\n" . 'decrypted app_id: ' . BaseCrypt::decrypt($encrypt_app_id, $detailed);
echo "\n\n" . 'decrypted app_secret: ' . BaseCrypt::decrypt($encrypt_app_secret, $detailed);
echo "\n\n";
$sl = new Roli\Data\Loader\SocialLoader();
$sl->loadXML(Roli\Social\Interfaces\SocialInterface::CREDENTIALS);
echo "\n\n";
new Roli\Social\Classes\SocialMedias\Facebook();
echo '</pre>';
$fb = new Facebook\Facebook([
'app_id' => '290233574680993',
// Replace '290233574680993' with your app id
'app_secret' => '04375d7110ec57f9d2d9882b3b01a24c',
'default_graph_version' => 'v2.2',
]);
$helper = $fb->getRedirectLoginHelper();
try
{
$accessToken = $helper->getAccessToken();
}
catch (Facebook\Exceptions\FacebookResponseException $e)
{
// When Graph returns an error
echo 'Graph returned an error: ' . $e->getMessage();
exit;
}
catch (Facebook\Exceptions\FacebookSDKException $e)
{
// When validation fails or other local issues
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
if (!isset($accessToken))
{
if ($helper->getError())
{
header('HTTP/1.0 401 Unauthorized');
echo "Error: " . $helper->getError() . "\n";
echo "Error Code: " . $helper->getErrorCode() . "\n";
echo "Error Reason: " . $helper->getErrorReason() . "\n";
echo "Error Description: " . $helper->getErrorDescription() . "\n";
}
else
{
header('HTTP/1.0 400 Bad Request');
echo 'Bad request';
}
exit;
}
// Logged in
echo '<h3>Access Token</h3>';
var_dump($accessToken->getValue());
// The OAuth 2.0 client handler helps us manage access tokens
$oAuth2Client = $fb->getOAuth2Client();
// Get the access token metadata from /debug_token
$tokenMetadata = $oAuth2Client->debugToken($accessToken);
echo '<h3>Metadata</h3>';
var_dump($tokenMetadata);
// Validation (these will throw FacebookSDKException's when they fail)
$tokenMetadata->validateAppId('290233574680993'); // Replace '290233574680993' with your app id
// If you know the user ID this access token belongs to, you can validate it here
//$tokenMetadata->validateUserId('123');
$tokenMetadata->validateExpiration();
if (!$accessToken->isLongLived())
{
// Exchanges a short-lived access token for a long-lived one
try
{
$accessToken = $oAuth2Client->getLongLivedAccessToken($accessToken);
}
catch (Facebook\Exceptions\FacebookSDKException $e)
{
echo "<p>Error getting long-lived access token: " . $helper->getMessage() . "</p>\n\n";
exit;
}
echo '<h3>Long-lived</h3>';
var_dump($accessToken->getValue());
}
$_SESSION['fb_access_token'] = (string)$accessToken;
// User is logged in with a long-lived access token.
// You can redirect them to a members-only page.
//header('Location: https://example.com/members.php');
$fb = new Facebook\Facebook([
'app_id' => '290233574680993',
// Replace '290233574680993' with your app id
'app_secret' => '04375d7110ec57f9d2d9882b3b01a24c',
'default_graph_version' => 'v2.2',
]);
$helper = $fb->getRedirectLoginHelper();
$callback = $_SERVER['SERVER_ADDR'] . $_SERVER['PHP_SELF'];
$callback = 'http://localhost/roli/index.php';
$permissions = ['email']; // Optional permissions
$loginUrl = $helper->getLoginUrl($callback, $permissions);
echo '<a href="' . htmlspecialchars($loginUrl) . '">Log in with Facebook!</a>';