├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── alembic.ini ├── alembic ├── env.py ├── script.py.mako └── versions │ ├── 18bbc5ea44de_add_google_login_support.py │ ├── 253ab628caf8_user_verified_app.py │ ├── 7f294d530215_github_repository_models.py │ ├── 7fdac6ecd738_user_deleted_flag.py │ ├── a114496676c9_initial_user_and_login_models.py │ ├── b8261271e24f_add_gitlab_login_support.py │ └── f2cdc8de8169_model_tweaks_for_github_users.py ├── app ├── __init__.py ├── apps.py ├── config.py ├── db.py ├── feeds.py ├── logins.py ├── main.py ├── models.py ├── picks.py ├── schemas.py ├── stats.py ├── summary.py ├── utils.py └── verification.py ├── data ├── picks │ ├── apps.json │ └── games.json └── verification │ ├── blocked.json │ └── verified.json ├── docker-compose.yml ├── docker-entrypoint.sh ├── poetry.lock ├── pyproject.toml └── tests ├── appstream └── repo │ └── appstream │ └── x86_64 │ └── appstream.xml ├── cassettes ├── test_auth_login_github ├── test_auth_login_gitlab ├── test_auth_login_google ├── test_verification_available_method_github ├── test_verification_available_method_multiple ├── test_verification_available_method_website ├── test_verification_status ├── test_verification_status_dne ├── test_verification_status_invalid ├── test_verification_status_not_verified └── test_verification_status_website ├── data └── picks │ ├── apps.json │ └── games.json ├── main.py ├── ostree ├── repo │ ├── .lock │ ├── config │ ├── objects │ │ ├── 13 │ │ │ └── cf1de7f531b099bde97022106123028bb23e4e0f5f026a87e5fc08b6a81d32.filez │ │ ├── 17 │ │ │ └── 3b903b7c28b40bb3d48e0ec347c36595d09cb3d799ca6d2f4f6cc16b2f9358.dirtree │ │ ├── 44 │ │ │ ├── 214b76684c64afc0308c62313ec14b253fd83c6e344811cab851e70d56f8de.commit │ │ │ └── 6a0ef11b7cc167f3b603e585c7eeeeb675faa412d5ec73f62988eb0b6c5488.dirmeta │ │ ├── 52 │ │ │ └── 9106b1800fed122ab0cbc72ad603e9103f85ca69050a355a00ff4ac272f1e4.commit │ │ ├── 57 │ │ │ └── ff61d7adf7fb37053348253b2f9588e6d2fce756b6e2ae4e228ae07206aff2.filez │ │ ├── 97 │ │ │ └── 7b12b09e51e36c19376aa6f533fd6bab41fd275eb548f415f63bb639d783bd.dirtree │ │ ├── 06 │ │ │ └── e1f7778c81994966156b640349172066f6d932793bb61b728ca2b5d50ab4e3.dirtree │ │ ├── 2c │ │ │ └── 870e3575fe530522d3c1308d39a4c300d500affa24c3aae26f29b17d555283.filez │ │ ├── 3b │ │ │ └── 2099c61290dfb4fd31d5a081b64524102bb71d87d0c6fa70731d894b7a0a4b.filez │ │ ├── 3c │ │ │ └── 897b707cffe07b5c896a983172ddd2d3e3f55ff79f51ca8304e86033a57e47.filez │ │ ├── 4b │ │ │ └── 1bbd9195d5d593e6bb103f8561c2cfa7ad59048722bb43de5847165cd332b0.filez │ │ ├── 6e │ │ │ └── 340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d.dirtree │ │ ├── 9f │ │ │ ├── 5db1c17fcefa600b0c51b714526b5d57bb3fe8f71c39748b9cc291cc8e95aa.commit │ │ │ └── 7128805558dbeafd19bb22ca51623eb494bb826d799888502f50d2353be399.dirtree │ │ ├── a6 │ │ │ └── 5f1a6cce2e4a0a161a55754bbbf5316cf1fb6726e77d64e984fd9cbe951712.commit │ │ ├── af │ │ │ └── e62d9d85075279e3d675fc4e9313fae814aeb2ec6110bfc3ba945d4759d996.filez │ │ ├── bd │ │ │ └── 18589ad0b3b9ecbc1ad369f188536a40caf281a35f54f0f37390c71aef9d90.filez │ │ ├── c5 │ │ │ └── 2b7a71e67a79ddc1a3d6f42b5895fa78854364e807c81c426b3a71ae86061c.dirtree │ │ ├── e5 │ │ │ └── 6d2aea757ab43320c72f3d502fcbfccba97e932cbe6cf493e38b84b078a7ee.dirtree │ │ ├── ea │ │ │ └── f29e2dbc0c7e0fa8e9ad153d86efc0e9cb9b8b8785f3f328c28f2bdaf6beed.dirtree │ │ ├── f0 │ │ │ └── 6b9b14640c286d42433932090169a5a9324bcbd265cef3bf1f3674f24dc92f.dirtree │ │ └── ff │ │ │ └── dfe498fb7016c4282e5369534a3dbe7fffb57727d01b710ade20d027345e07.commit │ ├── refs │ │ └── heads │ │ │ └── app │ │ │ ├── com.anydesk.Anydesk │ │ │ └── x86_64 │ │ │ │ └── stable │ │ │ ├── com.wps.Office │ │ │ └── x86_64 │ │ │ │ └── stable │ │ │ └── org.sugarlabs.Maze │ │ │ └── x86_64 │ │ │ └── stable │ ├── summaries │ │ ├── 2c7d1e349de7d0b20bb73cc76799ad6004833ab59d4111f55048c357b651ae12-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta │ │ ├── 2c7d1e349de7d0b20bb73cc76799ad6004833ab59d4111f55048c357b651ae12.gz │ │ ├── 386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.gz │ │ ├── 76d192d80f282a6963af9782e9c2b6a5c7156f17a7137ebcf941d67157c4a690-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta │ │ ├── 76d192d80f282a6963af9782e9c2b6a5c7156f17a7137ebcf941d67157c4a690.gz │ │ ├── 94bee1ee1bbd230aba77f907dd105f97ffcfbd8347e0c80066eca80897422d3f-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta │ │ ├── 94bee1ee1bbd230aba77f907dd105f97ffcfbd8347e0c80066eca80897422d3f.gz │ │ ├── da0308f06b33f241439b4717fcb6795bc17f80e2efbc0a7218dd087b40dbe348-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta │ │ └── da0308f06b33f241439b4717fcb6795bc17f80e2efbc0a7218dd087b40dbe348.gz │ ├── summary │ └── summary.idx └── template.json ├── results ├── test_apps.json ├── test_apps_by_category.json ├── test_apps_by_developer.json ├── test_appstream_by_appid.json ├── test_collection_by_one_recently_updated.json ├── test_collection_by_recently_updated.json ├── test_feed_by_new.xml ├── test_feed_by_recently_updated.xml ├── test_list_appstream.json ├── test_popular.json ├── test_search_query_by_appid.json ├── test_search_query_by_non_existent.json ├── test_stats.json ├── test_status.json └── test_summary_by_appid.json └── stats ├── 001-day-before-yesterday.json ├── 002-yesterday.json └── 003-today.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/README.md -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic.ini -------------------------------------------------------------------------------- /alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/env.py -------------------------------------------------------------------------------- /alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/script.py.mako -------------------------------------------------------------------------------- /alembic/versions/18bbc5ea44de_add_google_login_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/versions/18bbc5ea44de_add_google_login_support.py -------------------------------------------------------------------------------- /alembic/versions/253ab628caf8_user_verified_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/versions/253ab628caf8_user_verified_app.py -------------------------------------------------------------------------------- /alembic/versions/7f294d530215_github_repository_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/versions/7f294d530215_github_repository_models.py -------------------------------------------------------------------------------- /alembic/versions/7fdac6ecd738_user_deleted_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/versions/7fdac6ecd738_user_deleted_flag.py -------------------------------------------------------------------------------- /alembic/versions/a114496676c9_initial_user_and_login_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/versions/a114496676c9_initial_user_and_login_models.py -------------------------------------------------------------------------------- /alembic/versions/b8261271e24f_add_gitlab_login_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/versions/b8261271e24f_add_gitlab_login_support.py -------------------------------------------------------------------------------- /alembic/versions/f2cdc8de8169_model_tweaks_for_github_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/alembic/versions/f2cdc8de8169_model_tweaks_for_github_users.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/config.py -------------------------------------------------------------------------------- /app/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/db.py -------------------------------------------------------------------------------- /app/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/feeds.py -------------------------------------------------------------------------------- /app/logins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/logins.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/main.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/models.py -------------------------------------------------------------------------------- /app/picks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/picks.py -------------------------------------------------------------------------------- /app/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/schemas.py -------------------------------------------------------------------------------- /app/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/stats.py -------------------------------------------------------------------------------- /app/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/summary.py -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/utils.py -------------------------------------------------------------------------------- /app/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/app/verification.py -------------------------------------------------------------------------------- /data/picks/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/data/picks/apps.json -------------------------------------------------------------------------------- /data/picks/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/data/picks/games.json -------------------------------------------------------------------------------- /data/verification/blocked.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /data/verification/verified.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/appstream/repo/appstream/x86_64/appstream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/appstream/repo/appstream/x86_64/appstream.xml -------------------------------------------------------------------------------- /tests/cassettes/test_auth_login_github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_auth_login_github -------------------------------------------------------------------------------- /tests/cassettes/test_auth_login_gitlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_auth_login_gitlab -------------------------------------------------------------------------------- /tests/cassettes/test_auth_login_google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_auth_login_google -------------------------------------------------------------------------------- /tests/cassettes/test_verification_available_method_github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_available_method_github -------------------------------------------------------------------------------- /tests/cassettes/test_verification_available_method_multiple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_available_method_multiple -------------------------------------------------------------------------------- /tests/cassettes/test_verification_available_method_website: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_available_method_website -------------------------------------------------------------------------------- /tests/cassettes/test_verification_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_status -------------------------------------------------------------------------------- /tests/cassettes/test_verification_status_dne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_status_dne -------------------------------------------------------------------------------- /tests/cassettes/test_verification_status_invalid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_status_invalid -------------------------------------------------------------------------------- /tests/cassettes/test_verification_status_not_verified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_status_not_verified -------------------------------------------------------------------------------- /tests/cassettes/test_verification_status_website: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/cassettes/test_verification_status_website -------------------------------------------------------------------------------- /tests/data/picks/apps.json: -------------------------------------------------------------------------------- 1 | [ 2 | "org.sugarlabs.Maze" 3 | ] 4 | -------------------------------------------------------------------------------- /tests/data/picks/games.json: -------------------------------------------------------------------------------- 1 | [ 2 | "org.sugarlabs.Maze" 3 | ] 4 | -------------------------------------------------------------------------------- /tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/main.py -------------------------------------------------------------------------------- /tests/ostree/repo/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ostree/repo/config: -------------------------------------------------------------------------------- 1 | [core] 2 | repo_version=1 3 | mode=archive-z2 4 | indexed-deltas=true 5 | -------------------------------------------------------------------------------- /tests/ostree/repo/objects/06/e1f7778c81994966156b640349172066f6d932793bb61b728ca2b5d50ab4e3.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/06/e1f7778c81994966156b640349172066f6d932793bb61b728ca2b5d50ab4e3.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/13/cf1de7f531b099bde97022106123028bb23e4e0f5f026a87e5fc08b6a81d32.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/13/cf1de7f531b099bde97022106123028bb23e4e0f5f026a87e5fc08b6a81d32.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/17/3b903b7c28b40bb3d48e0ec347c36595d09cb3d799ca6d2f4f6cc16b2f9358.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/17/3b903b7c28b40bb3d48e0ec347c36595d09cb3d799ca6d2f4f6cc16b2f9358.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/2c/870e3575fe530522d3c1308d39a4c300d500affa24c3aae26f29b17d555283.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/2c/870e3575fe530522d3c1308d39a4c300d500affa24c3aae26f29b17d555283.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/3b/2099c61290dfb4fd31d5a081b64524102bb71d87d0c6fa70731d894b7a0a4b.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/3b/2099c61290dfb4fd31d5a081b64524102bb71d87d0c6fa70731d894b7a0a4b.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/3c/897b707cffe07b5c896a983172ddd2d3e3f55ff79f51ca8304e86033a57e47.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/3c/897b707cffe07b5c896a983172ddd2d3e3f55ff79f51ca8304e86033a57e47.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/44/214b76684c64afc0308c62313ec14b253fd83c6e344811cab851e70d56f8de.commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/44/214b76684c64afc0308c62313ec14b253fd83c6e344811cab851e70d56f8de.commit -------------------------------------------------------------------------------- /tests/ostree/repo/objects/44/6a0ef11b7cc167f3b603e585c7eeeeb675faa412d5ec73f62988eb0b6c5488.dirmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/44/6a0ef11b7cc167f3b603e585c7eeeeb675faa412d5ec73f62988eb0b6c5488.dirmeta -------------------------------------------------------------------------------- /tests/ostree/repo/objects/4b/1bbd9195d5d593e6bb103f8561c2cfa7ad59048722bb43de5847165cd332b0.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/4b/1bbd9195d5d593e6bb103f8561c2cfa7ad59048722bb43de5847165cd332b0.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/52/9106b1800fed122ab0cbc72ad603e9103f85ca69050a355a00ff4ac272f1e4.commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/52/9106b1800fed122ab0cbc72ad603e9103f85ca69050a355a00ff4ac272f1e4.commit -------------------------------------------------------------------------------- /tests/ostree/repo/objects/57/ff61d7adf7fb37053348253b2f9588e6d2fce756b6e2ae4e228ae07206aff2.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/57/ff61d7adf7fb37053348253b2f9588e6d2fce756b6e2ae4e228ae07206aff2.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/6e/340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d.dirtree: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ostree/repo/objects/97/7b12b09e51e36c19376aa6f533fd6bab41fd275eb548f415f63bb639d783bd.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/97/7b12b09e51e36c19376aa6f533fd6bab41fd275eb548f415f63bb639d783bd.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/9f/5db1c17fcefa600b0c51b714526b5d57bb3fe8f71c39748b9cc291cc8e95aa.commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/9f/5db1c17fcefa600b0c51b714526b5d57bb3fe8f71c39748b9cc291cc8e95aa.commit -------------------------------------------------------------------------------- /tests/ostree/repo/objects/9f/7128805558dbeafd19bb22ca51623eb494bb826d799888502f50d2353be399.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/9f/7128805558dbeafd19bb22ca51623eb494bb826d799888502f50d2353be399.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/a6/5f1a6cce2e4a0a161a55754bbbf5316cf1fb6726e77d64e984fd9cbe951712.commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/a6/5f1a6cce2e4a0a161a55754bbbf5316cf1fb6726e77d64e984fd9cbe951712.commit -------------------------------------------------------------------------------- /tests/ostree/repo/objects/af/e62d9d85075279e3d675fc4e9313fae814aeb2ec6110bfc3ba945d4759d996.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/af/e62d9d85075279e3d675fc4e9313fae814aeb2ec6110bfc3ba945d4759d996.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/bd/18589ad0b3b9ecbc1ad369f188536a40caf281a35f54f0f37390c71aef9d90.filez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/bd/18589ad0b3b9ecbc1ad369f188536a40caf281a35f54f0f37390c71aef9d90.filez -------------------------------------------------------------------------------- /tests/ostree/repo/objects/c5/2b7a71e67a79ddc1a3d6f42b5895fa78854364e807c81c426b3a71ae86061c.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/c5/2b7a71e67a79ddc1a3d6f42b5895fa78854364e807c81c426b3a71ae86061c.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/e5/6d2aea757ab43320c72f3d502fcbfccba97e932cbe6cf493e38b84b078a7ee.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/e5/6d2aea757ab43320c72f3d502fcbfccba97e932cbe6cf493e38b84b078a7ee.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/ea/f29e2dbc0c7e0fa8e9ad153d86efc0e9cb9b8b8785f3f328c28f2bdaf6beed.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/ea/f29e2dbc0c7e0fa8e9ad153d86efc0e9cb9b8b8785f3f328c28f2bdaf6beed.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/f0/6b9b14640c286d42433932090169a5a9324bcbd265cef3bf1f3674f24dc92f.dirtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/f0/6b9b14640c286d42433932090169a5a9324bcbd265cef3bf1f3674f24dc92f.dirtree -------------------------------------------------------------------------------- /tests/ostree/repo/objects/ff/dfe498fb7016c4282e5369534a3dbe7fffb57727d01b710ade20d027345e07.commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/objects/ff/dfe498fb7016c4282e5369534a3dbe7fffb57727d01b710ade20d027345e07.commit -------------------------------------------------------------------------------- /tests/ostree/repo/refs/heads/app/com.anydesk.Anydesk/x86_64/stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/refs/heads/app/com.anydesk.Anydesk/x86_64/stable -------------------------------------------------------------------------------- /tests/ostree/repo/refs/heads/app/com.wps.Office/x86_64/stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/refs/heads/app/com.wps.Office/x86_64/stable -------------------------------------------------------------------------------- /tests/ostree/repo/refs/heads/app/org.sugarlabs.Maze/x86_64/stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/refs/heads/app/org.sugarlabs.Maze/x86_64/stable -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/2c7d1e349de7d0b20bb73cc76799ad6004833ab59d4111f55048c357b651ae12-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/2c7d1e349de7d0b20bb73cc76799ad6004833ab59d4111f55048c357b651ae12-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/2c7d1e349de7d0b20bb73cc76799ad6004833ab59d4111f55048c357b651ae12.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/2c7d1e349de7d0b20bb73cc76799ad6004833ab59d4111f55048c357b651ae12.gz -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.gz -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/76d192d80f282a6963af9782e9c2b6a5c7156f17a7137ebcf941d67157c4a690-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/76d192d80f282a6963af9782e9c2b6a5c7156f17a7137ebcf941d67157c4a690-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/76d192d80f282a6963af9782e9c2b6a5c7156f17a7137ebcf941d67157c4a690.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/76d192d80f282a6963af9782e9c2b6a5c7156f17a7137ebcf941d67157c4a690.gz -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/94bee1ee1bbd230aba77f907dd105f97ffcfbd8347e0c80066eca80897422d3f-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/94bee1ee1bbd230aba77f907dd105f97ffcfbd8347e0c80066eca80897422d3f-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/94bee1ee1bbd230aba77f907dd105f97ffcfbd8347e0c80066eca80897422d3f.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/94bee1ee1bbd230aba77f907dd105f97ffcfbd8347e0c80066eca80897422d3f.gz -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/da0308f06b33f241439b4717fcb6795bc17f80e2efbc0a7218dd087b40dbe348-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/da0308f06b33f241439b4717fcb6795bc17f80e2efbc0a7218dd087b40dbe348-386998efb2f56f8ba0981d9ad7184b34f99a23a91595f43df348f82cbc580437.delta -------------------------------------------------------------------------------- /tests/ostree/repo/summaries/da0308f06b33f241439b4717fcb6795bc17f80e2efbc0a7218dd087b40dbe348.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summaries/da0308f06b33f241439b4717fcb6795bc17f80e2efbc0a7218dd087b40dbe348.gz -------------------------------------------------------------------------------- /tests/ostree/repo/summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summary -------------------------------------------------------------------------------- /tests/ostree/repo/summary.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/repo/summary.idx -------------------------------------------------------------------------------- /tests/ostree/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/ostree/template.json -------------------------------------------------------------------------------- /tests/results/test_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_apps.json -------------------------------------------------------------------------------- /tests/results/test_apps_by_category.json: -------------------------------------------------------------------------------- 1 | [ 2 | "org.sugarlabs.Maze" 3 | ] 4 | -------------------------------------------------------------------------------- /tests/results/test_apps_by_developer.json: -------------------------------------------------------------------------------- 1 | [ 2 | "org.sugarlabs.Maze" 3 | ] 4 | -------------------------------------------------------------------------------- /tests/results/test_appstream_by_appid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_appstream_by_appid.json -------------------------------------------------------------------------------- /tests/results/test_collection_by_one_recently_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_collection_by_one_recently_updated.json -------------------------------------------------------------------------------- /tests/results/test_collection_by_recently_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_collection_by_recently_updated.json -------------------------------------------------------------------------------- /tests/results/test_feed_by_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_feed_by_new.xml -------------------------------------------------------------------------------- /tests/results/test_feed_by_recently_updated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_feed_by_recently_updated.xml -------------------------------------------------------------------------------- /tests/results/test_list_appstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_list_appstream.json -------------------------------------------------------------------------------- /tests/results/test_popular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_popular.json -------------------------------------------------------------------------------- /tests/results/test_search_query_by_appid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_search_query_by_appid.json -------------------------------------------------------------------------------- /tests/results/test_search_query_by_non_existent.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /tests/results/test_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_stats.json -------------------------------------------------------------------------------- /tests/results/test_status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "OK" 3 | } -------------------------------------------------------------------------------- /tests/results/test_summary_by_appid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/results/test_summary_by_appid.json -------------------------------------------------------------------------------- /tests/stats/001-day-before-yesterday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/stats/001-day-before-yesterday.json -------------------------------------------------------------------------------- /tests/stats/002-yesterday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/stats/002-yesterday.json -------------------------------------------------------------------------------- /tests/stats/003-today.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub-infra/backend/HEAD/tests/stats/003-today.json --------------------------------------------------------------------------------