|
3 | 3 | from office365.directory.permission import Permission
|
4 | 4 | from office365.directory.permission_collection import PermissionCollection
|
5 | 5 | from office365.entity_collection import EntityCollection
|
| 6 | +from office365.onedrive.children_resource_path import ChildrenResourcePath |
6 | 7 | from office365.onedrive.conflictBehavior import ConflictBehavior
|
7 | 8 | from office365.onedrive.driveItemVersion import DriveItemVersion
|
8 | 9 | from office365.onedrive.file import File
|
|
11 | 12 | from office365.onedrive.folder import Folder
|
12 | 13 | from office365.onedrive.listItem import ListItem
|
13 | 14 | from office365.onedrive.publicationFacet import PublicationFacet
|
| 15 | +from office365.onedrive.root_resource_path import RootResourcePath |
14 | 16 | from office365.onedrive.uploadSession import UploadSession
|
15 | 17 | from office365.excel.workbook import Workbook
|
16 | 18 | from office365.runtime.client_result import ClientResult
|
@@ -165,6 +167,7 @@ def download(self, file_object):
|
165 | 167 |
|
166 | 168 | def _content_downloaded(resp):
|
167 | 169 | file_object.write(result.value)
|
| 170 | + |
168 | 171 | self.context.after_execute(_content_downloaded)
|
169 | 172 | return self
|
170 | 173 |
|
@@ -298,13 +301,21 @@ def file(self):
|
298 | 301 | """File metadata, if the item is a file."""
|
299 | 302 | return self.properties.get('file', File())
|
300 | 303 |
|
| 304 | + @property |
| 305 | + def is_folder(self): |
| 306 | + return self.is_property_available("folder") |
| 307 | + |
| 308 | + @property |
| 309 | + def is_folder(self): |
| 310 | + return self.is_property_available("folder") |
| 311 | + |
301 | 312 | @property
|
302 | 313 | def children(self):
|
303 | 314 | """Collection containing Item objects for the immediate children of Item. Only items representing folders
|
304 | 315 | have children."""
|
305 | 316 | from office365.onedrive.driveItemCollection import DriveItemCollection
|
306 | 317 | return self.properties.get('children',
|
307 |
| - DriveItemCollection(self.context, ResourcePath("children", self.resource_path))) |
| 318 | + DriveItemCollection(self.context, ChildrenResourcePath(self.resource_path))) |
308 | 319 |
|
309 | 320 | @property
|
310 | 321 | def listItem(self):
|
@@ -337,10 +348,16 @@ def versions(self):
|
337 | 348 | ResourcePath("versions", self.resource_path)))
|
338 | 349 |
|
339 | 350 | def set_property(self, name, value, persist_changes=True):
|
| 351 | + if self._resource_path is None and name == "id": |
| 352 | + col_path = self.parent_collection.resource_path |
| 353 | + if isinstance(col_path, ChildrenResourcePath): |
| 354 | + parent_path = col_path.parent |
| 355 | + if parent_path.segment == "root": |
| 356 | + self._resource_path = ResourcePath(value, ResourcePath("items", parent_path.parent)) |
| 357 | + elif parent_path.parent and parent_path.parent.segment == "items": |
| 358 | + self._resource_path = ResourcePath(value, parent_path.parent) |
| 359 | + |
| 360 | + elif isinstance(col_path, RootResourcePath): |
| 361 | + self._resource_path = ResourcePath(value, ResourcePath("items", col_path.parent)) |
340 | 362 | super(DriveItem, self).set_property(name, value, persist_changes)
|
341 |
| - if name == "id" and self._resource_path.parent.segment == "children": |
342 |
| - self._resource_path = ResourcePath( |
343 |
| - value, ResourcePath("items", self._parent_collection.resource_path.parent.parent)) |
344 |
| - elif name == "id" and self._resource_path.parent.segment == "root": |
345 |
| - self._resource_path = ResourcePath(value, ResourcePath("items", self._resource_path.parent.parent)) |
346 | 363 | return self
|
0 commit comments