-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphone.py
280 lines (232 loc) · 10.3 KB
/
phone.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
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
#!/usr/bin/env python3
import datetime
from xmlrpc.server import DocXMLRPCServer
import socket
import time
from objc_util import ObjCInstance
class PhotoService:
"""
Class to expose the photos module through an xml rpc interface.
"""
def __init__(self):
# Use a local instance instance of photos in case we ever want to hook methods.
import photos
self.p = photos
"""
# This wasn't too useful, can't marshall the types.
for z in dir(photos):
if z.startswith("_"):
continue
setattr(self, z, getattr(photos, z))
"""
def get_all_metadata(self):
"""
Retrieve all metadata of all images and videos.
"""
all_assets = self.p.get_assets(media_type="image")
all_assets.extend(list(self.p.get_assets(media_type="video")))
flat = [self._make_serializable(z) for z in all_assets]
return flat
def get_asset_collections(self):
"""
Get all asset collections.
"""
assetcollections = {
"albums": self._make_serializable(self.p.get_albums()),
"smart_albums": self._make_serializable(self.p.get_smart_albums()),
"moments": self._make_serializable(self.p.get_moments()),
"favorites_album": self._make_serializable(self.p.get_favorites_album()),
"recently_added_album": self._make_serializable(self.p.get_recently_added_album()),
"selfies_album": self._make_serializable(self.p.get_selfies_album()),
"screenshots_album": self._make_serializable(self.p.get_screenshots_album()),
}
return assetcollections
def delete_assets_by_metadata(self, list_of_asset_metadata, ignore_integrity=False):
"""
Remove list of assets. Metadata provides strong guarantees that the asset was correctly
transfered.
"""
to_delete = []
for metadata in list_of_asset_metadata:
local_id = metadata["local_id"]
on_phone_metadata = self.retrieve_asset_by_local_id(local_id)
# Discard the data key.
del on_phone_metadata["_data"]
if on_phone_metadata == metadata:
to_delete.append(self.p.get_asset_with_local_id(local_id))
else:
print("Something is not matching:")
print(" Metadata Phone: {}".format(on_phone_metadata))
print(" Metadata Local: {}".format(metadata))
if ignore_integrity:
print("Deleting regardless, as integrity check passed.");
to_delete.append(self.p.get_asset_with_local_id(local_id))
else:
print("Integrity check required to pass, aborting.")
return
print(to_delete)
self.p.batch_delete(to_delete)
@staticmethod
def _asset_filename(a):
return str(ObjCInstance(a).filename())
@staticmethod
def _get_data(asset):
if (asset.media_type == "image"):
# image_b = asset.get_image_data(original=True)
# print(image_b.uti)
# image_bytes = image_b.getvalue()
return PhotoService._get_image_data(asset)
if (asset.media_type == "video"):
image_b = PhotoService._get_video_data(asset)
image_bytes = image_b
return image_bytes
@staticmethod
def _get_video_data(asset):
# https://forum.omz-software.com/topic/3299/get-filenames-for-photos-from-camera-roll/18
# https://gist.github.com/jsbain/de01d929d3477a4c8e7ae9517d5b3d70
from objc_util import ObjCInstance, ObjCClass, ObjCBlock, c_void_p
assets = [asset]
options = ObjCClass('PHVideoRequestOptions').new()
options.version = 1 #PHVideoRequestOptionsVersionOriginal, use 0 for edited versions.
image_manager = ObjCClass('PHImageManager').defaultManager()
handled_assets = []
def handleAsset(_obj,asset, audioMix, info):
A = ObjCInstance(asset)
'''I am just appending to handled_assets to process later'''
handled_assets.append(A)
'''
# alternatively, handle inside handleAsset. maybe need a threading.Lock here to ensure you are not sending storbinaries in parallel
with open(str(A.resolvedURL().resourceSpecifier()),'rb') as fp:
fro.storbinary(......)
'''
handlerblock=ObjCBlock(handleAsset, argtypes=[c_void_p,]*4)
for A in assets:
#these are PHAssets
image_manager.requestAVAssetForVideo(A,
options=options,
resultHandler=handlerblock)
while len(handled_assets) < len(assets):
time.sleep(0.1)
A = handled_assets[0]
with open(str(A.resolvedURL().resourceSpecifier()),'rb') as fp:
return fp.read()
@staticmethod
def _get_image_data(asset):
# adapted from get_video_data
# https://forum.omz-software.com/topic/3299/get-filenames-for-photos-from-camera-roll/18
# https://gist.github.com/jsbain/de01d929d3477a4c8e7ae9517d5b3d70
import objc_util
from objc_util import ObjCInstance, ObjCClass, ObjCBlock, c_void_p
import ctypes
assets = [asset]
options = ObjCClass('PHImageRequestOptions').new()
options.PHImageRequestOptionsDeliveryMode = 1 # high quality
options.version = 0
options.synchronous = True
image_manager = ObjCClass('PHImageManager').defaultManager()
handled_assets = []
def handleAsset(_obj, result, info):
# result here holds the thing we actually want.
A = ObjCInstance(result)
handled_assets.append(A)
handlerblock=ObjCBlock(handleAsset, argtypes=[c_void_p,]*3)
for A in assets:
# https://developer.apple.com/documentation/photokit/phimagemanager/3237282-requestimagedataandorientationfo?language=objc
image_manager.requestImageDataAndOrientationForAsset(A,options=options,
resultHandler=handlerblock)
while len(handled_assets) < len(assets):
# print(".");
time.sleep(0.1)
# Now we have some clunky bytes object that makes up a pointer and a length, retrieve the
# heic data.
retrieved_data = handled_assets[0]
ptr = retrieved_data.bytes()
data = ctypes.POINTER(ctypes.c_char).from_buffer(ptr)[:retrieved_data.length()]
return data
def retrieve_asset_by_local_id(self, local_id):
"""
Function to retrieve an asset by its local id, with full metdata and the extra keys:
- _filesize the number of bytes making up the file
- _data The data of this file.
- _md5 The md5 sum of this file.
"""
asset = self.p.get_asset_with_local_id(local_id)
asset_dict = self._make_serializable(asset)
image_bytes = self._get_data(asset)
asset_dict["_filesize"] = len(image_bytes)
asset_dict["_data"] = image_bytes
import hashlib
m = hashlib.md5()
m.update(image_bytes)
asset_dict["_md5"] = m.hexdigest()
return asset_dict
def _make_serializable(self, a):
"""
This function can convert any photos' data type into a dictionary
of usefulness.
"""
ASSETCOLLECTION_DATA_KEYS = ("local_id",
"assets",
"title",
"type",
"subtype",
"start_date",
"end_date")
ASSET_DATA_KEYS = ("local_id",
"pixel_width",
"pixel_height",
"media_type",
"media_subtypes",
"creation_date",
"modification_date",
"hidden",
"favorite",
"duration",
"location")
if isinstance(a, list):
z = [self._make_serializable(b) for b in a]
return z
if isinstance(a, self.p.AssetCollection):
z = {}
for k in ASSETCOLLECTION_DATA_KEYS:
z[k] = self._make_serializable(getattr(a, k))
return z
if isinstance(a, self.p.Asset):
z = {}
for k in ASSET_DATA_KEYS:
z[k] = self._make_serializable(getattr(a, k))
z["filename"] = PhotoService._asset_filename(a)
return z
if isinstance(a, datetime.datetime):
return time.mktime(a.timetuple())
# we do not need to recurse / modify, return as is.
return a
class ReuseableDocXMLServer(DocXMLRPCServer):
def server_bind(self):
self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
self.socket.bind(self.server_address)
def disable_idle():
from objc_util import on_main_thread
import console
on_main_thread(console.set_idle_timer_disabled)(True);
def start():
with ReuseableDocXMLServer(("0.0.0.0", 1338), allow_none=True) as server:
server.set_server_title("Photo management server")
server.set_server_name("Photo management server")
server.register_instance(PhotoService(), allow_dotted_names=True)
#server.register_multicall_functions()
print('Serving XML-RPC on localhost port 1338')
try:
server.serve_forever()
except KeyboardInterrupt:
print("\nKeyboard interrupt received, exiting.")
def test_image_data():
p = PhotoService()
entries = p.get_all_metadata()
a_photo = [x for x in entries if x["media_type"] == "image"][-1]
a = p.p.get_asset_with_local_id(a_photo["local_id"])
d = p._get_image_data(a)
print("yes, all done")
if __name__ == "__main__":
disable_idle()
start()