-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfbrecog.py
94 lines (79 loc) · 3.57 KB
/
fbrecog.py
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
from facepy import GraphAPI
import requests
import json
class FBRecog(object):
API_URL = "https://www.facebook.com/photos/tagging/recognition/?dpr=1"
def __init__(self, access_token, cookies, fb_dtsg):
self.access_token = access_token
self.cookies = cookies
self.fb_dtsg = fb_dtsg
self.headers = {'x_fb_background_state': '1',
'origin': 'https://www.facebook.com',
'accept-encoding': 'gzip, deflate, lzma',
'accept-language': 'en-US,en;q=0.8',
'user-agent': 'FBRecog/API',
'content-type': 'application/x-www-form-urlencoded',
'accept': '*/*',
'referer': 'https://www.facebook.com/',
'cookie': self.cookies,
'dnt': '1'}
self.graph = GraphAPI(self.access_token)
def _post_photo(self, path):
try:
# Uploading the picture to Facebook
response = self.graph.post(path='me/photos', retry=3, source=open(path, 'rb'))
except Exception as e:
print(e)
return -1
else:
return response['id']
def _query_recognition_api(self, post_id):
payload = []
data = 'recognition_project=composer_facerec&photos[0]=' + post_id
data += '&target&is_page=false&include_unrecognized_faceboxes=false&include_face_crop_src=true'
data += '&include_recognized_user_profile_picture=true&include_low_confidence_recognitions=true'
data += '&__a=1&fb_dtsg=' + self.fb_dtsg
# Since the POST sometimes returns a blank array, retrying until a payload is obtained
for i in range(20):
response = requests.post(self.API_URL, data=data, headers=self.headers)
payload = json.loads(response.text.replace('for (;;);', ''))['payload']
if (None in payload):
print (i)
print(payload.get(0))
print('.-'*20)
print(payload[0]['faceboxes'])
if payload and "faceboxes" in payload[0] and payload[0]['faceboxes']:
break
return payload[0]['faceboxes']
def recognize_raw(self, path):
print('Post data to Facebook, please wait...')
post_id = self._post_photo(path)
result = None
if post_id != -1:
try:
print("Querying Facebook, please wait...")
result = self._query_recognition_api(post_id)
except (KeyError, IndexError) as e:
print("Unable to fetch details. API unresponsive. Please try again later.")
except Exception as e:
print(e)
# Deleting the uploaded picture
print("Please wait. Cleaning up...")
self.graph.delete(path=post_id, retry=5)
print("Finished.")
return result
def recognize(self, path):
"""Face recognition using Facebook's recognize method
Args:
path : file path of the photo to be processed
Returns:
result : array of recognitions with the name of recognized people
and the certainity of each recognition
"""
faceboxes = self.recognize_raw(path)
result = []
for recog in faceboxes:
name = recog['recognitions']
if name:
result.append({'name': name[0]['user']['name'], 'certainity': name[0]['certainty']})
return result