The goal of this project is to make learner can subscribe VIP membership of any online courses learning platform set up by using edx-platfrom, and learn freely instead of buying the courses one by one.
edx-membership 拆分了会员制的主要逻辑,作为一个单独的 djangoapp 存在, 但是整体上仍未能与 edx-platform 完全分割。edx-membership 的支付功能依赖于 elitu-payments。
devstack docker 环境配置 修改 devstack/docker-compose-host.yml
services:
lms:
volumes:
...
- ${DEVSTACK_WORKSPACE}/edx-membership:/edx/app/edxapp/edx-membership:cached
重启 docker
- 执行 make dev.up
- 执行 make lms-logs 查看启动情况
如果 log 出现报错,尝试执行 make lms-shell 进入 lms 环境,再依次执行 make clean 和 make requirements;退出 lms 环境,执行 make lms-static
更新 lms.env.json,在 FEATURES 里加上以下字段
"FEATURE": {
"ENABLE_MEMBERSHIP_INTEGRATION": true,
"ENABLE_PAYMENTS_INTEGRATION": true,
"ENABLE_COURSE_UNENROLL": true,
}
修改 /edx/app/edxapp/lms.auth.json 添加支付配置
{
"ALIPAY_INFO": {
"basic_info": {
"KEY": "******",
"PARTNER": "*******",
"SELLER_EMAIL": "[email protected]"
},
"other_info": {
"INPUT_CHARSET": "utf-8",
"INPUT_DIRECT_CHARSET": "gbk",
"SIGN_TYPE": "",
"RETURN_URL": "http://example.com/api/v1/payments/alipay/alipaysuccess/",
"NOTIFY_URL": "http://example.com/api/v1/payments/alipay/alipayasyncnotify/",
"PAY_RESULT_URL": "http://example.com/vip/card",
"REFUND_NOTIFY_URL": "http://example.com/shoppinglist/alipay/alipayrefundasyncnotify",
"SHOW_URL": "",
"ERROR_NOTIFY_URL": "http://example.com/shoppinglist/alipay/errornotify/",
"TRANSPORT": "https",
"DEFAULT_BANK": "CITIC-DEBIT",
"IT_B_PAY": "2d",
"REFUND_URL": "refund_fastpay_by_platform_pwd"
}
},
"ALIPAY_APP_INFO": {
"basic_info":{
"APP_ID": "***********",
"APP_PRIVATE_KEY": "path_to_app_private_key.pem",
"ALIPAY_RSA_PUBLIC_KEY": "path_to_alipay_public_key.pem"
},
"other_info":{
"SIGN_TYPE": "RSA",
"NOTIFY_URL": "http://example.com/api/v1/payments/alipay/app_alipayasyncnotify/"
}
},
"WECHAT_APP_PAY_INFO": {
"basic_info": {
"APPID": "********",
"APPSECRET": "*******",
"MCHID": "******",
"KEY": "******",
"ACCESS_TOKEN": "******"
},
"other_info": {
"NOTIFY_URL": "http://xxxxx"
}
},
"WECHAT_PAY_INFO": {
"basic_info": {
"APPID": "********",
"APPSECRET": "*********",
"MCHID": "*******",
"KEY": "*********",
"ACCESS_TOKEN": "********"
},
"other_info": {
"BUY_COURSES_SUCCESS_TEMPLATE_ID": "",
"BUY_COURSES_SUCCESS_HREF_URL": "",
"COIN_SUCCESS_TEMPLATE_ID": "-EIRCM8X55ae7H2bZM0AYhRR-Q",
"COIN_SUCCESS_HREF_URL": "",
"SERVICE_TEL": "",
"NOTIFY_URL": "http://example.com/api/v1/payments/wechat/wechatasyncnotify/",
"JS_API_CALL_URL": "",
"SSLCERT_PATH": "path_to_apiclient_cert.pem",
"SSLKEY_PATH": "path_to_apiclient_key.pem"
}
},
}
安装依赖库
sudo -H -u edxapp bash
source /edx/app/edxapp/edxapp_env
cd /edx/app/edxapp/edx-membership
pip install -r requirements/base.txt
同步数据库
sudo -H -u edxapp bash
source /edx/app/edxapp/edxapp_env
python /edx/app/edxapp/edx-platform/manage.py lms --settings devstack_docker makemigrations membership
python /edx/app/edxapp/edx-platform/manage.py lms --settings devstack_docker migrate membership
更新静态资源
apt-get install sass
cd /edx/app/edxapp/edx-membership
sudo sass --update membership/static/membership/sass/:membership/static/membership/css/ -E "UTF-8"
sudo -H -u edxapp bash
source ../edxapp_env
paver update_assets --settings=aws
重启服务
/edx/bin/supervisorctl restart all
Visit the Contributor Guidelines for details on how to contribute as well as the Open Code of Conduct for details on how to participate.
Please do not report security issues in public. Please email [email protected].
This project is licensed under the AGPL Version 3.0 License. See the LICENSE file for the full license text.