add site list workflow

This commit is contained in:
C10udburst 2021-10-04 16:57:57 +02:00
parent 54139ab99c
commit c6acc26243
3 changed files with 65 additions and 18 deletions

32
.github/site-list.py vendored Normal file
View File

@ -0,0 +1,32 @@
#!/usr/bin/python3
from glob import glob
from re import search, compile
# Globals
URL_REGEX = compile("override val mainUrl(?:\:\s?String)?[^\"']+[\"'](https?://[a-zA-Z0-9\.-]+)[\"']")
START_MARKER = "<!--SITE LIST START-->"
END_MARKER = "<!--SITE LIST END-->"
GLOB = "app/src/main/java/com/lagradost/cloudstream3/*providers/*Provider.kt"
sites = []
for path in glob(GLOB):
with open(path, "r", encoding='utf-8') as file:
try:
sites.append(search(URL_REGEX, file.read()).groups()[0])
except Exception as ex:
print("{0}: {1}".format(path, ex))
with open("README.md", "r+", encoding='utf-8') as readme:
raw = readme.read()
if START_MARKER not in raw or END_MARKER not in raw:
raise RuntimeError("Missing start and end markers")
readme.seek(0)
readme.write(raw.split(START_MARKER)[0])
for site in sites:
readme.write("- [{0}]({0}) \n".format(site))
readme.write(raw.split(END_MARKER)[-1])
readme.truncate()

30
.github/workflows/site_list.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Create site list
on:
push:
branches: [ master ]
paths:
- 'README.md'
- 'app/src/main/java/com/lagradost/cloudstream3/*providers/*Provider.kt'
- '.github/workflows/site_list.yml'
concurrency:
group: "site-list"
cancel-in-progress: true
jobs:
create:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Edit README.md
run: |
python3 .github/site-list.py
- name: Commit to the repo
run: |
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
git add .
# "echo" returns true so the build succeeds, even if no changed files
git commit -m 'chore(docs): update list of sites' || echo
git push

View File

@ -43,21 +43,6 @@ CloudStream 3 does not host any content on the app, and has no control over what
It merely scrapes 3rd-party websites that are publicly accessable via any regular web browser. It is the responsibility of user to avoid any actions that might violate the laws governing his/her locality. Use CloudStream 3 at your own risk.
***Sites used:***
+ https://tenshi.moe
+ https://wcostream.cc
+ https://bestdubbedanime.com
+ https://hdm.to
+ https://www.vmovee.watch
+ https://www.wcostream.com
+ https://animepahe.com
+ https://gogoanime.vc
+ https://kawaiifu.com
<!-- Do not remove those two comments -->
<!--SITE LIST START-->
<!--SITE LIST END-->