Skip to main content

Library to handle Deferral requests using Google Sheets integrations in Django

Project description

mitol-django-google-sheets-deferrals

This is the Open Learning Django Google Sheets library for handling deferral requests over Google Sheets

Setup

Before you begin setting up this library make sure you set up mitol-django-google-sheets first. Follow the instructions here.

Once you have mitol-django-google-sheets installed, then:

pip install mitol-django-google-sheets-deferrals

In settings.py

INSTALLED_APPS = [
    ...
    "mitol.google_sheets_deferrals.apps.GoogleSheetsDeferralsApp",
]
MITOL_GOOGLE_SHEETS_DEFERRALS_PLUGINS = [
    "ecommerce.plugins.DeferralPlugin"
]

In ecommerce/plugins.py

from mitol.google_sheets_deferrals.hooks import hookimpl

class DeferralPlugin:
    @hookimpl
    def deferrals_process_request(deferral_request: DeferralRequestRow) -> DeferralResult:
        # TODO: look up the user/enrollment
        # TODO: unenroll user from and enroll to

Create your google sheets folder

The structure of the folder should look as the following:

  1. Spreadsheet that contains sheets with 'Deferral Form Responses' and the 'Deferrals' sheets, that is being processed.
  2. Request Form

Ask a developer for a template folder to copy this structure.

Add settings to your app

Set MITOL_GOOGLE_SHEETS_DEFERRALS_REQUEST_WORKSHEET_ID in your .env file. It is required.

Some settings have default values, which you might need to update, if your sheet is different.

Description of settings (in addition to the ones described in mitol-django-google-sheets):

  • MITOL_GOOGLE_SHEETS_DEFERRALS_REQUEST_WORKSHEET_ID

    The IDs of the refund and deferral sheets in the change of enrollment spreadsheet. These can be found by opening the spreadsheet, selecting the "Refunds" or "Deferrals" worksheets, and copying down the gid value in the URL.

    Example: https://docs.google.com/spreadsheets/d/<MITOL_GOOGLE_SHEETS_ENROLLMENT_CHANGE_SHEET_ID>/edit#gid=<MITOL_GOOGLE_SHEETS_DEFERRALS_REQUEST_WORKSHEET_ID>

  • MITOL_GOOGLE_SHEETS_DEFERRALS_PROCESSOR_COL

    The zero-based index of the deferral change sheet column that contains the user that processed the row

  • MITOL_GOOGLE_SHEETS_DEFERRALS_COMPLETED_DATE_COL

    The zero-based index of the deferral change sheet column that contains the row completion date

  • MITOL_GOOGLE_SHEETS_DEFERRALS_ERROR_COL

    The zero-based index of the deferral change sheet column that contains row processing error messages

  • MITOL_GOOGLE_SHEETS_DEFERRALS_SKIP_ROW_COL

    The zero-based index of the deferral change sheet column that indicates whether the row should be skipped

  • MITOL_GOOGLE_SHEETS_DEFERRALS_FIRST_ROW

    The first row (as it appears in the spreadsheet) of data that our scripts should consider processing in the deferral request spreadsheet

Usage

To processing your google sheet with deferral requests simply add:

deferral_request_handler = DeferralRequestHandler()
results = deferral_request_handler.process_sheet()

Here are two main ways that we are currently getting our Google Sheets Deferrals processed:

  1. Run a management command. For example: ./manage.py process_deferral_requests -i "<spreadsheet id>"
  2. Set up a scheduled celery task. For example:
from mitol.google_sheets_deferrals.api import DeferralRequestHandler
from main.celery import app

@app.task
def process_deferral_requests():
    """
    Task to process deferral requests from Google sheets
    """
    deferral_request_handler = DeferralRequestHandler()
    if not deferral_request_handler.is_configured():
        log.warning("MITOL_GOOGLE_SHEETS_* are not set")
        return
    deferral_request_handler.process_sheet()

Develper setup

For local development setup and testing please follow the instructions Developer Setup here.

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

Built Distribution

File details

Details for the file mitol-django-google-sheets-deferrals-2023.5.25.tar.gz.

File metadata

File hashes

Hashes for mitol-django-google-sheets-deferrals-2023.5.25.tar.gz
Algorithm Hash digest
SHA256 39082b5c92c940fe15d182fb998236738e8d6ccaec529094d29e1c34657e5b3b
MD5 9065217770a8d549a5cbe14daad50d3d
BLAKE2b-256 8f45038d922637b6d1b0f3a9336974779266643cd4d2a1fb0fca2e70037a60db

See more details on using hashes here.

File details

Details for the file mitol_django_google_sheets_deferrals-2023.5.25-py3-none-any.whl.

File metadata

File hashes

Hashes for mitol_django_google_sheets_deferrals-2023.5.25-py3-none-any.whl
Algorithm Hash digest
SHA256 ae124d4468c131c66a1ffe9d54c5a96aae1f3b7f90bf08b5e4721b890a120172
MD5 68dd39a9f6cb33105d212e6d1a2b9158
BLAKE2b-256 aab1bb8ae6288436b29540df7d7db7aa2ef9a1fbc18f2b0b49d2bab535c75f30

See more details on using hashes here.

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