Merge branch 'frost' of https://github.com/Aevann1/rDrama into frost

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-09-25 11:30:58 +00:00
commit 3435389807
7 changed files with 115 additions and 58 deletions

View File

@ -1,6 +1,6 @@
from files.helpers.const import SITE
if SITE == 'pcmemes.net' or True:
if SITE == 'pcmemes.net':
from sqlalchemy import *
from files.__main__ import Base

View File

@ -31,10 +31,8 @@ def cron(every_5m, every_1h, every_1d, every_1mo):
lottery.check_if_end_lottery_task()
spin_roulette_wheel()
offsitementions.offsite_mentions_task()
if SITE == 'pcmemes.net' or True:
x = route_static.live_cached()
cache.set('live', x[0])
cache.set('offline', x[1])
if SITE == 'pcmemes.net':
route_static.live_cached()
if every_1h:
awards.award_timers_bots_task()

View File

@ -118,7 +118,7 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, ccmode="false"
if sort == 'hot':
ti = int(time.time()) + 3600
if SITE_NAME == 'rDrama':
posts = posts.order_by(-1000000*(Submission.realupvotes + 1 + Submission.comment_count/5 + func.least(50, (func.length(Submission.body_html)-func.length(func.replace(Submission.body_html,'<a href="https://','')))/5))/(func.power(((ti - Submission.created_utc)/1000), 1.23)), Submission.created_utc.desc())
posts = posts.order_by(-1000000*(Submission.realupvotes + 1 + Submission.comment_count/5 + func.least(10, (func.length(Submission.body_html)-func.length(func.replace(Submission.body_html,'<a href="https://','')))/5))/(func.power(((ti - Submission.created_utc)/1000), 1.23)), Submission.created_utc.desc())
else:
posts = posts.order_by(-1000000*(Submission.upvotes - Submission.downvotes + 1)/(func.power(((ti - Submission.created_utc)/1000), 1.23)), Submission.created_utc.desc())
elif sort == "bump":

View File

@ -436,12 +436,77 @@ def donate(v):
return render_template(f'donate_{SITE_NAME}.html', v=v)
if SITE == 'pcmemes.net' or True:
if SITE == 'pcmemes.net':
from files.classes.streamers import *
id_regex = re.compile('"externalId":"([^"]*?)"', flags=re.A)
live_regex = re.compile('playerOverlayVideoDetailsRenderer":\{"title":\{"simpleText":"(.*?)"\},"subtitle":\{"runs":\[\{"text":"(.*?)"\},\{"text":""\},\{"text":"(.*?)"\}', flags=re.A)
live_thumb_regex = re.compile('\{"thumbnail":\{"thumbnails":\[\{"url":"(.*?)"', flags=re.A)
offline_regex = re.compile('","title":"(.*?)".*?"width":48,"height":48\},\{"url":"(.*?)"', flags=re.A)
offline_details_regex = re.compile('simpleText":"Gestreamd: ([0-9]*?) ([a-z]*?) geleden"\},"viewCountText":\{"simpleText":"([0-9.]*?) weergaven"', flags=re.A)
def process_streamer(id, live='live'):
url = f'https://www.youtube.com/channel/{id}/{live}'
req = requests.get(url, cookies={'CONSENT': 'YES+1'}, timeout=5, proxies=proxies)
text = req.text
if '"videoDetails":{"videoId"' in text:
y = live_regex.search(text)
count = y.group(3)
if 'wacht' in count:
return process_streamer(id, '')
count = int(count.replace('.', ''))
t = live_thumb_regex.search(text)
thumb = t.group(1)
name = y.group(2)
title = y.group(1)
return (True, (id, req.url, thumb, name, title, count))
else:
t = offline_regex.search(text)
y = offline_details_regex.search(text)
if y:
views = y.group(3).replace('.', '')
quantity = int(y.group(1))
unit = y.group(2)
if unit.startswith('minu'):
unit = 'minute'
modifier = 1
if unit == 'uur':
unit = 'hour'
modifier = 60
if unit.startswith('dag'):
unit = 'day'
modifier = 1440
if unit.startswith('we'):
unit = 'week'
modifier = 10080
elif unit.startswith('maand'):
unit = 'month'
modifier = 43800
elif unit == 'jaar':
unit = 'year'
modifier = 525600
minutes = quantity * modifier
actual = f'{quantity} {unit}'
if quantity > 1: actual += 's'
else:
minutes = 0
actual = '???'
views = 0
print(req.url, flush=True)
thumb = t.group(2)
name = t.group(1)
return (False, (id, req.url.rstrip('/live'), thumb, name, minutes, actual, views))
def live_cached():
live = []
@ -449,26 +514,18 @@ if SITE == 'pcmemes.net' or True:
db = db_session()
streamers = [x[0] for x in db.query(Streamer.id).all()]
db.close()
for x in streamers:
url = f'https://www.youtube.com/channel/{x}/live'
req = requests.get(url, cookies={'CONSENT': 'YES+1'}, timeout=5, proxies=proxies)
text = req.text
if '"videoDetails":{"videoId"' in text:
t = live_thumb_regex.search(text)
y = live_regex.search(text)
try:
count = int(y.group(3))
live.append((x, req.url, t.group(1), y.group(2), y.group(1), count))
except:
print(x)
else:
y = offline_regex.search(text)
try: offline.append((x, req.url.rstrip('/live'), y.group(2), y.group(1)))
except: print(x)
for id in streamers:
processed = process_streamer(id)
if processed:
if processed[0]: live.append(processed[1])
else: offline.append(processed[1])
live = sorted(live, key=lambda x: x[5], reverse=True)
offline = sorted(offline, key=lambda x: x[4])
if live: cache.set('live', live)
if offline: cache.set('offline', offline)
return live, offline
@app.get('/live')
@app.get('/logged_out/live')
@ -482,13 +539,23 @@ if SITE == 'pcmemes.net' or True:
@app.post('/live/add')
@admin_level_required(2)
def live_add(v):
id = request.values.get('id').strip()
if v.id not in (AEVANN_ID, KIPPY_ID, 1550):
return {"error": 'Only Kippy can add channels!'}, 403
link = request.values.get('link').strip()
if 'youtube.com/channel/' in link:
id = link.split('youtube.com/channel/')[1].rstrip('/')
else:
text = requests.get(link, cookies={'CONSENT': 'YES+1'}, timeout=5, proxies=proxies).text
try: id = id_regex.search(text).group(1)
except: return {"error": "Invalid ID"}
live = cache.get('live') or []
offline = cache.get('offline') or []
if not id or len(id) != 24:
return render_template('live.html', v=v, live=live, offline=offline, error="Invalid ID")
return {"error": "Invalid ID"}
existing = g.db.get(Streamer, id)
if not existing:
@ -498,27 +565,16 @@ if SITE == 'pcmemes.net' or True:
if v.id != KIPPY_ID:
send_repeatable_notification(KIPPY_ID, f"@{v.username} has added a [new YouTube channel](https://www.youtube.com/channel/{streamer.id})")
url = f'https://www.youtube.com/channel/{id}/live'
req = requests.get(url, cookies={'CONSENT': 'YES+1'}, timeout=5, proxies=proxies)
text = req.text
if '"videoDetails":{"videoId"' in text:
t = live_thumb_regex.search(text)
y = live_regex.search(text)
try:
count = int(y.group(3))
live.append((id, req.url, t.group(1), y.group(2), y.group(1), count))
cache.set('live', live)
except:
print(id, flush=True)
else:
with open("files/assets/txt9.txt", "w", encoding='utf_8') as f:
f.write(text)
y = offline_regex.search(text)
try:
offline.append((id, req.url.rstrip('/live'), y.group(2), y.group(1)))
cache.set('offline', offline)
except:
print(id, flush=True)
processed = process_streamer(id)
if processed:
if processed[0]: live.append(processed[1])
else: offline.append(processed[1])
live = sorted(live, key=lambda x: x[5], reverse=True)
offline = sorted(offline, key=lambda x: x[4])
if live: cache.set('live', live)
if offline: cache.set('offline', offline)
return redirect('/live')
@ -539,7 +595,7 @@ if SITE == 'pcmemes.net' or True:
live = [x for x in live if x[0] != id]
offline = [x for x in offline if x[0] != id]
cache.set('live', live)
cache.set('offline', offline)
if live: cache.set('live', live)
if offline: cache.set('offline', offline)
return redirect('/live')

View File

@ -53,7 +53,7 @@
<td width="48"><img loading="lazy" class="thumb" src="{{thumb}}" alt="{{name}} thumbnail" referrerpolicy="no-referrer" width="48"></td>
<td>{{name}}</td>
<td>{{title}}</td>
<td>{{viewers}}</td>
<td>{{viewers}} watching</td>
{% if v and v.admin_level > 1 %}
<td>
<form action="/live/remove" method="post">
@ -74,12 +74,12 @@
<div class="overflow-x-auto">
<table class="table table-striped mb-5">
<tbody>
{% for id, link, thumb, name in offline %}
{% for id, link, thumb, name, minutes, actual, views in offline %}
<tr onclick="go_to(event,'{{link}}')">
<td width="48"><img loading="lazy" class="thumb" src="{{thumb}}" alt="{{name}} thumbnail" referrerpolicy="no-referrer" width="48"></td>
<td>{{name}}</td>
<td></td>
<td></td>
<td>{{actual}} ago</td>
<td>{{views}} views</td>
{% if v and v.admin_level > 1 %}
<td>
<form action="/live/remove" method="post">
@ -99,10 +99,13 @@
{% if v and v.admin_level > 1 %}
<form action="/live/add" method="post">
<input type="hidden" name="formkey" value="{{v.formkey}}">
<input class="form-control" style="display:inline;width:350px" autocomplete="off" type="text" name="id" class="form-control" placeholder="Enter channel id.." minlength="24" maxlength="24" required>
<input autocomplete="off" class="btn btn-primary ml-auto" type="submit" onclick="disable(this)" value="Add Youtube Channel" style="margin-bottom:5px">
<input class="form-control" autocomplete="off" type="text" name="link" class="form-control" placeholder="Enter channel link.." required>
<input autocomplete="off" class="btn btn-primary mt-3" type="submit" onclick="disable(this)" value="Add Youtube Channel" style="float:right">
</form>
<p class="mt-3">you can get the channel id using this site <a href="https://streamweasels.com/tools/youtube-channel-id-and-user-id-convertor" rel="nofollow noopener noreferrer" target="_blank">https://streamweasels.com/tools/youtube-channel-id-and-user-id-convertor</a></p>
{% endif %}
</div>
<pre>
</pre>
{% endblock %}

View File

@ -138,7 +138,7 @@
<label class="custom-control-label" for="newtab"></label>
</div>
<span class="text-small text-muted">Enable if you would like to automatically open links to other pages in the site in new tabs.</span>
<span class="text-small text-muted">Enable if you would like to automatically open links to other pages on the site in new tabs.</span>
</div>

View File

@ -773,7 +773,7 @@
<label class="custom-control-label" for="spiderswitch"></label>
</div>
<span class="text-small text-muted">Have a spider friend accompany you during your journey in the site.</span>
<span class="text-small text-muted">Have a spider friend accompany you during your journey on the site.</span>
</div>
</div>
</div>