Skip to content

Commit ebbd611

Browse files
committed
Introduced support for SharePoint CAML queries
1 parent 4d22033 commit ebbd611

10 files changed

+88
-29
lines changed

examples/settings.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
settings = {
2-
'url': 'https://mediadev20.sharepoint.com/sites/contoso',
3-
'username': '[email protected]',
4-
'password': 'P@ssw0rd'
2+
'url': 'https://mediadev23.sharepoint.com',
3+
'user_credentials': {
4+
'username': '[email protected]',
5+
'password': 'P@ssw0rd'
6+
},
7+
'client_credentials': {
8+
'client_id': '',
9+
'client_secret': '',
10+
'redirect_url': 'https://github.com/vgrem/Office365-REST-Python-Client/'
11+
}
512
}
6-
7-
app_settings = {
8-
'url': 'https://mediadev20.sharepoint.com/sites/contoso',
9-
'client_id': '99cbd1a9-ec8d-4e89-96c3-699993089d65',
10-
'client_secret': 'VMdT8mOurDhsvG8yDnP3yFg',
11-
'redirect_url': 'https://github.com/vgrem/Office365-REST-Python-Client/'
12-
}

examples/sharepoint_client_flow_auth.py

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
'url': 'https://contoso.sharepoint.com/',
1010
'client_id': '8efc226b-ba3b-4def-a195-4acdb8d20ca9',
1111
'client_secret': '',
12-
'redirect_url': 'https://github.com/vgrem/Office365-REST-Python-Client/'
1312
}
1413

1514

examples/view_operations.py

+35-12
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,56 @@
11
from examples.settings import settings
22
from office365.runtime.auth.authentication_context import AuthenticationContext
3+
from office365.sharepoint.caml_query import CamlQuery
34
from office365.sharepoint.client_context import ClientContext
45

5-
6-
listTitle = "Documents"
6+
list_title = "Documents"
7+
view_title = "All Documents"
78

89

910
def print_list_views(ctx):
1011
"""Read list view by title example"""
11-
list_object = ctx.web.lists.get_by_title(listTitle)
12+
list_object = ctx.web.lists.get_by_title(list_title)
1213
views = list_object.views
1314
ctx.load(views)
1415
ctx.execute_query()
1516
for view in views:
1617
# print "View title: {0}".format(view.Properties["Title"])
1718

18-
viewTitle = view.properties["Title"]
19-
curView = views.get_by_title(viewTitle)
20-
ctx.load(curView)
19+
cur_view_title = view.properties["Title"]
20+
cur_view = views.get_by_title(cur_view_title)
21+
ctx.load(cur_view)
2122
ctx.execute_query()
22-
print("View title: {0}".format(curView.properties["Title"]))
23+
print("View title: {0}".format(cur_view.properties["Title"]))
24+
25+
26+
def print_view_items(ctx):
27+
"""Example demonstrates how to retrieve View items"""
28+
29+
list_object = ctx.web.lists.get_by_title(list_title)
30+
# 1.get View query
31+
view = list_object.views.get_by_title(view_title)
32+
ctx.load(view, "ViewQuery")
33+
ctx.execute_query()
34+
35+
# 2.get items for View query
36+
qry = CamlQuery()
37+
qry.ViewXml = "<View><Where>{0}</Where></View>".format(view.properties["ViewQuery"])
38+
items = list_object.get_items(qry)
39+
ctx.load(items)
40+
ctx.execute_query()
41+
42+
for item in items:
43+
print("Item title: {0}".format(item.properties["Title"]))
2344

2445

2546
if __name__ == '__main__':
26-
ctxAuth = AuthenticationContext(url=settings['url'])
27-
if ctxAuth.acquire_token_for_user(username=settings['username'], password=settings['password']):
28-
ctx = ClientContext(settings['url'], ctxAuth)
47+
ctx_auth = AuthenticationContext(url=settings['url'])
48+
if ctx_auth.acquire_token_for_app(client_id=settings['client_credentials']['client_id'],
49+
client_secret=settings['client_credentials']['client_secret']):
50+
ctx = ClientContext(settings['url'], ctx_auth)
2951

30-
print_list_views(ctx)
52+
# print_list_views(ctx)
53+
print_view_items(ctx)
3154

3255
else:
33-
print(ctxAuth.get_last_error())
56+
print(ctx_auth.get_last_error())

examples/web_operations.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ def list_site_users(ctx):
4848

4949
if __name__ == '__main__':
5050
ctxAuth = AuthenticationContext(url=settings['url'])
51-
if ctxAuth.acquire_token_for_user(username=settings['username'], password=settings['password']):
51+
if ctxAuth.acquire_token_for_user(username=settings['user_credentials']['username'],
52+
password=settings['user_credentials']['password']):
5253
ctx = ClientContext(settings['url'], ctxAuth)
5354
# web = load_web(ctx)
5455
web = create_web(ctx)

examples/web_read_direct.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
if __name__ == '__main__':
1010
context_auth = AuthenticationContext(url=settings['url'])
11-
if context_auth.acquire_token_for_user(username=settings['username'], password=settings['password']):
11+
if context_auth.acquire_token_for_user(username=settings['user_credentials']['username'],
12+
password=settings['user_credentials']['password']):
1213
"""Read Web client object"""
1314
ctx = ClientContext(settings['url'], context_auth)
1415

office365/sharepoint/caml_query.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
from office365.runtime.client_value_object import ClientValueObject
2+
3+
4+
class CamlQuery(ClientValueObject):
5+
"""Specifies a Collaborative Application Markup Language (CAML) query on a list or joined lists."""
6+
7+
def __init__(self):
8+
super(CamlQuery, self).__init__()
9+
self.DatesInUtc = None
10+
self.FolderServerRelativeUrl = None
11+
self.ViewXml = None
12+
self.metadata_type = "SP.CamlQuery"
13+
14+
@staticmethod
15+
def create_all_items_query():
16+
qry = CamlQuery()
17+
qry.view_xml = "<View Scope=\"RecursiveAll\"><Query></Query></View>"
18+
return qry
19+
20+
@staticmethod
21+
def create_all_folders_query():
22+
qry = CamlQuery()
23+
qry.view_xml = "<View Scope=\"RecursiveAll\"><Query>" \
24+
"<Where><Eq><FieldRef Name=\"FSObjType\" /><Value Type=\"Integer\">1</Value></Eq></Where>" \
25+
"</Query></View>"
26+
return qry
27+
28+
@property
29+
def payload(self):
30+
return {'query': super(CamlQuery, self).payload}

office365/sharepoint/list.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@
1616
class List(SecurableObject):
1717
"""List client object"""
1818

19-
def get_items(self):
19+
def get_items(self, caml_query=None):
2020
"""Returns a collection of items from the list based on the specified query."""
2121
items = ListItemCollection(self.context, ResourcePathEntry(self.context, self.resource_path, "items"))
22+
if caml_query:
23+
qry = ClientQuery.service_operation_query(self, ActionType.PostMethod, "GetItems", None, caml_query.payload)
24+
self.context.add_query(qry, items)
2225
return items
2326

2427
def add_item(self, list_item_creation_information):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def read(fname):
1111

1212
setup(
1313
name="Office365-REST-Python-Client",
14-
version="2.1.0",
14+
version="2.1.1",
1515
author="Vadim Gremyachev",
1616
author_email="[email protected]",
1717
maintainer="Konrad Gądek",

tests/outlook_client_case.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ class OutlookClientTestCase(TestCase):
99

1010
@classmethod
1111
def setUpClass(cls):
12-
ctx_auth = NetworkCredentialContext(username=settings['username'], password=settings['password'])
12+
ctx_auth = NetworkCredentialContext(username=settings['user_credentials']['username'],
13+
password=settings['user_credentials']['password'])
1314
cls.client = OutlookClient(ctx_auth)

tests/sharepoint_case.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class SPTestCase(TestCase):
1010
@classmethod
1111
def setUpClass(cls):
1212
ctx_auth = AuthenticationContext(url=settings['url'])
13-
ctx_auth.acquire_token_for_user(username=settings['username'], password=settings['password'])
13+
ctx_auth.acquire_token_for_user(username=settings['user_credentials']['username'],
14+
password=settings['user_credentials']['password'])
1415
cls.context = ClientContext(settings['url'], ctx_auth)
1516

0 commit comments

Comments
 (0)