fixes and additions (#230)

* Update posts.py

* Update readme.md

* Update requirements.txt

* Update requirements.txt

Co-authored-by: Aevann1 <59999695+Aevann1@users.noreply.github.com>
This commit is contained in:
pqpetq 2022-04-24 09:22:12 -04:00 committed by GitHub
parent a7e911e56d
commit cf390af817
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 8 deletions

View file

@ -1302,11 +1302,14 @@ def submit_post(v, sub=None):
if post.url.startswith('https://old.reddit.com/r/'): if post.url.startswith('https://old.reddit.com/r/'):
rev = post.url.replace('https://old.reddit.com/', '') rev = post.url.replace('https://old.reddit.com/', '')
rev = f"* [unddit.com](https://unddit.com/{rev})\n" rev = f"* [unddit.com](https://unddit.com/{rev})\n"
elif post.url.startswith("https://old.reddit.com/u/"):
rev = post.url.replace('https://old.reddit.com/u/', '')
rev = f"* [camas.github.io](https://camas.github.io/reddit-search/#\u007b\"author\":\"{rev}\",\"resultSize\":100\u007d)\n"
else: rev = '' else: rev = ''
newposturl = post.url newposturl = post.url
if newposturl.startswith('/'): newposturl = f"{SITE_FULL}{newposturl}" if newposturl.startswith('/'): newposturl = f"{SITE_FULL}{newposturl}"
body += f"Snapshots:\n\n{rev}* [archive.org](https://web.archive.org/{newposturl})\n* [archive.ph](https://archive.ph/?url={quote(newposturl)}&run=1) (click to archive)\n\n" body += f"Snapshots:\n\n{rev}* [archive.org](https://web.archive.org/{newposturl})\n* [archive.ph](https://archive.ph/?url={quote(newposturl)}&run=1) (click to archive)\n* [ghostarchive.org](https://ghostarchive.org/search?term={quote(newposturl)}) (click to archive)\n\n"
gevent.spawn(archiveorg, newposturl) gevent.spawn(archiveorg, newposturl)
captured = [] captured = []
@ -1322,10 +1325,14 @@ def submit_post(v, sub=None):
if f'**[{title}]({href})**:\n\n' not in body: if f'**[{title}]({href})**:\n\n' not in body:
body += f'**[{title}]({href})**:\n\n' body += f'**[{title}]({href})**:\n\n'
if href.startswith('https://old.reddit.com/'): if href.startswith('https://old.reddit.com/r/'):
body += f'* [unddit.com](https://unddit.com/{href.replace("https://old.reddit.com/", "")})\n' body += f'* [unddit.com](https://unddit.com/{href.replace("https://old.reddit.com/", "")})\n'
if href.startswith('https://old.reddit.com/u/'):
rev = post.url.replace('https://old.reddit.com/u/', '')
body += f"* [camas.github.io](https://camas.github.io/reddit-search/#\u007b\"author\":\"{rev}\",\"resultSize\":100\u007d)\n"
body += f'* [archive.org](https://web.archive.org/{href})\n' body += f'* [archive.org](https://web.archive.org/{href})\n'
body += f'* [archive.ph](https://archive.ph/?url={quote(href)}&run=1) (click to archive)\n\n' body += f'* [archive.ph](https://archive.ph/?url={quote(href)}&run=1) (click to archive)\n'
body += f'* [ghostarchive.org](https://ghostarchive.org/search?term={quote(href)}) (click to archive)\n\n'
gevent.spawn(archiveorg, href) gevent.spawn(archiveorg, href)
body_html = sanitize(body) body_html = sanitize(body)

View file

@ -6,7 +6,9 @@ This code runs https://rdrama.net and https://pcmemes.net
[Docker installation](https://docs.docker.com/get-docker/) [Docker installation](https://docs.docker.com/get-docker/)
2- Run the following commands in the terminal: 2 - If hosting on localhost and/or without HTTPS, change```"SESSION_COOKIE_SECURE"``` in ```__main__.py``` to "False"
3- Run the following commands in the terminal:
``` ```
git clone https://github.com/Aevann1/rDrama/ git clone https://github.com/Aevann1/rDrama/
@ -16,6 +18,6 @@ cd rDrama
docker-compose up docker-compose up
``` ```
3- That's it! Visit `localhost` in your browser. 4- That's it! Visit `localhost` in your browser.
4- Optional: to change the domain from "localhost" to something else and configure the site settings, as well as integrate it with the external services the website uses, please edit the variables in the `env` file and then restart the docker container. 5- Optional: to change the domain from "localhost" to something else and configure the site settings, as well as integrate it with the external services the website uses, please edit the variables in the `env` file and then restart the docker container.