├── .gitignore ├── LICENSE ├── README.md ├── api ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── assetcdn.py ├── assetcdn └── gitkeep ├── basetik.bin ├── basetik_licence.bin ├── cas.py ├── cdn.py ├── cdn └── README ├── cia-helper.py ├── ecs.py ├── ias.py ├── main.py ├── manage.py ├── metadata ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── shopdeck ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── shopdeckdb ├── __init__.py ├── admin.py ├── apps.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_ownedtitle_version.py │ ├── 0003_remove_title_ticket_remove_title_ticket_id_and_more.py │ ├── 0004_client3ds_devicecert_consoldeid.py │ ├── 0005_rename_devicecert_consoldeid_client3ds_devicecert_consoleid.py │ ├── 0006_alter_client3ds_devicecert_consoleid.py │ ├── 0007_alter_client3ds_uniquekey.py │ ├── 0008_alter_searchcategory_platform_list_item.py │ ├── 0009_alter_item_limit_ownedticket.py │ ├── 0010_title_demo.py │ └── __init__.py └── models.py ├── static ├── shopdeck.png ├── sidebar.js └── webui.css ├── templates ├── cas │ ├── listItems.xml │ └── listTitlesEx.xml ├── components │ └── item.xml ├── ecs │ ├── accountCheckBalance.xml │ ├── accountListETicketIds.xml │ ├── deleteSavedCard.xml │ ├── getAccountETickets.xml │ ├── getAccountStatus.xml │ ├── getAccountStatusError.xml │ └── getTaxes.xml ├── header.xml └── ias │ ├── getChallenge.xml │ ├── getRegistrationInfo.xml │ ├── register.xml │ ├── setIVSData.xml │ └── unregister.xml ├── webtemplates ├── 404.html ├── 500.html ├── _error.html ├── _layout.html ├── _layout_form.html ├── add.html ├── components │ ├── title.html │ └── wishlist_title.html ├── current.html ├── downloaded.html ├── index.html ├── login.html ├── search.html ├── searchresult.html ├── signup.html ├── success.html ├── title.html ├── welcome.html └── wishlist.html └── webui ├── __init__.py ├── admin.py ├── apps.py ├── migrations └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/api/admin.py -------------------------------------------------------------------------------- /api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/api/apps.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/api/models.py -------------------------------------------------------------------------------- /api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/api/tests.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/api/views.py -------------------------------------------------------------------------------- /assetcdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/assetcdn.py -------------------------------------------------------------------------------- /assetcdn/gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /basetik.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/basetik.bin -------------------------------------------------------------------------------- /basetik_licence.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/basetik_licence.bin -------------------------------------------------------------------------------- /cas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/cas.py -------------------------------------------------------------------------------- /cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/cdn.py -------------------------------------------------------------------------------- /cdn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/cdn/README -------------------------------------------------------------------------------- /cia-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/cia-helper.py -------------------------------------------------------------------------------- /ecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/ecs.py -------------------------------------------------------------------------------- /ias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/ias.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/main.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/manage.py -------------------------------------------------------------------------------- /metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metadata/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/metadata/admin.py -------------------------------------------------------------------------------- /metadata/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/metadata/apps.py -------------------------------------------------------------------------------- /metadata/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metadata/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/metadata/models.py -------------------------------------------------------------------------------- /metadata/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/metadata/tests.py -------------------------------------------------------------------------------- /metadata/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/metadata/urls.py -------------------------------------------------------------------------------- /metadata/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/metadata/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/requirements.txt -------------------------------------------------------------------------------- /shopdeck/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopdeck/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeck/asgi.py -------------------------------------------------------------------------------- /shopdeck/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeck/settings.py -------------------------------------------------------------------------------- /shopdeck/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeck/urls.py -------------------------------------------------------------------------------- /shopdeck/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeck/wsgi.py -------------------------------------------------------------------------------- /shopdeckdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopdeckdb/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/admin.py -------------------------------------------------------------------------------- /shopdeckdb/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/apps.py -------------------------------------------------------------------------------- /shopdeckdb/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/middleware.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0001_initial.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0002_ownedtitle_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0002_ownedtitle_version.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0003_remove_title_ticket_remove_title_ticket_id_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0003_remove_title_ticket_remove_title_ticket_id_and_more.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0004_client3ds_devicecert_consoldeid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0004_client3ds_devicecert_consoldeid.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0005_rename_devicecert_consoldeid_client3ds_devicecert_consoleid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0005_rename_devicecert_consoldeid_client3ds_devicecert_consoleid.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0006_alter_client3ds_devicecert_consoleid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0006_alter_client3ds_devicecert_consoleid.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0007_alter_client3ds_uniquekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0007_alter_client3ds_uniquekey.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0008_alter_searchcategory_platform_list_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0008_alter_searchcategory_platform_list_item.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0009_alter_item_limit_ownedticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0009_alter_item_limit_ownedticket.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/0010_title_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/migrations/0010_title_demo.py -------------------------------------------------------------------------------- /shopdeckdb/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopdeckdb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/shopdeckdb/models.py -------------------------------------------------------------------------------- /static/shopdeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/static/shopdeck.png -------------------------------------------------------------------------------- /static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/static/sidebar.js -------------------------------------------------------------------------------- /static/webui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/static/webui.css -------------------------------------------------------------------------------- /templates/cas/listItems.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/cas/listItems.xml -------------------------------------------------------------------------------- /templates/cas/listTitlesEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/cas/listTitlesEx.xml -------------------------------------------------------------------------------- /templates/components/item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/components/item.xml -------------------------------------------------------------------------------- /templates/ecs/accountCheckBalance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ecs/accountCheckBalance.xml -------------------------------------------------------------------------------- /templates/ecs/accountListETicketIds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ecs/accountListETicketIds.xml -------------------------------------------------------------------------------- /templates/ecs/deleteSavedCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ecs/deleteSavedCard.xml -------------------------------------------------------------------------------- /templates/ecs/getAccountETickets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ecs/getAccountETickets.xml -------------------------------------------------------------------------------- /templates/ecs/getAccountStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ecs/getAccountStatus.xml -------------------------------------------------------------------------------- /templates/ecs/getAccountStatusError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ecs/getAccountStatusError.xml -------------------------------------------------------------------------------- /templates/ecs/getTaxes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ecs/getTaxes.xml -------------------------------------------------------------------------------- /templates/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/header.xml -------------------------------------------------------------------------------- /templates/ias/getChallenge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ias/getChallenge.xml -------------------------------------------------------------------------------- /templates/ias/getRegistrationInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ias/getRegistrationInfo.xml -------------------------------------------------------------------------------- /templates/ias/register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ias/register.xml -------------------------------------------------------------------------------- /templates/ias/setIVSData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ias/setIVSData.xml -------------------------------------------------------------------------------- /templates/ias/unregister.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/templates/ias/unregister.xml -------------------------------------------------------------------------------- /webtemplates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/404.html -------------------------------------------------------------------------------- /webtemplates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/500.html -------------------------------------------------------------------------------- /webtemplates/_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/_error.html -------------------------------------------------------------------------------- /webtemplates/_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/_layout.html -------------------------------------------------------------------------------- /webtemplates/_layout_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/_layout_form.html -------------------------------------------------------------------------------- /webtemplates/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/add.html -------------------------------------------------------------------------------- /webtemplates/components/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/components/title.html -------------------------------------------------------------------------------- /webtemplates/components/wishlist_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/components/wishlist_title.html -------------------------------------------------------------------------------- /webtemplates/current.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/current.html -------------------------------------------------------------------------------- /webtemplates/downloaded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/downloaded.html -------------------------------------------------------------------------------- /webtemplates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/index.html -------------------------------------------------------------------------------- /webtemplates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/login.html -------------------------------------------------------------------------------- /webtemplates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/search.html -------------------------------------------------------------------------------- /webtemplates/searchresult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/searchresult.html -------------------------------------------------------------------------------- /webtemplates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/signup.html -------------------------------------------------------------------------------- /webtemplates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/success.html -------------------------------------------------------------------------------- /webtemplates/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/title.html -------------------------------------------------------------------------------- /webtemplates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/welcome.html -------------------------------------------------------------------------------- /webtemplates/wishlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webtemplates/wishlist.html -------------------------------------------------------------------------------- /webui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webui/admin.py -------------------------------------------------------------------------------- /webui/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webui/apps.py -------------------------------------------------------------------------------- /webui/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webui/models.py -------------------------------------------------------------------------------- /webui/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webui/tests.py -------------------------------------------------------------------------------- /webui/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webui/urls.py -------------------------------------------------------------------------------- /webui/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aftendo/shopdeck/HEAD/webui/views.py --------------------------------------------------------------------------------