add instance hidelist

This commit is contained in:
codl 2022-03-04 13:12:35 +01:00
parent 77bb52cb9e
commit bbbb2470ed
2 changed files with 28 additions and 7 deletions

View File

@ -47,7 +47,23 @@ SENTRY
If you want to send exceptions to sentry, enter your sentry DSN here
"""
# SENTRY_DSN=
# SENTRY_DSN=''
"""
HIDDEN INSTANCES
The front page shows one-click login buttons for the mastodon and
misskey instances that see the most heavy use. Instances configured in this
list will be prevented from appearing in these buttons.
They will still appear if a user has previously logged into them and their
browser remembers it. A user will still be able to log into them by manually
typing the address into the log in form.
This is a space-delimited list. Example syntax:
HIDDEN_INSTANCES='social.example.com pleroma.example.net mk.example.org'
"""
# HIDDEN_INSTANCES=''
"""
ADVANCED FLASK CONFIG

View File

@ -37,8 +37,9 @@ def index():
@app.route('/about/')
def about():
mastodon_instances = libforget.mastodon.suggested_instances()
misskey_instances = libforget.misskey.suggested_instances()
blocklist = app.config.get('HIDDEN_INSTANCES', '').split()
mastodon_instances = libforget.mastodon.suggested_instances(blocklist=blocklist)
misskey_instances = libforget.misskey.suggested_instances(blocklist=blocklist)
return render_template(
'about.html',
mastodon_instances=mastodon_instances,
@ -186,9 +187,11 @@ def mastodon_login_step1(instance=None):
or request.form.get('instance_url', None))
if not instance_url:
blocklist = app.config.get('HIDDEN_INSTANCES', '').split()
instances = libforget.mastodon.suggested_instances(
limit=30,
min_popularity=1
min_popularity=1,
blocklist=blocklist,
)
return render_template(
'mastodon_login.html', instances=instances,
@ -247,9 +250,11 @@ def misskey_login(instance=None):
or request.form.get('instance_url', None))
if not instance_url:
blocklist = app.config.get('HIDDEN_INSTANCES', '').split()
instances = libforget.misskey.suggested_instances(
limit = 30,
min_popularity = 1
min_popularity = 1,
blocklist=blocklist,
)
return render_template(
'misskey_login.html', instances=instances,