mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-28 14:50:41 +00:00
Merge pull request #2178 from sherlock-project/new-site-list
Update site list to sherlockproject.xyz/sites
This commit is contained in:
commit
15180f92d0
2 changed files with 22 additions and 20 deletions
25
.github/workflows/update-site-list.yml
vendored
25
.github/workflows/update-site-list.yml
vendored
|
@ -32,18 +32,15 @@ jobs:
|
||||||
- name: Execute site-list.py
|
- name: Execute site-list.py
|
||||||
run: python devel/site-list.py
|
run: python devel/site-list.py
|
||||||
|
|
||||||
# Commit any changes made by the script
|
- name: Pushes to another repository
|
||||||
- name: Commit files
|
uses: cpina/github-action-push-to-another-repository@main
|
||||||
run: |
|
env:
|
||||||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
|
||||||
git config --local user.name "github-actions[bot]"
|
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
|
||||||
if ! git diff --exit-code; then
|
|
||||||
git commit -a -m "Updated Site List"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Push the changes to the remote repository
|
|
||||||
- name: Push changes
|
|
||||||
uses: ad-m/github-push-action@master
|
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
source-directory: 'output'
|
||||||
branch: ${{ github.ref }}
|
destination-github-username: 'sherlock-project'
|
||||||
|
commit-message: "Updated site list"
|
||||||
|
destination-repository-name: 'sherlockproject.xyz'
|
||||||
|
user-email: siddharth.dushantha@gmail.com
|
||||||
|
target-branch: master
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# This module generates the listing of supported sites which can be found in
|
# This module generates the listing of supported sites which can be found in
|
||||||
# sites.md. It also organizes all the sites in alphanumeric order
|
# sites.md. It also organizes all the sites in alphanumeric order
|
||||||
import json
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
# Read the data.json file
|
# Read the data.json file
|
||||||
with open("sherlock/resources/data.json", "r", encoding="utf-8") as data_file:
|
with open("sherlock/resources/data.json", "r", encoding="utf-8") as data_file:
|
||||||
|
@ -14,13 +15,16 @@ social_networks.pop('$schema', None)
|
||||||
# Sort the social networks in alphanumeric order
|
# Sort the social networks in alphanumeric order
|
||||||
social_networks: list = sorted(social_networks.items())
|
social_networks: list = sorted(social_networks.items())
|
||||||
|
|
||||||
|
# Make output dir where the site list will be written
|
||||||
|
os.mkdir("output")
|
||||||
|
|
||||||
# Write the list of supported sites to sites.md
|
# Write the list of supported sites to sites.md
|
||||||
with open("../sites.md", "w") as site_file:
|
with open("output/sites.mdx", "w") as site_file:
|
||||||
site_file.write(f"## List Of Supported Sites ({len(social_networks)} Sites In Total!)\n")
|
site_file.write(f"---\ntitle: 'List of supported sites'\nsidebarTitle: 'Supported sites'\nicon: 'globe'\ndescription: 'Sherlock currently supports **400+** sites'\n---\n\n")
|
||||||
for social_network, info in social_networks:
|
for social_network, info in social_networks:
|
||||||
url_main = info["urlMain"]
|
url_main = info["urlMain"]
|
||||||
is_nsfw = "**(NSFW)**" if info.get("isNSFW") else ""
|
is_nsfw = "**(NSFW)**" if info.get("isNSFW") else ""
|
||||||
site_file.write(f"1. ![](https://www.google.com/s2/favicons?domain={url_main}) [{social_network}]({url_main}) {is_nsfw}\n")
|
site_file.write(f"1. [{social_network}]({url_main}) {is_nsfw}\n")
|
||||||
|
|
||||||
# Overwrite the data.json file with sorted data
|
# Overwrite the data.json file with sorted data
|
||||||
with open("sherlock/resources/data.json", "w") as data_file:
|
with open("sherlock/resources/data.json", "w") as data_file:
|
||||||
|
@ -29,3 +33,4 @@ with open("sherlock/resources/data.json", "w") as data_file:
|
||||||
data_file.write("\n")
|
data_file.write("\n")
|
||||||
|
|
||||||
print("Finished updating supported site listing!")
|
print("Finished updating supported site listing!")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue