-
Notifications
You must be signed in to change notification settings - Fork 0
/
function_bak.php
267 lines (216 loc) · 9.38 KB
/
function_bak.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?php
require_once ('twitteroauth.php');
//Consumer_lkeyの値
$consumer_key = "5NQodaEga8MThaZs2xr2g";
//Consumer_secretの値
$consumer_secret = "GXQiryxprtOXq7QQEQwDp45uhTMyZeCuCPl4c82g838";
//Access Token の値
/*
$access_token = "492354526-XEUhnQcWQzu9nhUC7RQANwDsTxOEOAiy5JhuzTYI";
//Access Token Secretの値
$access_token_secret = "qjz2e7s0H5FQiYsMmbQXDI7S3wMYJ4vfYOczVVJY";
* //OAuthオブジェクトの生成
$to = new TwitterOAuth($consumer_key, $consumer_secret, $access_token, $access_token_secret);
//TwitterへPOSTする、パラメータは配列に格納する
$req = $to->OAuthRequest("http://api.twitter.com/1/statuses/update.xml", "POST", array("status"=>"OAuth経由のツイートテスト"));
header("Content-Type: application/xml");
echo $req;
* /
*
*/
// ユーザのアクセス・トークン
// BOTなど、すでにユーザが分かっている場合は、そのユーザのトークンを指定する。
// 不特定多数のユーザが使う場合はNULLにしておき、認証により取得する。
$def_user_key = NULL;
$def_user_secret = NULL;
// アプリケーションのアドレス
$app_addr = 'http://localhost:8888/twitteroauth/form.php';
// アプリケーションのタイトル
$app_title = '金やる';
/*
開発用:環境変数などを表示する
*/
/* function DebugOut() {
$html = '';
// 普段はコメントに。
$html .= '<hr><h1>GET</h1><ul>';
foreach ($_GET as $key => $val) {
$html .= '<li>' . $key . ' = ' . $val . '</li>';
}
$html .= '</ul><h1>POST</h1><ul>';
foreach ($_POST as $key => $val) {
$html .= '<li>' . $key . ' = ' . $val . '</li>';
}
$html .= '</ul><h1>SESSION</h1><ul>';
foreach ($_SESSION as $key => $val) {
$html .= '<li>' . $key . ' = ' . $val . '</li>';
}
$html .= '</ul><h1>COOKIE</h1><ul>';
foreach ($_COOKIE as $key => $val) {
$html .= '<li>' . $key . ' = ' . $val . '</li>';
}
$html .= '</ul>';
return $html;
}
/*
認証ページへのリンクを表示する
*/
function PrintAuthPage($auth_addr) {
global $app_title;
//header('Content-Type: text/html; charset=UTF-8');
print('<html><head><title>' . $app_title . '</title></head><body>');
print('<h1>' . $app_title . '</h1>');
print('<p>You are not authorized. <a href="' . $auth_addr . '">Please click this link</a> to go to Twitter authorization page.</p>');
print $auth_addr;
// デバッグ出力
//print(DebugOut());
print('</body></html>');
}
/*
アプリのメインページを表示する
*/
//function PrintAppPage() {
// global $app_addr, $app_title;
// header('Content-Type: text/html; charset=UTF-8');
// print('<html><head><title>' . $app_title . '</title></head><body>');
// print('<h1>' . $app_title . '</h1>');
// print('<p><a href="' . $app_addr . '?action=logout">Log out</a></p>');
// 投稿フォーム
// print('<form action="' . $app_addr . '" method="POST">');
// print('<input type="text" name="q" value="">');
// print('<input type="submit" value="Tweet!">');
// print('</form>');
// デバッグ出力
//print(DebugOut());
// print('</body></html>');
// die();
//}
/*
アプリの実行(TwitterのAPIを起動)
*/
function ExecApp($client) {
$content = $client->get('account/verify_credentials');
$_SESSION['name'] = $content->name;
$_SESSION['screen_name'] = $content->screen_name;
//header('Location: http://localhost:8888/twitteroauth/form.php');
}
/*
ログアウト処理
*/
function Logout() {
// セッションに保存していたトークンを全て削除する。
unset($_SESSION['oauth_token']);
unset($_SESSION['oauth_token_secret']);
unset($_SESSION['oauth_state']);
}
/*
Twitterの認証を行い、認証済みならTwitterOAuthクライアントを返す。
未認証の場合は認証ページのアドレスを返す。
*/
function Authorize() {
global $consumer_key, $consumer_secret;
global $def_user_key, $def_user_secret;
global $app_addr, $screen_name;
// if (!empty($def_user_key) && !empty($def_user_secret)) {
// /* コード側でユーザのアクセス・トークンが直接指定されている場合、
// * そのトークンを用いてクライアントを作成する。
// * この場合セッションは使用しない。
// */
// $client = new TwitterOAuth($consumer_key, $consumer_secret, $def_user_key, $def_user_secret);
// return array('client' => $client);
// }
if ($_SESSION['oauth_state'] == 'done') {
/* 認証状態が「認証済み」なら、すでにアプリを利用中である。
* クライアントをアクセス・トークンで起動して返す。
*/
$client = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);
echo "hogehogedone";
exit;
return array('client' => $client);
}
if($_SESSION['oauth_state'] == 'wait'){
/* 認証状態が「認証待ち」なら、ユーザが認証ページから帰ってきた状態である。
* ユーザの持って帰ってきた認証コードとリクエスト・トークンからアクセス・トークンを作成し、
* ユーザの認証を完了する。
*/
// Twitterクライアントをリクエスト・トークンで起動
$client = new TwitterOAuth($consumer_key, $consumer_secret, $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);
// アクセス・トークンを取得
$token = $client->getAccessToken($_GET['oauth_verifier']);
if (empty($token['oauth_token'])) {
/* アクセス・トークンがなければ、何らかの理由で取得失敗した。
* もう一度リクエスト・トークンを生成して認証を試みる。
*/
$token = $client->getRequestToken($app_addr);
$_SESSION['oauth_token'] = $token['oauth_token'];
$_SESSION['oauth_token_secret'] = $token['oauth_token_secret'];
// $_SESSION['screen_name'] = $token['screen_name'];
// 認証状態は「認証待ち」のまま。
// 認証ページのアドレスを返す
return array('auth_addr' => $client->authorizeURL() . '?oauth_token=' . $token['oauth_token']);
}
/* アクセス・トークンを記憶し、認証状態を「認証済み」にする。
* なお、クライアント内部に保存されているトークンは、
* この時点でリクエスト・トークンからアクセス・トークンに変わっている。
*/
$_SESSION['oauth_token'] = $token['oauth_token'];
$_SESSION['oauth_token_secret'] = $token['oauth_token_secret'];
$_SESSION['oauth_state'] = 'done';
// $_SESSION['screen_name'] = $token['screen_name'];
/* 認証成功したのでクライアント・オブジェクトを返す。
* ただし、認証直後はおそらくアプリ側になにもGET or POSTされていない。
* ExecApp()の作り方に注意する。
*/
// echo 'hogehogedone';
echo "hogehogewait";
exit;
return array('client' => $client);
}else{
/* ここまでどのifにも引っかからなければ、、ユーザはまだ認証していない。
* リクエスト・トークンを生成してセッションに保存し、
* ユーザを認証ページに誘導する(この処理はmain()で行っている)。
*/
// Twitterクライアント起動
$client = new TwitterOAuth($consumer_key, $consumer_secret);
// リクエスト・トークンを取得してセッション変数に保存
// 認証状態を「認証待ち」にする
$token = $client->getRequestToken($app_addr);
$_SESSION['oauth_token'] = $token['oauth_token'];
$_SESSION['oauth_token_secret'] = $token['oauth_token_secret'];
$_SESSION['oauth_state'] = 'wait';
//$_SESSION['screen_name'] = $token['screen_name'];
echo "hogehogeelse";
exit;
// 認証ページのアドレスを返す
return array('auth_addr' => $client->authorizeURL() . '?oauth_token=' . $token['oauth_token']);
}
}
/*
エントリ・ポイント
*/
function main() {
global $def_user_key, $def_user_secret;
// header('Location: http://localhost:8888/twitteroauth/form.php');
//if (empty($def_user_key) || empty($def_user_secret)) {
// リクエスト・トークンとアクセス・トークンを覚えるために、
// セッションを起動する
//session_start();
// if ($_GET['action'] == 'logout') {
// ログアウト
// Logout();
//}
//}
session_start();
// 認証とTwitterOAuthオブジェクト/認証ページのアドレスの取得
$ret = Authorize();
if (empty($ret['client'])) {
// 認証されていなければ、Twitterの認証ページに誘導する。
PrintAuthPage($ret['auth_addr']);
} else {
// 認証していれば、アプリを実行してページを表示する。
ExecApp($ret['client']);
// PrintAppPage();
}
header('Location: http://localhost:8888/twitteroauth/form.php');
}
?>