mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 11:22:30 -04:00
Added content warnings to templates as $safe_text. Content warnings will be shown by default on GUI for now
This commit is contained in:
parent
d6985be896
commit
3deffa57de
@ -379,7 +379,7 @@ class BaseBuffer(base.Buffer):
|
|||||||
if url == '':
|
if url == '':
|
||||||
toot = self.get_item()
|
toot = self.get_item()
|
||||||
if toot.reblog != None:
|
if toot.reblog != None:
|
||||||
urls = utils.find_urls(toot.REBLOG)
|
urls = utils.find_urls(toot.reblog)
|
||||||
else:
|
else:
|
||||||
urls = utils.find_urls(toot)
|
urls = utils.find_urls(toot)
|
||||||
if len(urls) == 1:
|
if len(urls) == 1:
|
||||||
|
@ -44,7 +44,7 @@ braille_reporting = boolean(default=True)
|
|||||||
speech_reporting = boolean(default=True)
|
speech_reporting = boolean(default=True)
|
||||||
|
|
||||||
[templates]
|
[templates]
|
||||||
toot = string(default="$display_name, $text $image_descriptions $date. $source")
|
toot = string(default="$display_name, $safe_text $image_descriptions $date. $source")
|
||||||
person = string(default="$display_name (@$screen_name). $followers followers, $following following, $toots toots. Joined $created_at.")
|
person = string(default="$display_name (@$screen_name). $followers followers, $following following, $toots toots. Joined $created_at.")
|
||||||
|
|
||||||
[filters]
|
[filters]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import arrow
|
import arrow
|
||||||
from . import utils
|
from . import utils, templates
|
||||||
|
|
||||||
def compose_toot(toot, db, relative_times, show_screen_names):
|
def compose_toot(toot, db, relative_times, show_screen_names):
|
||||||
if show_screen_names == False:
|
if show_screen_names == False:
|
||||||
@ -15,9 +15,9 @@ def compose_toot(toot, db, relative_times, show_screen_names):
|
|||||||
else:
|
else:
|
||||||
ts = original_date.shift(hours=db["utc_offset"]).format(_("dddd, MMMM D, YYYY H:m:s"), locale="es")
|
ts = original_date.shift(hours=db["utc_offset"]).format(_("dddd, MMMM D, YYYY H:m:s"), locale="es")
|
||||||
if toot.reblog != None:
|
if toot.reblog != None:
|
||||||
text = _("Boosted from @{}: {}").format(toot.reblog.account.acct, utils.html_filter(toot.reblog.content))
|
text = _("Boosted from @{}: {}").format(toot.reblog.account.acct, templates.process_text(toot.reblog))
|
||||||
else:
|
else:
|
||||||
text = utils.html_filter(toot.content)
|
text = templates.process_text(toot)
|
||||||
source = toot.get("application", "")
|
source = toot.get("application", "")
|
||||||
# "" means remote user, None for legacy apps so we should cover both sides.
|
# "" means remote user, None for legacy apps so we should cover both sides.
|
||||||
if source != None and source != "":
|
if source != None and source != "":
|
||||||
|
@ -8,7 +8,8 @@ from . import utils
|
|||||||
# Define variables that would be available for all template objects.
|
# Define variables that would be available for all template objects.
|
||||||
# This will be used for the edit template dialog.
|
# This will be used for the edit template dialog.
|
||||||
# Available variables for toot objects.
|
# Available variables for toot objects.
|
||||||
toot_variables = ["date", "display_name", "screen_name", "source", "lang", "text", "image_descriptions"]
|
# safe_text will be the content warning in case a toot contains one, text will always be the full text, no matter if has a content warning or not.
|
||||||
|
toot_variables = ["date", "display_name", "screen_name", "source", "lang", "safe_text", "text", "image_descriptions"]
|
||||||
person_variables = ["display_name", "screen_name", "description", "followers", "following", "favorites", "toots", "created_at"]
|
person_variables = ["display_name", "screen_name", "description", "followers", "following", "favorites", "toots", "created_at"]
|
||||||
|
|
||||||
# Default, translatable templates.
|
# Default, translatable templates.
|
||||||
@ -24,9 +25,11 @@ def process_date(field, relative_times=True, offset_hours=0):
|
|||||||
ts = original_date.shift(hours=offset_hours).format(_("dddd, MMMM D, YYYY H:m:s"), locale=languageHandler.curLang[:2])
|
ts = original_date.shift(hours=offset_hours).format(_("dddd, MMMM D, YYYY H:m:s"), locale=languageHandler.curLang[:2])
|
||||||
return ts
|
return ts
|
||||||
|
|
||||||
def process_text(toot):
|
def process_text(toot, safe=True):
|
||||||
# text = utils.clean_mentions(utils.StripChars(text))
|
# text = utils.clean_mentions(utils.StripChars(text))
|
||||||
return utils.html_filter(toot.content)
|
if safe == True and toot.sensitive == True and toot.spoiler_text != "":
|
||||||
|
return _("Content warning: {}").format(toot.spoiler_text)
|
||||||
|
return utils.html_filter(toot.content)
|
||||||
|
|
||||||
def process_image_descriptions(media_attachments):
|
def process_image_descriptions(media_attachments):
|
||||||
""" Attempt to extract information for image descriptions. """
|
""" Attempt to extract information for image descriptions. """
|
||||||
@ -52,7 +55,8 @@ def render_toot(toot, template, relative_times=False, offset_hours=0):
|
|||||||
$screen_name: User screen name, this is the same name used to reference the user in Twitter.
|
$screen_name: User screen name, this is the same name used to reference the user in Twitter.
|
||||||
$ source: Source client from where the current tweet was sent.
|
$ source: Source client from where the current tweet was sent.
|
||||||
$lang: Two letter code for the automatically detected language for the tweet. This detection is performed by Twitter.
|
$lang: Two letter code for the automatically detected language for the tweet. This detection is performed by Twitter.
|
||||||
$text: Tweet text.
|
$safe_text: Safe text to display. If a content warning is applied in toots, display those instead of the whole toot.
|
||||||
|
$text: Toot text. This always displays the full text, even if there is a content warning present.
|
||||||
$image_descriptions: Information regarding image descriptions added by twitter users.
|
$image_descriptions: Information regarding image descriptions added by twitter users.
|
||||||
"""
|
"""
|
||||||
global toot_variables
|
global toot_variables
|
||||||
@ -69,10 +73,12 @@ def render_toot(toot, template, relative_times=False, offset_hours=0):
|
|||||||
if hasattr(toot, "application") and toot.application != None:
|
if hasattr(toot, "application") and toot.application != None:
|
||||||
available_data.update(source=toot.application.get("name"))
|
available_data.update(source=toot.application.get("name"))
|
||||||
if toot.reblog != None:
|
if toot.reblog != None:
|
||||||
text = _("Boosted from @{}: {}").format(toot.reblog.account.acct, process_text(toot.reblog), )
|
text = _("Boosted from @{}: {}").format(toot.reblog.account.acct, process_text(toot.reblog, safe=False), )
|
||||||
|
safe_text = _("Boosted from @{}: {}").format(toot.reblog.account.acct, process_text(toot.reblog), )
|
||||||
else:
|
else:
|
||||||
text = process_text(toot)
|
text = process_text(toot, safe=False)
|
||||||
available_data.update(lang=toot.language, text=text)
|
safe_text = process_text(toot)
|
||||||
|
available_data.update(lang=toot.language, text=text, safe_text=safe_text)
|
||||||
# process image descriptions
|
# process image descriptions
|
||||||
image_descriptions = ""
|
image_descriptions = ""
|
||||||
if toot.reblog != None:
|
if toot.reblog != None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user