-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchClassTest.php
414 lines (327 loc) · 14.8 KB
/
searchClassTest.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
<?php
/*Version 2 needed for editing
*/
error_reporting(0);
class search {
public function setInstagram($instagram){
$this->instagramtoken = $instagram;
}
public function getInstagram(){
return $this->instagramtoken;
}
public function setUser($facebook){
$this->facebookUserToken = $facebook;
}
public function getUserToken(){
return $this->facebookUserToken;
}
public function setFacebook($facebook){
$this->facebooktoken = $facebook;
}
public function getFacebook(){
return $this->facebooktoken;
}
public function setTwitter($settings){
$this->settings = $settings;
}
public function getTwitter(){
return $this->settings;
}
function getUserInformation($user){
$user = trim($user);
$userInformation = array();
$instagramtoken = $this->getInstagram();
$settings = $this->getTwitter();
$facebooktoken = $this->getFacebook();
require_once('TwitterAPIExchange.php');
$ta_url='https://api.twitter.com/1.1/users/search.json';
$getfield = '?q='.$user.'&page=1&count=3'; // enter your twitter name without the "@" here
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
$follow_count=$twitter->setGetfield($getfield)
->buildOauth($ta_url, $requestMethod)
->performRequest();
$json_twitter = json_decode($follow_count, true);
$twitter_id = $jsonDecode['data'][0]['id'];
$image_url = $json_twitter[0]['profile_image_url'];
$twitterFollowers = @$json_twitter[0]['followers_count'];
$twitterScreenName = $json_twitter[0]['screen_name'];
$location = $json_twitter[0]['location'];
$urlTwitterLink = "https://twitter.com/".$twitterScreenName;
$twitter_full_name = $json_twitter[0]['name'];
$userInformation['twitter']['followers'] = $twitterFollowers;
$userInformation['image'] = $image_url;
$userInformation['twitter']['url'] = $urlTwitterLink;
$userInformation['twitter']['screen_name'] = $twitterScreenName;
$userInformation['twitter']['full_name'] = $twitter_full_name;
$userInformation['twitter']['location'] = $location;
$facebookGivenName = $this->facebookSearch($user);
if($twitterScreenName != NULL){
$facebookFullName = $this->facebookSearch($twitter_full_name);
}
if($twitter_full_name != NULL){
$facebookScreenName = $this->facebookSearch($twitterScreenName);
}
$facebookResult = max(current($facebookScreenName), current($facebookFullName), current($facebookGivenName));
if(current($facebookGivenName) == $facebookResult){
$userInformation['facebook']['url'] = 'http://facebook.com/'.key($facebookGivenName);
$userInformation['facebook']['likes'] = $facebookResult;
}
if(current($facebookScreenName) == $facebookResult){
$userInformation['facebook']['url'] = 'http://facebook.com/'.key($facebookScreenName);
$userInformation['facebook']['likes'] = $facebookResult;
}
if(current($facebookFullName) == $facebookResult){
$userInformation['facebook']['url'] = 'http://facebook.com/'.key($facebookFullName);
$userInformation['facebook']['likes'] = $facebookResult;
}
if($twitterScreenName != NULL){
$instagramFullName = $this->instagramSearch($twitter_full_name);
}
if($twitter_full_name != NULL){
$instagramScreenName = $this->instagramSearch($twitterScreenName);
}
$instagramGivenName = $this->instagramSearch($user);
$instagramResult = max(current($instagramGivenName), current($instagramScreenName), current($instagramFullName));
//echo "This is instagram result :".$instagramResult;
$right = false;
$somethingArray = array($instagramGivenName, $instagramScreenName, $instagramFullName);
foreach($somethingArray as $it){
// var_dump($it);
echo "<br/>";
if($it['checkCorrect'] == "correct"){
$right = true;
$something = $it['correct'];
//echo $something;
//var_dump($it[$something][$something]);
$instagramResult = $it[$something][$something];
$userInformation['instagram']['url'] = 'http://instagram.com/'.$something;
$userInformation['instagram']['followers'] = $instagramResult;
$instagramResult = $userInformation['instagram']['followers'];
$userInformation['instagram']['bio'] = $it[$something]['bio'];
$userInformation['instagram']['website'] = $it[$something]['website'];
$userInformation['instagram']['email'] = $it[$something]['email'];
//var_dump($userInformation);
// stuff
}
}
if($right == false){
if(current($instagramGivenName) == $instagramResult){
$userInformation['instagram']['url'] = 'http://instagram.com/'.key($instagramGivenName);
$userInformation['instagram']['followers'] = $instagramResult;
$userInformation['instagram']['bio'] = $instagramGivenName['bio'];
$userInformation['instagram']['website'] = $instagramGivenName['website'];
$userInformation['instagram']['email'] = $instagramGivenName['email'];
if($instagramGivenName['image'] != NULL){
$userInformation['image'] = $instagramGivenName['image'];
}
}
if(current($instagramScreenName) == $instagramResult){
$userInformation['instagram']['url'] = 'http://instagram.com/'.key($instagramScreenName);
$userInformation['instagram']['followers'] = $instagramResult;
$userInformation['instagram']['bio'] = $instagramScreenName['bio'];
$userInformation['instagram']['website'] = $instagramScreenName['website'];
$userInformation['instagram']['email'] = $instagramScreenName['email'];
if($instagramScreenName['image'] != NULL){
$userInformation['image'] = $instagramScreenName['image'];
}
}
if(current($instagramFullName) == $instagramResult){
$userInformation['instagram']['url'] = 'http://instagram.com/'.key($instagramFullName);
$userInformation['instagram']['followers'] = $instagramResult;
$userInformation['instagram']['bio'] = $instagramFullName['bio'];
$userInformation['instagram']['website'] = $instagramFullName['website'];
$userInformation['instagram']['email'] = $instagramFullName['email'];
if($instagramFullName['image'] != NULL){
$userInformation['image'] = $instagramFullName['image'];
}
}
}
$userInformation['total'] = $instagramResult + $facebookResult + $twitterFollowers;
//var_dump($userInformation);
return $userInformation;
}
function facebookSearch($user){
$facebooktoken = $this->getFacebook();
$facebookArray = array();
$facebookUserToken = $this->getUserToken();
// First JSON.
$user = preg_replace('/\s+/', '+', $user);
$json_url_p1 = 'https://graph.facebook.com/search?q='.$user.'&type=page&access_token='.$facebooktoken;
// Second JSON.
$json_url_p2 = "https://graph.facebook.com/v2.6/".$user."?access_token=".$facebooktoken;
//third JSON has to use facebookUserToken.
$json_url_p3 = "https://graph.facebook.com/v2.6/search?q=".$user."&type=user&access_token=".$facebookUserToken;
// get curl info
$json_p1 = $this->curl($json_url_p1);
$json_p2 = $this->curl($json_url_p2);
$json_p3 = $this->curl($json_url_p3);
//set JSONp1 information
$p1_id = $json_p1['data'][0]['id'];
$p2_id = $json_p2['id'];
$p3_id = $json_p3['data'][0]['id'];
// We will check if the ID's are equal, if so we will make one
// request and then return the likes.
if($p1_id === $p2_id && $p1_id != NULL){
$json_url_p1_profile = 'https://graph.facebook.com/v2.3/'.$p1_id.'?fields=likes&access_token='.$facebooktoken;
$json_p1 = $this->curl($json_url_p1_profile);
$facebookLikes = $json_p1['likes'];
$facebookArray[$p1_id] = $facebookLikes;
return $facebookArray;
}
// JSON_p1_Likes
$json_url_p1_profile = 'https://graph.facebook.com/v2.3/'.$p1_id.'?fields=likes&access_token='.$facebooktoken;
$json_url_p2_profile = 'https://graph.facebook.com/v2.3/'.$p2_id.'?fields=likes&access_token='.$facebooktoken;
$json_url_p3_profile = 'https://graph.facebook.com/v2.3/'.$p3_id.'?fields=likes&access_token='.$facebookUserToken;
//get curl info
$json_p1_new = $this->curl($json_url_p1_profile);
$json_p2_new = $this->curl($json_url_p2_profile);
$json_p3_new = $this->curl($json_url_p3_profile);
var_dump($json_p3_new);
$likes = max($json_p1_new['likes'], $json_p2_new['likes'], $json_p3_new['likes']);
if($json_p1_new['likes'] === $likes ){
$facebookArray[$p1_id] = $likes;
return $facebookArray;
}
if($json_p2_new['likes'] === $likes ){
$facebookArray[$p2_id] = $likes;
return $facebookArray;
}
if($json_p3_new['likes'] === $likes ){
$facebookArray[$p3_id] = $likes;
return $facebookArray;
}
} // end function
function instagramSearch($user){
$instagramtoken = $this->getInstagram();
$instagramArray = array();
$checkUser = preg_replace('/\s+/', '', $user);
$user = preg_replace('/\s+/', '+', $user);
$json_url = 'https://api.instagram.com/v1/users/search?q='.$user.'&access_token='.$instagramtoken;
$json_decode = $this->curl($json_url);
foreach($json_decode['data'] as $info ){
if($info['username'] == $user || $info['username'] == $checkUser){
if($info['username'] == $user){
$instagramArray['checkCorrect'] = "correct";
$instagramArray['correct'] = $user;
$json_url = 'https://api.instagram.com/v1/users/'.$info['id'].'/?access_token='.$instagramtoken;
$json_decode = $this->curl($json_url);
$instagramFollowers = $json_decode['data']['counts']['followed_by'];
$instagramArray[$user][$json_decode['data']['username']] = $instagramFollowers;
$instagramArray[$user]['bio'] = $json_decode['data']['bio'];
$instagramArray[$user]['image'] = $json_decode['data']['profile_picture'];
$instagramArray[$user]['website'] = $json_decode['data']['website'];
$bioarr = explode(' ', $instagramArray[$checkUser]['bio']);
$email ="";
foreach($bioarr as $it){
$emailTemp = strpos($it, "@");
if($emailTemp == TRUE){
$email = $it;
break;
} // end if
} // end foreach bio
$instagramArray[$user]['email'] = $email;
} // end if
else {
$instagramArray['checkCorrect'] = "correct";
$instagramArray['correct'] = $checkUser;
$json_url = 'https://api.instagram.com/v1/users/'.$info['id'].'/?access_token='.$instagramtoken;
$json_decode = $this->curl($json_url);
$instagramFollowers = $json_decode['data']['counts']['followed_by'];
$instagramArray[$checkUser][$json_decode['data']['username']] = $instagramFollowers;
$instagramArray[$checkUser]['bio'] = $json_decode['data']['bio'];
$instagramArray[$checkUser]['image'] = $json_decode['data']['profile_picture'];
$instagramArray[$checkUser]['website'] = $json_decode['data']['website'];
$bioarr = explode(' ', $instagramArray[$checkUser]['bio']);
$email ="";
foreach($bioarr as $it){
$emailTemp = strpos($it, "@");
if($emailTemp == TRUE){
$email = $it;
break;
} // end if
} // end foreach bio
$instagramArray[$checkUser]['email'] = $email;
}// end else
//var_dump($instagramArray);
return $instagramArray;
}
// end if
$json_url = 'https://api.instagram.com/v1/users/'.$json_decode['data'][0]['id'].'/?access_token='.$instagramtoken;
$json_decode = $this->curl($json_url);
$instagramFollowers = $json_decode['data']['counts']['followed_by'];
$instagramArray[$json_decode['data']['username']] = $instagramFollowers;
$instagramArray['bio'] = $json_decode['data']['bio'];
$instagramArray['image'] = $json_decode['data']['profile_picture'];
$instagramArray['website'] = $json_decode['data']['website'];
$bioarr = explode(' ', $instagramArray['bio']);
$email ="";
foreach($bioarr as $it){
$emailTemp = strpos($it, "@");
if($emailTemp == TRUE){
$email = $it;
break;
}
else continue;
}
$instagramArray['email'] = $email;
return $instagramArray;
}
}
/* function getUser($id, $getField = '', $extra = ''){
$instagramtoken = $this->getProperty();
$url = 'https://api.instagram.com/v1/users/'.$id.''.$getField.'?access_token='.$instagramtoken.''.$extra;
$jsonDecode = $this->curl($url);
return $jsonDecode;
}*/
function curl($url){
$curl_connection = curl_init($url);
curl_setopt($curl_connection, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($curl_connection, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl_connection, CURLOPT_SSL_VERIFYPEER, false);
$json = json_decode(curl_exec($curl_connection), true);
return $json;
} // end function
function youtube($user){
$user = explode('https://www.youtube.com/user/', $user);
$username = $user[1];
$key ='AIzaSyAAANUEzxJ9RkLAZOoVxxgP5hrxmrzUOnc';
$url = 'https://www.googleapis.com/youtube/v3/channels?key='.$key.'&forUsername='.$username.'&part=id';
$json = $this->curl($url);
$id = $json['items'][0]['id'];
$url = 'https://www.googleapis.com/youtube/v3/channels?part=statistics&id='.$id.'&key='.$key;
$json = $this->curl($url);
$subscriberCount = $json['items'][0]['statistics']['subscriberCount'];
return $subscriberCount;
}
} // end class
/*
How class works
to get id of user
ceate a new object and point it to getID("usernamegoeshere");
the return value will be the ID.
to get a json_decode of a url
take the object and point it to getUser($getIDObject, '/whatever/goeshere/')
make sure to end 2nd parameter with single quotes. And to put a slash in beginning and end
If extra parameter is needed, make sure to put make it as &count=10
If the user is self just set the ID/ first parameter to self.
$newUser = new search;
$newUser->getUserInformation("chrispaul");
$newUser->getUserInformation("chris paul");
$newUser->getUserInformation("cp3");
$newUser = new search;
$info = $newUser->getUserInformation("chrispaul");
//var_dump($info);
//echo $info['instagram']['url'];
$newUser = new search;
$info = $newUser->getUserInformation("kingjames");
var_dump($info);
$info = $newUser->getUserInformation("lebron james");
var_dump($info);
$info = $newUser->getUserInformation("lebronjames");
var_dump($info);
*/
$newUser = new search;
$info = $newUser->getUserInformation("Lauren Maillian");
var_dump($info);
?>