Skip to main content

Addons for opentaskpy, giving it the ability to push/pull via Sharepoint using the MS Graph API.

Project description

PyPi unittest status Coverage License Issues Stars

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:

App Registration

Under Authentication, the following needs to be enabled:

Auth

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

otf_addons_o365-24.25.2.tar.gz (29.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page