-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.php
285 lines (275 loc) · 9.82 KB
/
main.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<?php
require_once 'lib/TwistOAuth.phar';
require_once 'config.php';
require_once 'token.php';
session_start();
if (!isset($_SESSION['logined'])) {
$url = WEBSITE_URL;
header("Location: $url");
header('Content-Type: text/plain; charset=utf-8');
exit("Redirecting to $url ...");
}
$code = 200;
try {
$to = $_SESSION['to'];
$user_statues = $to->get('account/verify_credentials');
} catch (TwistException $e) {
$message = array('red', $e->getMessage());
$code = $e->getCode() ?: 500;
}
header('Content-Type: text/html; charset=utf-8', true, $code);
?>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>Buncho v2 - 画像だけを見れるTwitterクライアント。</title>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="lib/masonry.pkgd.min.js"></script>
<script src="lib/imagesloaded.pkgd.min.js" type="text/javascript"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
<link href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css" rel="stylesheet">
<script>
$(function(){
$('#container').masonry({
itemSelector: '.box',
columnWidth: 200 //一列の幅サイズを指定
});
});
</script>
<script type="text/javascript">
toastr.options = {
"closeButton": true,
"debug": false,
"newestOnTop": true,
"progressBar": true,
"positionClass": "toast-bottom-right",
"preventDuplicates": false,
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "10000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "slideDown",
"hideMethod": "slideUp"
}
</script>
<script type="text/javascript">
var max_id;
var min_id;
$(function() {
toastr["info"]("初回は多めにツイートを読み込むため時間がかかります。もうしばらくお待ちください。", "Please Wait...");
$('.status-text').text('読み込み中...');
$.ajax({
type: "GET",
url: "ajax_query.php",
data: { method: "ready" }
}).done(function(data){
var el = $(data);
el.css('display','none');
$("#container").append(el);
$('#container').imagesLoaded(function(){
el.css('display','inline');
$('#container').masonry('reloadItems');
$('#container').masonry({
itemSelector: '.box',
columnWidth: 10
});
$('.status-text').text('5分後に取得します');
toastr["success"]("過去のツイートを読み込みました。", "Completed!");
});
}).error(function(data){
toastr["error"]("短時間の集中した読み込みで制限がかかっています。数分経ってからお試しください。", "Error!");
$('.status-text').text('5分後に取得します');
});
$('.more').click(function() {
if($('.centered > .box').length){
max_id = $('.centered > .box:last').attr('id');
console.log(max_id);
}
$('.status-text').text('読み込み中...');
$.ajax({
type: "GET",
url: "ajax_query.php",
data: {
method: "more",
max_id : max_id
}
}).done(function(data){
var el = $(data);
el.css('display','none');
$("#container").append(el);
$('#container').imagesLoaded(function(){
el.css('display','inline');
$('#container').masonry('reloadItems');
$('#container').masonry({
itemSelector: '.box',
columnWidth: 10
});
$('.status-text').text('5分後に取得します');
toastr["success"]("過去のツイートを読み込みました。", "Completed!");
});
}).error(function(data){
toastr["error"]("短時間の集中した読み込みで制限がかかっています。数分経ってからお試しください。", "Error!");
$('.status-text').text('5分後に取得します');
});
});
setInterval(function(){
if($('.centered > .box').length){
min_id = $('.centered > .box:first').attr('id');
console.log(min_id);
}
$('.status-text').text('読み込み中...');
$.ajax({
type: "GET",
url: "ajax_query.php",
data: {
method: "new",
min_id : min_id
}
}).done(function(data){
var el = $(data);
el.css('display','none');
$("#container").prepend(el);
$('#container').imagesLoaded(function(){
el.css('display','inline');
$('#container').masonry('reloadItems');
$('#container').masonry({
itemSelector: '.box',
columnWidth: 10
});
$('.status-text').text('5分後に取得します');
toastr["success"]("最新のツイートを読み込みました。", "Completed!");
});
}).error(function(data){
toastr["error"]("短時間の集中した読み込みで制限がかかっています。数分経ってからお試しください。", "Error!");
$('.status-text').text('5分後に取得します');
});
},300000);
$('.new').click(function() {
if($('.centered > .box').length){
min_id = $('.centered > .box:first').attr('id');
console.log(min_id);
}
$('.status-text').text('読み込み中...');
$.ajax({
type: "GET",
url: "ajax_query.php",
data: {
method: "new",
min_id : min_id
}
}).done(function(data){
var el = $(data);
el.css('display','none');
$("#container").prepend(el);
$('#container').imagesLoaded(function(){
el.css('display','inline');
$('#container').masonry('reloadItems');
$('#container').masonry({
itemSelector: '.box',
columnWidth: 10
});
$('.status-text').text('5分後に取得します');
toastr["success"]("最新のツイートを読み込みました。", "Completed!");
});
}).error(function(data){
toastr["error"]("短時間の集中した読み込みで制限がかかっています。数分経ってからお試しください。", "Error!");
$('.status-text').text('5分後に取得します');
});
});
});
</script>
<style type="text/css">
body {
padding-top: 48px;
<?php echo 'background-color: #'.$user_statues->profile_background_color.';';?>
}
#container{
margin: 0 auto;
}
.box{
background-color: #FFF;
margin: 10px;
box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
width: 320px;
}
.tweet-text{
padding: 3px;
font-family: "メイリオ";
font-size: 0.9em;
}
.title-unit{
background-color: #AAA;
padding: 20px;
padding-top: 40px;
padding-bottom: 40px;
}
.title-text{
font-family: "メイリオ";
font-size: 24px;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Buncho v2</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<p class="navbar-text navbar-right status-text">5分後に取得します</p>
<li><a href="logout.php">ログアウト</a></li>
<li><a href="#" data-toggle="modal" data-target="#myModal">ステータス</a></li>
<li><a href="#" class="more">過去のツイートを読み込み</a></li>
<li><a href="#" class="new">強制再読み込み</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">ステータス</h4>
</div>
<div class="modal-body">
<!-- settings -->
<div class="media">
<div class="media-left">
<a href="#">
<img class="media-object" src="<?php echo h($user_statues->profile_image_url); ?>" width="48px" alt="...">
</a>
</div>
<div class="media-body">
<h4 class="media-heading"><?php echo h($user_statues->screen_name); ?></h4>
<?php echo h($user_statues->name); ?>さんとしてログインしています。ほかのアカウントに切り替える場合は一度ログアウトしてください。<br><br>
</div>
長時間表示したままにすると、大変重くなるので一定時間ごとにリロードをかけてください。<br><br>
問題が発生している場合や機能のリクエストなどありましたらTwitterの<a href="https://twitter.com/MATTENN">@MATTENN宛にリプライをお送りください。</a><br>
メールの場合は<code>[email protected]</code>宛に送信してください。(迷惑メールと間違えないためにもBunchoに関する件名の記入もお願いします。)
</div>
<!-- /settings -->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">閉じる</button>
</div>
</div>
</div>
</div>
<div id="container" class="centered"></div>
</body>
</html>