Addons for opentaskpy, giving it the ability to push/pull via Sharepoint using the MS Graph API.
Project description
This repository contains addons to allow integration with MS Sharepoint via Open Task Framework (OTF)
Open Task Framework (OTF) is a Python based framework to make it easy to run predefined file transfers and scripts/commands on remote machines.
This addons allows filewatches and pushes of files to Sharepoint Sites.
O365 Credentials
This package uses msal
to get OAuth2.0 creds for the MS Graph API. This includes access_token
and refresh_token
.
For tests to work, a .env
file containing the following needs to be created at the root of this repo containing the following:
SHAREPOINT_HOST=
SHAREPOINT_SITE=
CLIENT_ID=
TENANT_ID=
An Enterprise Application needs to be configured within EntraID to allow the app to access the Sharepoint API using delegated permissions. These should be set up as follows:
Under Authentication, the following needs to be enabled:
Once your app is set up, copy the "Application (client) ID" and "Directory (tenant) ID" into the .env
file. The SHAREPOINT_HOST
should be the hostname of your sharepoint instance , and the SHAREPOINT_SITE
should be name of the Sharepoint site itself.
You will need a "service account" user to authenticate with. This user should have access to the Sharepoint site you want to interact with, and OTF will act on behalf of this user for any interactions with Sharepoint. Any files created will be owned by this user.
Once this is done, you can trigger OTF to perform a task, or run the test under tests
. The test will cache a refresh_token.txt
locally, after going through the login flow.
You will see a message in the logs stating that you need to log into your account in a web browser, along with a code to enter. Follow the instructions (logging in with your service account) to complete the process flow and get the credentials.
When using in a real environment, you'll want to make use of cacheable variables to ensure that the refresh_token
is updated after each login. See the test_taskhandler_transfer_sharepoint.py
file for an example of how this is done. The task definition in your .json.j2
task definition will need to use the equivalent lookup plugin to obtain the refresh_token
from the cache on startup.
Transfers
Transfers require a few additional arguments to normal. These are:
- siteHostname: The hostname of the Sharepoint site
- siteName: The name of the Sharepoint site
As part of the upload, the bucket-owner-full-control
ACL flag is applied to all files. This can be disabled by setting disableBucketOwnerControlACL
to true
in the protocol
definition
Supported features
- Plain file watch
- File watch/transfer with file size and age constraints
Configuration
JSON configs for transfers can be defined as follows:
Example File Watch Only
"source": {
"siteHostname": "mydomain.sharepoint.com",
"siteName": "mysitename",
"directory": "src",
"fileRegex": ".*\\.txt",
"protocol": {
"name": "opentaskpy.addons.o365.remotehandlers.sharepoint.SharepointTransfer",
"refreshToken": "{{ SOME LOOKUP DEFINITION }}",
"clientId": "my-application-id",
"tenantId": "my-tenant-id"
},
"fileWatch": {
"timeout": 2
},
"cacheableVariables": [
{
"variableName": "protocol.refreshToken",
"cachingPlugin": "file",
"cacheArgs": {
"file": "some-file.txt"
}
}
]
}
Example file upload
"source": {
"siteHostname": "mydomain.sharepoint.com",
"siteName": "mysitename",
"directory": "dest",
"protocol": {
"name": "opentaskpy.addons.o365.remotehandlers.sharepoint.SharepointTransfer",
"refreshToken": "{{ SOME LOOKUP DEFINITION }}",
"clientId": "my-application-id",
"tenantId": "my-tenant-id"
},
"cacheableVariables": [
{
"variableName": "protocol.refreshToken",
"cachingPlugin": "file",
"cacheArgs": {
"file": "some-file.txt",
},
}
],
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file otf_addons_o365-24.29.0.tar.gz
.
File metadata
- Download URL: otf_addons_o365-24.29.0.tar.gz
- Upload date:
- Size: 30.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2be84e0affcaf28a8144adeb94dffeddb16cbe697abb01b68cbe01d43be3ade3 |
|
MD5 | ef8a0f9c9c9a05fb204a1cb4eb24dcc4 |
|
BLAKE2b-256 | 1a0c7ec396d479f1df62d0b150a07f32239d1c497d231626b69bf0ef720c6470 |