-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.php
243 lines (151 loc) · 4.52 KB
/
app.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
<?php
/*
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);
*/
// I can haz configs
$config = json_decode(file_get_contents('config.json'), true);
//set default mode
$mode = "update";
// Check secret
if (isset($_GET['secret']) && $_GET['secret'] == $config['secret']) {
// require twitter class
require_once 'vendor/dg/twitter-php/src/twitter.class.php';
// check mode
if (isset($_GET['mode'])) {
$mode = $_GET['mode'];
}
switch($mode) {
case 'update' :
doUpdate();
break;
case 'check':
doCheck();
break;
}
} else {
// no / incorrect secret
echo "Can't keep a secret ?";
}
/*
* Update feed with image
*/
function doUpdate() {
Global $config;
// loop through accounts
foreach ($config['account'] as $t) {
//if account is active
if($t['active']){
// new twitter
$twitter = new Twitter($t['keys']['consumer_key'], $t['keys']['consumer_secret'], $t['keys']['access_token'], $t['keys']['access_token_secret']);
// grab the cam image
$ch = curl_init($t['webcam_url']);
$fp = fopen($config['tmp_img'], 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
// process hashtags
$tags = implode(' ', $t['hashtags']);
// set tweet bodycontent
$tweet_text = $t['tweet_text'] . ' ' . $tags;
try {
//tweet da tweet
$tweet = $twitter -> send($tweet_text, $config['tmp_img']);
// remove the temp image
unlink($config['tmp_img']);
} catch (TwitterException $e) {
echo 'Error: ' . $e -> getMessage();
}
}
}
}
/*
* Check status
*/
function doCheck() {
$last_processed_tweets = getTweetStatuses();
Global $config;
// loop through accounts
foreach ($config['account'] as $t) {
echo " Processing ".$t['handle']." <br>";
// new twitter
$twitter = new Twitter($t['keys']['consumer_key'], $t['keys']['consumer_secret'], $t['keys']['access_token'], $t['keys']['access_token_secret']);
$opts = array('include_entities' => TRUE);
if (isset($last_processed_tweets[$t['handle']])) {
echo " Requesting tweets since -".$last_processed_tweets[$t['handle']]." <br>";
$opts['since_id'] = $last_processed_tweets[$t['handle']];
}
$statuses = $twitter -> load(Twitter::REPLIES, null, $opts);
// reverse so FIFO
foreach (array_reverse($statuses) as $s) {
echo " Processing $s->id - $s->text <br>";
if (!empty($s -> entities -> hashtags)) {
foreach ($s->entities->hashtags as $ht) {
if (strtolower($ht -> text) == 'cheese') {
echo "#cheese $s->id - $s->text - <br>";
// grab the cam image
$ch = curl_init($t['webcam_url']);
$fp = fopen($config['tmp_img'], 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
// process hashtags
//$tags = implode(' ', $t['hashtags']);
// set the reciepients
// requesteeee
$targets = Array('@'.$s->user->screen_name);
// all other users mentioned
foreach($s->entities->user_mentions as $um){
// don't add yoself
if(strtolower($um->screen_name) != strtolower($t['handle']) )
$targets[] = '@'.$um->screen_name;
}
// set tweet bodycontent
//$tweet_text = $t['tweet_text'] . ' ' . $tags;
$tweet_text = "Here ya go ".implode(' ', $targets) .' '.$t['tweet_text'];
try {
//tweet da tweet
$tweet = $twitter -> send($tweet_text, $config['tmp_img']);
echo $tweet_text;
// remove the temp image
unlink($config['tmp_img']);
} catch (TwitterException $e) {
echo 'Error: ' . $e -> getMessage();
}
}
}
}
//update last processed tweet id
$last_processed_tweets[$t['handle']] = $s->id;
}
}
echo "<hr>";
print_r($last_processed_tweets);
echo "<hr>";
// update the last processed tweets status file
setTweetStatuses($last_processed_tweets);
}
function getTweetStatuses() {
Global $config;
$status_file = $config['status_log'];
//check if file exists
if(file_exists($status_file)){
$content = unserialize(file_get_contents($status_file));
return $content;
}else{
return false;
}
}
function setTweetStatuses($data) {
Global $config;
$status_file = $config['status_log'];
$content = serialize($data);
$f = fopen($status_file, 'wb');
fwrite($f,$content,strlen($content));
fclose($f);
}