This commit is contained in:
Christoph Califice
2025-10-09 20:05:31 -03:00
parent ed22ef22bc
commit 0a5f88d75a
1442 changed files with 101562 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
name: MYLF
# requires: py_common
sceneByURL:
- url:
- mylf.com/movies/
action: script
script:
- python
- MYLFAPI.py
# Last Updated March 04, 2024

View File

@@ -0,0 +1,124 @@
import json
import os
import pathlib
import re
import sys
from datetime import datetime
import py_common.log as log
try:
import cloudscraper
except ModuleNotFoundError:
print("You need to install the cloudscraper module. (https://pypi.org/project/cloudscraper/)", file=sys.stderr)
print("If you have pip (normally installed with python), run this command in a terminal (cmd): pip install cloudscraper", file=sys.stderr)
sys.exit()
def save_json(api_json, url):
try:
if sys.argv[1] == "logJSON":
try:
os.makedirs(DIR_JSON)
except FileExistsError:
pass # Dir already exist
api_json['url'] = url
filename = os.path.join(DIR_JSON, str(api_json['id'])+".json")
with open(filename, 'w', encoding='utf-8') as file:
json.dump(api_json, file, ensure_ascii=False, indent=4)
except IndexError:
pass
USERFOLDER_PATH = str(pathlib.Path(__file__).parent.parent.absolute())
DIR_JSON = os.path.join(USERFOLDER_PATH, "scraperJSON","MYLF")
# Not necessary but why not ?
USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0'
fragment = json.loads(sys.stdin.read())
if fragment["url"]:
scene_url = fragment["url"]
else:
log.error('You need to set the URL (e.g. mylf.com/movies/*****)')
sys.exit(1)
if "mylf.com/movies/" not in scene_url:
log.error('The URL is not from a MYLF URL (e.g. mylf.com/movies/*****)')
sys.exit(1)
scene_id = re.sub('.+/', '', scene_url)
if not scene_id:
log.error("Error with the ID ({})\nAre you sure that the end of your URL is correct ?".format(scene_id))
sys.exit(1)
use_local = 0
json_file = os.path.join(DIR_JSON, scene_id+".json")
if os.path.isfile(json_file):
log.debug("Using local JSON...")
use_local = 1
with open(json_file, encoding="utf-8") as json_file:
scene_api_json = json.load(json_file)
else:
log.debug("Asking the API...")
api_url = f"https://store2.psmcdn.net/mylf-elastic-hka5k7vyuw-videoscontent/_doc/{scene_id}"
headers = {
'User-Agent': USER_AGENT,
'Origin': 'https://www.mylf.com',
'Referer': 'https://www.mylf.com/'
}
scraper = cloudscraper.create_scraper()
# Send to the API
r = ""
try:
r = scraper.get(api_url, headers=headers, timeout=(3, 5))
except:
log.error("An error has occurred with the page request")
log.error(f"Request status: `{r.status_code}`")
log.error("Check your MYFAPI.log for more details")
with open("MYFAPI.log", 'w', encoding='utf-8') as f:
f.write(f"Scene ID: {scene_id}\n")
f.write(f"Request:\n{r.text}")
sys.exit(1)
try:
scene_api_json_check = r.json().get('found')
if scene_api_json_check:
scene_api_json = r.json()['_source']
else:
log.error('Scene not found (Wrong ID?)')
sys.exit(1)
except:
if "Please Wait... | Cloudflare" in r.text:
log.error("Protected by Cloudflare. Retry later...")
else:
log.error("Invalid page content")
sys.exit(1)
# Time to scrape all data
scrape = {}
scrape['title'] = scene_api_json.get('title')
dt = scene_api_json.get('publishedDate')
if dt:
dt = re.sub(r'T.+', '', dt)
date = datetime.strptime(dt, '%Y-%m-%d')
scrape['date'] = str(date.date())
#fix for MYLF including HTML tags in Description
CLEANR = re.compile('<.*?>')
cleandescription = re.sub(CLEANR,'',scene_api_json.get('description'))
scrape['details'] = cleandescription
scrape['studio'] = {}
scrape['studio']['name'] = scene_api_json['site'].get('name')
scrape['performers'] = [{"name": x.get('modelName')}
for x in scene_api_json.get('models')]
scrape['tags'] = [{"name": x} for x in scene_api_json.get('tags')]
scrape['image'] = scene_api_json.get('img')
high_res = scene_api_json.get('img').replace('shared/med', 'shared/hi')
log.debug(f"Image before: {scrape['image']}")
log.debug(f"Image after: {high_res}")
scrape['image'] = high_res
if use_local == 0:
save_json(scene_api_json, scene_url)
print(json.dumps(scrape))

View File

@@ -0,0 +1,10 @@
id: MYLF
name: MYLF
metadata: {}
version: f126b57
date: "2024-03-04 15:23:27"
requires: []
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
files:
- MYLFAPI.py
- MYLF.yml