edx-oauth2-wordpress-backend/README.rst

89 lines
2.5 KiB
ReStructuredText
Raw Normal View History

2022-10-03 20:26:27 +03:00
OAuth2 Backend for WP Oauth
===========================
2022-10-03 19:46:35 +03:00
Overview
--------
2022-10-05 02:33:34 +03:00
A Python Social Auth backend for `WP OAuth <https://wp-oauth.com/>`_ this is customized for use with Open edX.
2022-10-05 02:30:32 +03:00
2022-10-05 02:32:38 +03:00
- `Python Social Auth custom backend implentation <https://python-social-auth.readthedocs.io/en/latest/backends/implementation.html>`_
- `WP Oauth Wordpress Plugin Documentation <https://wp-oauth.com/docs/>`_
2022-10-03 19:46:35 +03:00
2022-10-05 00:20:59 +03:00
Open edX Setup
--------------
2022-10-03 19:46:35 +03:00
General Python/Django
~~~~~~~~~~~~~~~~~~~~~
include this repo in your project's requiremets.txt, or install it from the command line.
2022-10-03 20:32:25 +03:00
.. code-block:: shell
2022-10-03 20:29:04 +03:00
2022-10-03 20:32:25 +03:00
cd path/to/your/project
source path/to/venv/bin/activate
pip install https://github.com/StepwiseMath/wp-oauth-backend
2022-10-03 19:46:35 +03:00
.. code-block:: yaml
2022-10-03 20:29:04 +03:00
2022-10-03 20:32:25 +03:00
ADDL_INSTALLED_APPS:
- "wp_oauth_backend"
THIRD_PARTY_AUTH_BACKENDS:
2022-10-04 17:21:54 +03:00
- "wp_oauth_backend.wp_oauth.StepwiseMathWPOAuth2"
2022-10-03 20:32:25 +03:00
ENABLE_REQUIRE_THIRD_PARTY_AUTH: true
2022-10-03 19:46:35 +03:00
add these settings to django.conf:
.. list-table:: WP Oauth setup
:widths: 50 100
:header-rows: 1
* - Key
- Value
* - WPOAUTH_BACKEND_BASE_URL
- https://stepwisemath.ai
* - WPOAUTH_BACKEND_CLIENT_ID
- see: https://stepwisemath.ai/wp-admin/admin.php?page=wo_manage_clients
* - WPOAUTH_BACKEND_CLIENT_SECRET
- see: https://stepwisemath.ai/wp-admin/admin.php?page=wo_manage_clients
2022-10-05 02:38:04 +03:00
* - SCOPE
- basic email profile
* - GRANT_TYPE
- Authorization Code
* - REDIRECT_URI
- https://web.stepwisemath.ai/auth/complete/stepwisemath-oauth
2022-10-03 19:46:35 +03:00
2022-10-03 20:26:27 +03:00
Cookiecutter openedx_devops build
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-03 20:31:43 +03:00
.. code-block:: shell
2022-10-03 20:26:27 +03:00
2022-10-03 20:31:43 +03:00
- name: Add the wp-oauth-backend
uses: openedx-actions/tutor-plugin-build-openedx-add-requirement@v1.0.0
with:
repository: wp-oauth-backend
repository-organization: StepwiseMath
repository-ref: main
repository-token: ${{ secrets.PAT }}
2022-10-03 20:26:27 +03:00
Cookiecutter openedx_devops deployment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-03 20:31:43 +03:00
.. code-block:: shell
2022-10-03 20:26:27 +03:00
2022-10-03 20:31:43 +03:00
tutor config save --set OPENEDX_WPOAUTH_BACKEND_BASE_URL="${{ secrets.WPOAUTH_BACKEND_BASE_URL }}" \
--set OPENEDX_WPOAUTH_BACKEND_CLIENT_ID="${{ secrets.WPOAUTH_BACKEND_CLIENT_ID }}" \
--set OPENEDX_WPOAUTH_BACKEND_CLIENT_SECRET="${{ secrets.WPOAUTH_BACKEND_CLIENT_SECRET }}"
2022-10-03 19:46:35 +03:00
2022-10-05 00:20:59 +03:00
WP Oauth Plugin Configuration
-----------------------------
2022-10-05 02:30:32 +03:00
This plugin enables your Open edX installation to authenticate against the WP Oauth plugin provider
2022-10-05 00:20:59 +03:00
in https://stepwisemath.ai/, configured as follows:
.. image:: doc/wp-oauth-config.png
:width: 100%
:alt: WP Oauth configuration page