Skip to content

Commit 0b8786d

Browse files
#276_ improvements and fixes to support addressing drive items by root and children tokens
1 parent f490f89 commit 0b8786d

9 files changed

+105
-13
lines changed

examples/onedrive/print_folders_and_files.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
from office365.graph_client import GraphClient
2+
from office365.onedrive.driveItem import DriveItem
23
from tests.graph_case import acquire_token_by_username_password
34

45

56
def enum_folders_and_files(root_folder):
7+
"""
8+
:type root_folder: office365.onedrive.driveItem.DriveItem
9+
"""
610
drive_items = root_folder.children.get().execute_query()
7-
for drive_item in drive_items:
8-
print("Name: {0}".format(drive_item.name))
9-
if not drive_item.is_property_available("folder"): # is folder facet?
11+
for drive_item in drive_items: # type: DriveItem
12+
print("Name: {0}".format(drive_item.resource_url))
13+
if drive_item.is_folder: # is folder facet?
1014
enum_folders_and_files(drive_item)
1115

1216

office365/base_item.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def name(self, value):
4444
@property
4545
def description(self):
4646
"""Provides a user-visible description of the item."""
47-
return self.properties.get('description',None)
47+
return self.properties.get('description', None)
4848

4949
@description.setter
5050
def description(self, value):
@@ -63,3 +63,7 @@ def parentReference(self):
6363
@parentReference.setter
6464
def parentReference(self, value):
6565
self.properties['parentReference'] = value
66+
67+
def set_property(self, name, value, persist_changes=True):
68+
super(BaseItem, self).set_property(name, value, persist_changes)
69+
return self

office365/onedrive/actions/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from office365.runtime.resource_path import ResourcePath
2+
3+
4+
class ChildrenResourcePath(ResourcePath):
5+
"""Resource path for OneDrive children addressing"""
6+
7+
def __init__(self, parent):
8+
super(ChildrenResourcePath, self).__init__("children", parent)

office365/onedrive/drive.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from office365.onedrive.driveItem import DriveItem
33
from office365.onedrive.driveItemCollection import DriveItemCollection
44
from office365.onedrive.list import List
5+
from office365.onedrive.root_resource_path import RootResourcePath
56
from office365.runtime.resource_path import ResourcePath
67

78

@@ -18,7 +19,7 @@ def sharedWithMe(self):
1819
@property
1920
def root(self):
2021
"""The root folder of the drive."""
21-
return self.properties.get('root', DriveItem(self.context, ResourcePath("root", self.resource_path)))
22+
return self.properties.get('root', DriveItem(self.context, RootResourcePath(self.resource_path)))
2223

2324
@property
2425
def list(self):

office365/onedrive/driveItem.py

+23-6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from office365.directory.permission import Permission
44
from office365.directory.permission_collection import PermissionCollection
55
from office365.entity_collection import EntityCollection
6+
from office365.onedrive.children_resource_path import ChildrenResourcePath
67
from office365.onedrive.conflictBehavior import ConflictBehavior
78
from office365.onedrive.driveItemVersion import DriveItemVersion
89
from office365.onedrive.file import File
@@ -11,6 +12,7 @@
1112
from office365.onedrive.folder import Folder
1213
from office365.onedrive.listItem import ListItem
1314
from office365.onedrive.publicationFacet import PublicationFacet
15+
from office365.onedrive.root_resource_path import RootResourcePath
1416
from office365.onedrive.uploadSession import UploadSession
1517
from office365.excel.workbook import Workbook
1618
from office365.runtime.client_result import ClientResult
@@ -165,6 +167,7 @@ def download(self, file_object):
165167

166168
def _content_downloaded(resp):
167169
file_object.write(result.value)
170+
168171
self.context.after_execute(_content_downloaded)
169172
return self
170173

@@ -298,13 +301,21 @@ def file(self):
298301
"""File metadata, if the item is a file."""
299302
return self.properties.get('file', File())
300303

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+
301312
@property
302313
def children(self):
303314
"""Collection containing Item objects for the immediate children of Item. Only items representing folders
304315
have children."""
305316
from office365.onedrive.driveItemCollection import DriveItemCollection
306317
return self.properties.get('children',
307-
DriveItemCollection(self.context, ResourcePath("children", self.resource_path)))
318+
DriveItemCollection(self.context, ChildrenResourcePath(self.resource_path)))
308319

309320
@property
310321
def listItem(self):
@@ -337,10 +348,16 @@ def versions(self):
337348
ResourcePath("versions", self.resource_path)))
338349

339350
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))
340362
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))
346363
return self
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from office365.runtime.resource_path import ResourcePath
2+
3+
4+
class RootResourcePath(ResourcePath):
5+
"""Resource path for OneDrive path-based addressing"""
6+
7+
def __init__(self, parent):
8+
super(RootResourcePath, self).__init__("root", parent)
9+
10+

office365/onedrive/siteCollection.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from office365.entity_collection import EntityCollection
2+
from office365.onedrive.root_resource_path import RootResourcePath
23
from office365.onedrive.site import Site
3-
from office365.runtime.resource_path import ResourcePath
44

55

66
class SiteCollection(EntityCollection):
@@ -13,7 +13,7 @@ def __init__(self, context, resource_path=None):
1313
def root(self):
1414
"""If present, indicates that this is a root site collection in SharePoint."""
1515
root_site = self.properties.get('root',
16-
Site(self.context, ResourcePath("root", self.resource_path)))
16+
Site(self.context, RootResourcePath(self.resource_path)))
1717

1818
root_site.ensure_property("id")
1919
return root_site

office365/sharepoint/sharing/documentSharingManager.py

+48
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1+
from office365.runtime.client_result import ClientResult
2+
from office365.runtime.client_value import ClientValue
3+
from office365.runtime.client_value_collection import ClientValueCollection
14
from office365.runtime.queries.service_operation_query import ServiceOperationQuery
25
from office365.sharepoint.base_entity import BaseEntity
36
from office365.sharepoint.permissions.role_definition import RoleDefinition
7+
from office365.sharepoint.sharing.userSharingResult import UserSharingResult
8+
9+
10+
class SharedWithMeViewItemRemovalResult(ClientValue):
11+
pass
412

513

614
class DocumentSharingManager(BaseEntity):
@@ -18,6 +26,46 @@ def get_role_definition(self, role):
1826
self.context.add_query(qry)
1927
return role_def
2028

29+
def remove_items_from_shared_with_me_view(self, item_urls):
30+
"""
31+
:type item_urls: list[str]
32+
"""
33+
result = ClientResult(self.context, ClientValueCollection(SharedWithMeViewItemRemovalResult))
34+
qry = ServiceOperationQuery(self, "RemoveItemsFromSharedWithMeView", [item_urls], None, None, result)
35+
qry.static = True
36+
self.context.add_query(qry)
37+
return result
38+
39+
def update_document_sharing_info(self, resourceAddress, userRoleAssignments, validateExistingPermissions,
40+
additiveMode, sendServerManagedNotification, customMessage,
41+
includeAnonymousLinksInNotification, propagateAcl):
42+
"""
43+
44+
:param str resourceAddress:
45+
:param ClientValueCollection userRoleAssignments:
46+
:param bool validateExistingPermissions:
47+
:param bool additiveMode:
48+
:param bool sendServerManagedNotification:
49+
:param str customMessage:
50+
:param bool includeAnonymousLinksInNotification:
51+
:param bool propagateAcl:
52+
"""
53+
result = ClientResult(self.context, ClientValueCollection(UserSharingResult))
54+
payload = {
55+
"resourceAddress": resourceAddress,
56+
"userRoleAssignments": userRoleAssignments,
57+
"validateExistingPermissions": validateExistingPermissions,
58+
"additiveMode": additiveMode,
59+
"sendServerManagedNotification": sendServerManagedNotification,
60+
"customMessage": customMessage,
61+
"includeAnonymousLinksInNotification": includeAnonymousLinksInNotification,
62+
"propagateAcl": propagateAcl
63+
}
64+
qry = ServiceOperationQuery(self, "UpdateDocumentSharingInfo", None, payload, None, result)
65+
qry.static = True
66+
self.context.add_query(qry)
67+
return result
68+
2169
@property
2270
def entity_type_name(self):
2371
return "SP.Sharing.DocumentSharingManager"

0 commit comments

Comments
 (0)