548 lines
21 KiB
Python
548 lines
21 KiB
Python
from flask import render_template, flash, redirect, url_for, request, send_from_directory, Markup
|
|
from app.forms import LoginForm, RegistrationForm, EmptyForm, SearchForm, ChannelForm
|
|
from app.models import User, twitterPost, invidiousPost, Post, invidiousFollow
|
|
from flask_login import login_user, logout_user, current_user, login_required
|
|
from requests_futures.sessions import FuturesSession
|
|
from concurrent.futures import as_completed
|
|
from werkzeug.urls import url_parse
|
|
from bs4 import BeautifulSoup
|
|
from youtube_dl import YoutubeDL
|
|
from app import app, db
|
|
import random, string
|
|
import time, datetime
|
|
import feedparser
|
|
import requests
|
|
import json
|
|
import re
|
|
|
|
# Instances - Format must be instance.tld (No '/' and no 'https://')
|
|
nitterInstance = "https://nitter.net/"
|
|
nitterInstanceII = "https://nitter.mastodont.cat/"
|
|
invidiousInstance = "invidio.us"
|
|
proxy = "" #eg. socks5://IP:PORT
|
|
|
|
#########################
|
|
#### Twitter Logic ######
|
|
#########################
|
|
@app.route('/')
|
|
@app.route('/index')
|
|
@login_required
|
|
def index():
|
|
start_time = time.time()
|
|
following = current_user.following_list()
|
|
followed = current_user.followed.count()
|
|
posts = []
|
|
avatarPath = "img/avatars/1.png"
|
|
form = EmptyForm()
|
|
posts.extend(getFeed(following))
|
|
posts.sort(key=lambda x: x.timeStamp, reverse=True)
|
|
if not posts:
|
|
profilePic = avatarPath
|
|
else:
|
|
profilePic = posts[0].userProfilePic
|
|
print("--- {} seconds fetching twitter feed---".format(time.time() - start_time))
|
|
return render_template('index.html', title='Home', posts=posts, avatar=avatarPath, profilePic = profilePic, followedCount=followed, form=form)
|
|
|
|
@app.route('/savePost/<url>', methods=['POST'])
|
|
@login_required
|
|
def savePost(url):
|
|
savedUrl = url.replace('~', '/')
|
|
r = requests.get(savedUrl)
|
|
html = BeautifulSoup(str(r.content), "lxml")
|
|
post = html.body.find_all('div', attrs={'class':'tweet-content'})
|
|
|
|
newPost = Post()
|
|
newPost.url = savedUrl
|
|
newPost.body = html.body.find_all('div', attrs={'class':'main-tweet'})[0].find_all('div', attrs={'class':'tweet-content'})[0].text
|
|
newPost.username = html.body.find('a','username').text.replace("@","")
|
|
newPost.timestamp = html.body.find_all('p', attrs={'class':'tweet-published'})[0].text
|
|
newPost.user_id = current_user.id
|
|
try:
|
|
db.session.add(newPost)
|
|
db.session.commit()
|
|
except:
|
|
flash("Post could not be saved. Either it was already saved or there was an error.")
|
|
return redirect(url_for('index'))
|
|
|
|
@app.route('/saved')
|
|
@login_required
|
|
def saved():
|
|
savedPosts = current_user.saved_posts().all()
|
|
return render_template('saved.html', title='Saved', savedPosts=savedPosts)
|
|
|
|
@app.route('/deleteSaved/<id>', methods=['POST'])
|
|
@login_required
|
|
def deleteSaved(id):
|
|
savedPost = Post.query.filter_by(id=id).first()
|
|
db.session.delete(savedPost)
|
|
db.session.commit()
|
|
return redirect(url_for('saved'))
|
|
|
|
@app.route('/follow/<username>', methods=['POST'])
|
|
@login_required
|
|
def follow(username):
|
|
form = EmptyForm()
|
|
if form.validate_on_submit():
|
|
user = User.query.filter_by(username=username).first()
|
|
isTwitter = isTwitterUser(username)
|
|
if user is None and isTwitter:
|
|
x = ''.join(randomrandom.choice(string.ascii_uppercase + string.ascii_lowercase + string.digits) for _ in range(16))
|
|
newUser = User(username=username, email="{}@person.is".format(x))
|
|
db.session.add(newUser)
|
|
db.session.commit()
|
|
flash('You are now following {}!'.format(username))
|
|
#flash('User {} not found.'.format(username))
|
|
return redirect(url_for('index'))
|
|
if user == current_user:
|
|
flash('You cannot follow yourself!')
|
|
return redirect(url_for('user', username=username))
|
|
current_user.follow(user)
|
|
db.session.commit()
|
|
flash('You are following {}!'.format(username))
|
|
return redirect(url_for('user', username=username))
|
|
else:
|
|
return redirect(url_for('index'))
|
|
|
|
@app.route('/unfollow/<username>', methods=['POST'])
|
|
@login_required
|
|
def unfollow(username):
|
|
form = EmptyForm()
|
|
if form.validate_on_submit():
|
|
user = User.query.filter_by(username=username).first()
|
|
if user is None:
|
|
flash('User {} not found.'.format(username))
|
|
return redirect(url_for('index'))
|
|
if user == current_user:
|
|
flash('You cannot unfollow yourself!')
|
|
return redirect(url_for('user', username=username))
|
|
current_user.unfollow(user)
|
|
db.session.commit()
|
|
flash('You are no longer following {}.'.format(username))
|
|
return redirect(url_for('user', username=username))
|
|
else:
|
|
return redirect(url_for('index'))
|
|
|
|
@app.route('/unfollowList/<username>', methods=['POST'])
|
|
@login_required
|
|
def unfollowList(username):
|
|
form = EmptyForm()
|
|
if form.validate_on_submit():
|
|
user = User.query.filter_by(username=username).first()
|
|
if user is None:
|
|
flash('User {} not found.'.format(username))
|
|
return redirect(url_for('index'))
|
|
if user == current_user:
|
|
flash('You cannot unfollow yourself!')
|
|
return redirect(url_for('user', username=username))
|
|
current_user.unfollow(user)
|
|
db.session.commit()
|
|
flash('You are no longer following {}!'.format(username))
|
|
return redirect(url_for('following'))
|
|
else:
|
|
return redirect(url_for('index'))
|
|
|
|
@app.route('/following')
|
|
@login_required
|
|
def following():
|
|
form = EmptyForm()
|
|
following = current_user.following_list()
|
|
followed = current_user.followed.count()
|
|
return render_template('following.html', accounts = following, count = followed, form = form)
|
|
|
|
@app.route('/search', methods=['GET', 'POST'])
|
|
@login_required
|
|
def search():
|
|
form = SearchForm()
|
|
parsedResults = []
|
|
if form.validate_on_submit():
|
|
user = form.username.data
|
|
r = requests.get("{instance}search?f=users&q={usern}".format(instance=nitterInstance, usern=user.replace(" ", "+")))
|
|
html = BeautifulSoup(str(r.content), "lxml")
|
|
results = html.body.find_all('a', attrs={'class':'tweet-link'})
|
|
if results:
|
|
parsedResults = [s['href'].replace("/", "") for s in results]
|
|
return render_template('search.html', form = form, results = parsedResults)
|
|
else:
|
|
flash("User {} not found...".format(user))
|
|
return render_template('search.html', form = form, results = parsedResults)
|
|
else:
|
|
return render_template('search.html', form = form)
|
|
|
|
@app.route('/user/<username>')
|
|
@login_required
|
|
def user(username):
|
|
user = User.query.filter_by(username=username).first()
|
|
isTwitter = isTwitterUser(username)
|
|
|
|
if isTwitter and user is None:
|
|
x = ''.join(random.choice(string.ascii_uppercase + string.ascii_lowercase + string.digits) for _ in range(16))
|
|
newUser = User(username=username, email="{}@person.is".format(x))
|
|
db.session.add(newUser)
|
|
db.session.commit()
|
|
|
|
elif not isTwitter and user is None:
|
|
return redirect( url_for('error', errno="404"))
|
|
|
|
posts = []
|
|
posts.extend(getPosts(username))
|
|
form = EmptyForm()
|
|
user = User.query.filter_by(username=username).first()
|
|
if not posts:
|
|
profilePic = avatarPath
|
|
else:
|
|
profilePic = posts[0].userProfilePic
|
|
return render_template('user.html', user=user, posts=posts, profilePic = profilePic, form=form)
|
|
|
|
#########################
|
|
#### Youtube Logic ######
|
|
#########################
|
|
@app.route('/invidious', methods=['GET', 'POST'])
|
|
@login_required
|
|
def invidious():
|
|
start_time = time.time()
|
|
form = ChannelForm()
|
|
if form.validate_on_submit():
|
|
channelId = form.channelId.data
|
|
if requests.get('https://{instance}/feed/channel/{cid}'.format(instance=invidiousInstance, cid=channelId)).status_code == 200:
|
|
follow = invidiousFollow()
|
|
follow.channelId = channelId
|
|
follow.followers.append(current_user)
|
|
try:
|
|
db.session.add(follow)
|
|
db.session.commit()
|
|
flash("Added to list!")
|
|
except:
|
|
flash("Something went wrong. Try again!")
|
|
return redirect(url_for('invidious'))
|
|
else:
|
|
flash("Enter a valid Channel ID. Eg: UCJWCJCWOxBYSi5DhCieLOLQ")
|
|
return redirect(url_for('invidious'))
|
|
ids = current_user.youtube_following_list()
|
|
videos = getInvidiousPosts(ids)
|
|
if videos:
|
|
videos.sort(key=lambda x: x.date, reverse=True)
|
|
print("--- {} seconds fetching invidious feed---".format(time.time() - start_time))
|
|
return render_template('invidious.html', videos=videos, form=form)
|
|
|
|
@app.route('/ytsearch', methods=['GET', 'POST'])
|
|
@login_required
|
|
def ytsearch():
|
|
form = ChannelForm()
|
|
button_form = EmptyForm()
|
|
if form.validate_on_submit():
|
|
channelId = form.channelId.data
|
|
c = requests.get('https://{instance}/api/v1/search?type=channel&q={cid}'.format(instance=invidiousInstance, cid=channelId))
|
|
v = requests.get('https://{instance}/api/v1/search?type=video&q={cid}'.format(instance=invidiousInstance, cid=channelId))
|
|
if c.status_code == 200 and v.status_code == 200:
|
|
results = json.loads(c.content)
|
|
channels = []
|
|
videos = []
|
|
for res in results:
|
|
channels.append({
|
|
'username':res['author'],
|
|
'channelId':res['authorId'],
|
|
'thumbnail':res['authorThumbnails'][0]['url'],
|
|
'subCount':letterify(res['subCount'])
|
|
})
|
|
|
|
results = json.loads(v.content)
|
|
for data in results:
|
|
videos.append({
|
|
'instance':invidiousInstance,
|
|
'author':data['author'],
|
|
'videoTitle':data['title'],
|
|
'description':Markup(data['description'][0:125]+'...'),
|
|
'id':data['videoId'],
|
|
'videoThumb': data['videoThumbnails'][4]['url'],
|
|
'channelUrl':data['authorUrl'],
|
|
'views':data['viewCount'],
|
|
'timeStamp':data['publishedText']
|
|
})
|
|
|
|
return render_template('ytsearch.html', form=form, btform=button_form, results=channels, videos=videos)
|
|
else:
|
|
return render_template('ytsearch.html', form=form)
|
|
|
|
@app.route('/ytfollow/<channelId>', methods=['POST'])
|
|
@login_required
|
|
def ytfollow(channelId):
|
|
form = EmptyForm()
|
|
if form.validate_on_submit():
|
|
channel = invidiousFollow.query.filter_by(channelId=channelId).first()
|
|
if requests.get('https://{instance}/feed/channel/{cid}'.format(instance=invidiousInstance, cid=channelId)).status_code == 200:
|
|
if channel is None:
|
|
follow = invidiousFollow()
|
|
follow.channelId = channelId
|
|
follow.followers.append(current_user)
|
|
try:
|
|
db.session.add(follow)
|
|
db.session.commit()
|
|
except:
|
|
flash("Something went wrong. Try again!")
|
|
return redirect(url_for('invidious'))
|
|
flash('You are following {}!'.format(channelId))
|
|
else:
|
|
flash("Something went wrong... try again")
|
|
return redirect(url_for('ytsearch'))
|
|
else:
|
|
return redirect(url_for('ytsearch'))
|
|
|
|
@app.route('/ytunfollow/<channelId>', methods=['POST'])
|
|
@login_required
|
|
def ytunfollow(channelId):
|
|
form = EmptyForm()
|
|
channel = invidiousFollow.query.filter_by(channelId=channelId).first()
|
|
try:
|
|
db.session.delete(channel)
|
|
db.session.commit()
|
|
flash("User unfollowed!")
|
|
except:
|
|
flash("There was an error unfollowing the user. Try again.")
|
|
return redirect(url_for('ytsearch'))
|
|
|
|
@app.route('/video/<id>', methods=['POST', 'GET'])
|
|
@login_required
|
|
def video(id):
|
|
if proxy:
|
|
ydl_opts = {
|
|
'proxy':proxy
|
|
}
|
|
else:
|
|
ydl_opts = {}
|
|
|
|
ydl = YoutubeDL(ydl_opts)
|
|
data = ydl.extract_info("{id}".format(id=id), download=False)
|
|
video = {
|
|
'title':data['title'],
|
|
'description':Markup(data['description']),
|
|
'viewCount':data['view_count'],
|
|
'author':data['uploader'],
|
|
'authorUrl':data['uploader_url'],
|
|
'id':id,
|
|
'url': data['formats'][-1]['url'],
|
|
'averageRating': str((float(data['average_rating'])/5)*100)
|
|
}
|
|
return render_template("video.html", video=video)
|
|
|
|
#########################
|
|
#### General Logic ######
|
|
#########################
|
|
@app.route('/login', methods=['GET', 'POST'])
|
|
def login():
|
|
if current_user.is_authenticated:
|
|
return redirect(url_for('index'))
|
|
form = LoginForm()
|
|
if form.validate_on_submit():
|
|
user = User.query.filter_by(username=form.username.data).first()
|
|
if user is None or not user.check_password(form.password.data):
|
|
flash('Invalid username or password')
|
|
return redirect(url_for('login'))
|
|
login_user(user, remember=form.remember_me.data)
|
|
next_page = request.args.get('next')
|
|
if not next_page or url_parse(next_page).netloc != '':
|
|
next_page = url_for('index')
|
|
return redirect(next_page)
|
|
return render_template('login.html', title='Sign In', form=form)
|
|
|
|
@app.route('/logout')
|
|
def logout():
|
|
logout_user()
|
|
return redirect(url_for('index'))
|
|
|
|
@app.route('/settings')
|
|
@login_required
|
|
def settings():
|
|
return render_template('settings.html')
|
|
|
|
@app.route('/export')
|
|
@login_required
|
|
#Export data into a JSON file. Later you can import the data.
|
|
def export():
|
|
a = exportData()
|
|
if a:
|
|
return send_from_directory('.', 'data_export.json', as_attachment=True)
|
|
else:
|
|
return redirect(url_for('error/405'))
|
|
|
|
def exportData():
|
|
twitterFollowing = current_user.following_list()
|
|
youtubeFollowing = current_user.youtube_following_list()
|
|
data = {}
|
|
data['twitter'] = []
|
|
data['youtube'] = []
|
|
|
|
for f in twitterFollowing:
|
|
data['twitter'].append({
|
|
'username': f.username
|
|
})
|
|
|
|
for f in youtubeFollowing:
|
|
data['youtube'].append({
|
|
'channelId': f.channelId
|
|
})
|
|
|
|
try:
|
|
with open('app/data_export.json', 'w') as outfile:
|
|
json.dump(data, outfile)
|
|
return True
|
|
except:
|
|
return False
|
|
|
|
@app.route('/register', methods=['GET', 'POST'])
|
|
def register():
|
|
if current_user.is_authenticated:
|
|
return redirect(url_for('index'))
|
|
|
|
form = RegistrationForm()
|
|
if form.validate_on_submit():
|
|
if isTwitterUser(form.username.data):
|
|
flash('This is username is taken! Choose a different one.')
|
|
else:
|
|
user = User(username=form.username.data, email=form.email.data)
|
|
user.set_password(form.password.data)
|
|
db.session.add(user)
|
|
db.session.commit()
|
|
flash('Congratulations, you are now a registered user!')
|
|
return redirect(url_for('login'))
|
|
return render_template('register.html', title='Register', form=form)
|
|
|
|
@app.route('/error/<errno>')
|
|
def error(errno):
|
|
return render_template('{}.html'.format(str(errno)))
|
|
|
|
def getTimeDiff(t):
|
|
tweetTime = datetime.datetime(*t[:6])
|
|
diff = datetime.datetime.now() - tweetTime
|
|
|
|
if diff.days == 0:
|
|
if diff.seconds > 3599:
|
|
timeString = "{}h".format(int((diff.seconds/60)/60))
|
|
else:
|
|
timeString = "{}m".format(int(diff.seconds/60))
|
|
else:
|
|
timeString = "{}d".format(diff.days)
|
|
return timeString
|
|
|
|
def isTwitterUser(username):
|
|
request = requests.get('https://nitter.net/{}/rss'.format(username), timeout=5)
|
|
if request.status_code == 404:
|
|
return False
|
|
return True
|
|
|
|
def getFeed(urls):
|
|
avatarPath = "img/avatars/{}.png".format(str(random.randint(1,12)))
|
|
feedPosts = []
|
|
with FuturesSession() as session:
|
|
futures = [session.get('https://nitter.net/{}/rss'.format(u.username)) for u in urls]
|
|
for future in as_completed(futures):
|
|
resp = future.result()
|
|
rssFeed=feedparser.parse(resp.content)
|
|
if rssFeed.entries != []:
|
|
for post in rssFeed.entries:
|
|
newPost = twitterPost()
|
|
newPost.username = rssFeed.feed.title.split("/")[1].replace(" ", "")
|
|
newPost.twitterName = rssFeed.feed.title.split("/")[0]
|
|
newPost.date = getTimeDiff(post.published_parsed)
|
|
newPost.timeStamp = datetime.datetime(*post.published_parsed[:6])
|
|
newPost.op = post.author
|
|
try:
|
|
newPost.userProfilePic = rssFeed.channel.image.url
|
|
except:
|
|
newPost.profilePicture = ""
|
|
newPost.url = post.link
|
|
newPost.content = Markup(post.description)
|
|
|
|
if "Pinned" in post.title.split(":")[0]:
|
|
newPost.isPinned = True
|
|
|
|
if "RT by" in post.title:
|
|
newPost.isRT = True
|
|
newPost.profilePic = ""
|
|
else:
|
|
newPost.isRT = False
|
|
try:
|
|
newPost.profilePic = rssFeed.channel.image.url
|
|
except:
|
|
newPost.profilePic = avatarPath
|
|
feedPosts.append(newPost)
|
|
return feedPosts
|
|
|
|
def getPosts(account):
|
|
avatarPath = "img/avatars/{}.png".format(str(random.randint(1,12)))
|
|
posts = []
|
|
|
|
#Gather profile info.
|
|
rssFeed = feedparser.parse('{instance}{user}/rss'.format(instance=nitterInstance, user=account))
|
|
#Gather posts
|
|
if rssFeed.entries != []:
|
|
for post in rssFeed.entries:
|
|
newPost = twitterPost()
|
|
newPost.username = rssFeed.feed.title.split("/")[1].replace(" ", "")
|
|
newPost.twitterName = rssFeed.feed.title.split("/")[0]
|
|
newPost.date = getTimeDiff(post.published_parsed)
|
|
newPost.timeStamp = datetime.datetime(*post.published_parsed[:6])
|
|
newPost.op = post.author
|
|
try:
|
|
newPost.userProfilePic = rssFeed.channel.image.url
|
|
except:
|
|
newPost.profilePicture = ""
|
|
newPost.url = post.link
|
|
newPost.content = Markup(post.description)
|
|
|
|
if "Pinned" in post.title.split(":")[0]:
|
|
newPost.isPinned = True
|
|
|
|
if "RT by" in post.title:
|
|
newPost.isRT = True
|
|
newPost.profilePic = ""
|
|
else:
|
|
newPost.isRT = False
|
|
try:
|
|
newPost.profilePic = rssFeed.channel.image.url
|
|
except:
|
|
newPost.profilePic = avatarPath
|
|
posts.append(newPost)
|
|
return posts
|
|
|
|
def getInvidiousPosts(ids):
|
|
videos = []
|
|
ydl = YoutubeDL()
|
|
link = ydl.extract_info("https://www.youtube.com/watch?v=XCSfoiD8wUA", download=False)['formats'][-1]['url']
|
|
with FuturesSession() as session:
|
|
futures = [session.get('https://{instance}/feed/channel/{id}'.format(instance=invidiousInstance, id=id.channelId)) for id in ids]
|
|
for future in as_completed(futures):
|
|
resp = future.result()
|
|
rssFeed=feedparser.parse(resp.content)
|
|
for vid in rssFeed.entries:
|
|
video = invidiousPost()
|
|
video.date = vid.published_parsed
|
|
video.timeStamp = getTimeDiff(vid.published_parsed)
|
|
video.channelName = vid.author_detail.name
|
|
video.channelUrl = vid.author_detail.href
|
|
video.id = vid.link.split("?v=")[1]
|
|
video.videoTitle = vid.title
|
|
video.videoThumb = vid.media_thumbnail[0]['url']
|
|
video.views = vid.media_statistics['views']
|
|
video.description = vid.summary.split('<p style="word-break:break-word;white-space:pre-wrap">')[1]
|
|
video.description = re.sub(r'^https?:\/\/.*[\r\n]*', '', video.description[0:120]+"...", flags=re.MULTILINE)
|
|
videos.append(video)
|
|
return videos
|
|
|
|
def letterify(number):
|
|
order = len(str(number))
|
|
if order == 4:
|
|
subCount = "{k}.{c}k".format(k=str(number)[0:1], c=str(number)[1:2])
|
|
elif order == 5:
|
|
subCount = "{k}.{c}k".format(k=str(number)[0:2], c=str(number)[2:3])
|
|
elif order == 6:
|
|
subCount = "{k}.{c}k".format(k=str(number)[0:3], c=str(number)[3:4])
|
|
elif order == 7:
|
|
subCount = "~{M}M".format(M=str(number)[0:1])
|
|
elif order == 8:
|
|
subCount = "~{M}M".format(M=str(number)[0:2])
|
|
elif order >= 8:
|
|
subCount = "{M}M".format(M=str(number)[0:3])
|
|
else:
|
|
subCount = str(number)
|
|
|
|
return subCount |