-
Notifications
You must be signed in to change notification settings - Fork 6
/
UserData.php
500 lines (418 loc) · 15.1 KB
/
UserData.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
<?php
/**
* Author: Kyle Thielk (www.kylethielk.com)
* License:
* Copyright (c) 2013 Kyle Thielk
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
require_once(dirname(__FILE__) . '/Friend.php');
require_once(dirname(__FILE__) . '/TwitterUser.php');
/**
* Class with functions to write/read from our cached data.
* Class FTF_UserData
*/
class FTF_UserData
{
/**
* @var FTF_TwitterUser Current user we are running application for.
*/
private $currentUser;
/**
* List of user id's we have in our cache.
* @var
*/
public $cachedUserIds;
/**
* List of ids for people that we are or have followed in the past. Helps keep us from re-following
* we have followed in past and then unfollowed.
* @var
*/
public $friendIds;
/**
* List of users in our queue to be followed.
* @var
*/
public $queuedUserIds;
/**
* @var FTF_UserData
*/
private static $me;
public function FTF_UserData()
{
$this->initializeApplicationSettings();
if (isset($this->currentUser))
{
$this->initializeUserDataDirectory();
$this->initializeCachedUserIdList();
$this->initializePrimaryUserData();
}
}
public static function getUserData()
{
if (!isset(FTF_UserData::$me))
{
FTF_UserData::$me = new FTF_UserData();
}
return FTF_UserData::$me;
}
/**
* Loads the application settings (which is only the current user) right now.
*/
private function initializeApplicationSettings()
{
$filename = './userdata/findtofollow.json';
if (file_exists($filename) === false)
{
//Write blank file to keep track of user's we are following
$filePointer = fopen($filename, 'w');
fwrite($filePointer, '{"currentUser":null}');
fclose($filePointer);
$this->currentUser = null;
}
else
{
$filePointer = fopen($filename, 'r');
$read = fread($filePointer, filesize($filename));
fclose($filePointer);
$readObject = json_decode($read);
$this->currentUser = new FTF_TwitterUser();
if (isset($readObject->currentUser->twitterUsername))
{
$this->currentUser->twitterUsername = $readObject->currentUser->twitterUsername;
}
if (isset($readObject->currentUser->oauthToken))
{
$this->currentUser->oauthToken = $readObject->currentUser->oauthToken;
}
if (isset($readObject->currentUser->oauthSecret))
{
$this->currentUser->oauthSecret = $readObject->currentUser->oauthSecret;
}
if (isset($readObject->currentUser->profileImageUrl))
{
$this->currentUser->profileImageUrl = $readObject->currentUser->profileImageUrl;
}
if (isset($readObject->currentUser->profileDescription))
{
$this->currentUser->profileDescription = $readObject->currentUser->profileDescription;
}
//If invalid user, set to null
if (!FTF_TwitterUser::validateUser($this->currentUser))
{
$this->currentUser = null;
}
}
}
/**
* Initializes user data i.e ensure directories and necessary files exist, creates
* them if they don't.
*/
private function initializePrimaryUserData()
{
$primaryFileName = './userdata/' . $this->currentUser->twitterUsername . '.json';
if (file_exists($primaryFileName) === false)
{
//Write blank file to keep track of user's we are following
$primaryFilePointer = fopen($primaryFileName, 'w');
fwrite($primaryFilePointer, '{"friendIds":[],queuedUserIds:[]}');
fclose($primaryFilePointer);
$this->friendIds = array();
$this->queuedUserIds = array();
}
else
{
$primaryFilePointer = fopen($primaryFileName, 'r');
$read = fread($primaryFilePointer, filesize($primaryFileName));
fclose($primaryFilePointer);
$readObject = json_decode($read);
if (isset($readObject->friendIds))
{
$this->friendIds = array_values($readObject->friendIds);
}
else
{
$this->friendIds = array();
}
if (isset($readObject->queuedUserIds))
{
$this->queuedUserIds = array_values($readObject->queuedUserIds);
}
else
{
$this->queuedUserIds = array();
}
}
}
/**
* Initialize the list of cached users we have.
*/
private function initializeCachedUserIdList()
{
$filename = './userdata/cacheduserlist.json';
if (file_exists($filename) === false)
{
$userListFilePointer = fopen($filename, 'w');
fwrite($userListFilePointer, '{"userIds":[]}');
fclose($userListFilePointer);
$this->cachedUserIds = array();
}
else
{
$userListFilePointer = fopen($filename, 'r');
$read = fread($userListFilePointer, filesize($filename));
fclose($userListFilePointer);
$readObject = json_decode($read);
$this->cachedUserIds = $readObject->userIds;
}
}
/**
* Initializes the user data directory.
*/
private function initializeUserDataDirectory()
{
$mainDirectory = './userdata';
if (is_dir($mainDirectory) === false)
{
mkdir($mainDirectory);
}
$userDirectory = $mainDirectory . '/users';
if (is_dir($userDirectory) === false)
{
mkdir($userDirectory);
}
}
/**
* Removes the userid from our list of queued users. Remember to call flushPrimaryUserData to persist to file system.
* @param number $userId The userid to remove.
*/
public function removeUserIdFromQueue($userId)
{
if (!isset($userId))
{
return;
}
$this->queuedUserIds = array_diff($this->queuedUserIds, array($userId));
}
/**
* Add a list of userIds to our queue. Be sure to call flushPrimaryUserData to persist
* to filesystem.
* @param array $userIds
*/
public function mergeInUserIdsToQueue($userIds)
{
if (!isset($this->queuedUserIds) || !is_array($this->queuedUserIds))
{
$this->queuedUserIds = array();
}
else if (!is_array($userIds))
{
$userIds = array();
}
$diff = array_diff($userIds, $this->queuedUserIds);
$this->queuedUserIds = array_merge($this->queuedUserIds, array_unique($diff));
}
/**
* Merge in friends to our existing list of friends. Must call flushPrimaryUserData to
* write to disk.
* @param $friendIds Array List of friend ids to merge in.
*/
public function mergeInFriendIds($friendIds)
{
$this->friendIds = array_values($this->friendIds);
$friendIds = array_values($friendIds);
$previousCount = count($this->friendIds);
$diff = array_diff($friendIds, $this->friendIds);
$this->friendIds = array_merge($this->friendIds, array_unique($diff));
$currentCount = count($this->friendIds);
if ($previousCount != $currentCount)
{
FTF_Web::$currentDriver->addLogMessage('Cached friend count: ' . $previousCount . '. New friend count: ' . $currentCount);
}
}
/**
* Write primary user file i.e twiterUsername.json to filesystem.
*/
public function flushPrimaryUserData()
{
$primaryFileName = './userdata/' . $this->currentUser->twitterUsername . '.json';
if (!isset($this->friendIds))
{
$this->friendIds = array();
FTF_Web::$currentDriver->addLogMessage("Cannot flush primary data to filesystem. Error occurred.");
return;
}
$toWrite = (Object)array();
$toWrite->friendIds = array_values($this->friendIds);
$toWrite->queuedUserIds = array_values($this->queuedUserIds);
$primaryFilePointer = fopen($primaryFileName, 'w');
fwrite($primaryFilePointer, json_encode($toWrite));
fclose($primaryFilePointer);
}
/**
* Writer user to our cache. Don't forget to call flushUserListCache.
* @param $friend FTF_Friend The JSON User object received from twitter to write.
*/
public function writeUserToCache($friend)
{
$userFilePointer = fopen('./userdata/users/' . $friend->userData->id . '.json', 'w');
fwrite($userFilePointer, json_encode($friend));
fclose($userFilePointer);
$this->cachedUserIds[] = $friend->userData->id;
}
/**
* Writes to the filesystem our list of cached userids. Should be called anytime writeFollowerToCache is called, however
* if you expect to call it many times, best to call persistUserListCache once at the end.
*/
public function flushUserListCache()
{
$filename = './userdata/cacheduserlist.json';
$filePointer = fopen($filename, 'w');
if (!isset($this->cachedUserIds))
{
$this->cachedUserIds = array();
FTF_Web::$currentDriver->addLogMessage("Cannot flush primary data to filesystem. Error occurred.");
return;
}
$toWrite = (Object)array();
$toWrite->userIds = $this->cachedUserIds;
fwrite($filePointer, json_encode($toWrite));
fclose($filePointer);
}
/**
* Fetch user data for list of user ids.
* @param $userIds array List of ids to fetch users for.
* @return array Return array of users.
*/
public function fetchCachedUsers($userIds)
{
$users = array();
foreach ($userIds as $userId)
{
$filename = './userdata/users/' . $userId . '.json';
$filePointer = fopen($filename, 'r');
$data = fread($filePointer, filesize($filename));
$dataObject = json_decode($data);
$users[] = $dataObject->userData;
}
return $users;
}
public function fetchUserFTFData($userId, $field)
{
$filename = './userdata/users/' . $userId . '.json';
$filePointer = fopen($filename, 'r');
$data = fread($filePointer, filesize($filename));
fclose($filePointer);
$userObject = json_decode($data, true);
if (isset($userObject[$field]))
{
return $userObject[$field];
}
return "";
}
/**
* Updates the data for the given user in our cache. Will only update the supplied parameters if they
* are non-null and greater than 0 for numerics.
* @param Integer $userId Userid we are updating information form.
* @param Integer $dateFollowed 10 digit timestamp.
* @param Integer $dateUnfollowed 10 digit timestamp.
* @param Integer $downloadDate 10 digit timestamp.
* @param Object $userData User data from twitter.
*/
public function updateUserData($userId, $dateFollowed = -1, $dateUnfollowed = -1, $downloadDate = -1, $userData = null)
{
$filename = './userdata/users/' . $userId . '.json';
$filePointer = fopen($filename, 'r');
$data = fread($filePointer, filesize($filename));
fclose($filePointer);
FTF_Web::$currentDriver->addLogMessage("Updating user data for " . $userId);
$userObject = json_decode($data);
$changeMade = false;
if (is_numeric($dateFollowed) && $dateFollowed > 0)
{
FTF_Web::$currentDriver->addLogMessage("Setting DateFollowed to: " . $dateFollowed);
$userObject->dateFollowed = $dateFollowed;
$changeMade = true;
}
if (is_numeric($dateUnfollowed) && $dateUnfollowed > 0)
{
FTF_Web::$currentDriver->addLogMessage("Setting DateUnfollowed to: " . $dateUnfollowed);
$userObject->dateUnfollowed = $dateUnfollowed;
$changeMade = true;
}
if (is_numeric($downloadDate) && $downloadDate > 0)
{
FTF_Web::$currentDriver->addLogMessage("Setting DownloadDate to: " . $downloadDate);
$userObject->downloadDate = $downloadDate;
$changeMade = true;
}
if (isset($userData))
{
FTF_Web::$currentDriver->addLogMessage("Updating user data from twitter");
$userObject->userData = $userData;
$changeMade = true;
}
if ($changeMade)
{
FTF_Web::$currentDriver->addLogMessage("Writing changes to file." . json_encode($userObject));
$filePointer = fopen($filename, 'w');
fwrite($filePointer, json_encode($userObject));
fclose($filePointer);
}
}
/**
* Get the current user, or null if no curent user.
* @return FTF_TwitterUser
*/
public function currentUser()
{
if (!isset($this->currentUser))
{
return null;
}
return $this->currentUser;
}
/**
* Sets curent user will write to file and update in memory.
* @param FTF_TwitterUser $currentUser
*/
public function setCurrentUser($currentUser)
{
if (!FTF_TwitterUser::validateUser($currentUser))
{
return;
}
$filename = './userdata/findtofollow.json';
$filePointer = fopen($filename, 'w');
fwrite($filePointer, '{"currentUser":' . json_encode($currentUser) . '}');
fclose($filePointer);
$this->currentUser = $currentUser;
}
/**
* Clear current user data so that the next reload of the page will force a new twitter auth action.
*/
public function clearCurrentUser()
{
$filename = './userdata/findtofollow.json';
$filePointer = fopen($filename, 'w');
fwrite($filePointer, '{"currentUser":null}');
fclose($filePointer);
$this->currentUser = null;
}
}
?>