Merge pull request 'Frontendi dodatni' (#3) from dev into master
Reviewed-on: #3
This commit is contained in:
commit
4485d15740
11
frontends.py
Normal file
11
frontends.py
Normal file
@ -0,0 +1,11 @@
|
||||
FRONTENDS = {
|
||||
"youtube.com/watch": ("iv.datura.network", "inv.tux.pizza"),
|
||||
"medium.com" : ("scribe.rip", "sc.vern.cc", "m.opnxng.com"),
|
||||
"stackoverflow.com": ("code.whatever.social", "ao.vern.cc", "overflow.smnz.de"),
|
||||
"instagram.com": ("bibliogram.1d4.us", "bibliogram.froth.zone", "ig.opnxng.com", "proxigram.lunar.icu"),
|
||||
"genius.com": ("dm.vern.cc", "dumb.lunar.icu", "dumb.esmailelbob.xyz"),
|
||||
"reddit.com":("eu.safereddit.com", "l.opnxng.com", "libreddit.bus-hit.me"),
|
||||
"www.imdb.com": ("libremdb.iket.me", "ld.vern.cc", "binge.whatever.social"),
|
||||
"twitter.com": ("n.opnxng.com", "nitter.1d4.us", "nitter.adminforge.de"),
|
||||
"wikipedia.com": ("wiki.adminforge.de", "wiki.froth.zone", "wikiless.esmailelbob.xyz")
|
||||
}
|
@ -1,13 +1,16 @@
|
||||
import ollama
|
||||
import scraper_functions as sf
|
||||
import random
|
||||
from frontends import FRONTENDS
|
||||
|
||||
def processmsg(msg, rcpt):
|
||||
if "youtube.com/watch" in msg:
|
||||
return msg.replace("youtube.com", "iv.datura.network")
|
||||
elif msg.startswith("!"):
|
||||
if msg.startswith("!"):
|
||||
return command(msg, "")
|
||||
elif "good bot" in msg:
|
||||
return "^_^"
|
||||
for big_tech_site in FRONTENDS:
|
||||
if big_tech_site in msg:
|
||||
return "libre link: " + msg.replace(big_tech_site, random.choice(FRONTENDS[big_tech_site]))
|
||||
|
||||
def command(msg, rcpt):
|
||||
if msg.startswith("!help"):
|
||||
|
Loading…
Reference in New Issue
Block a user