mirror of
http://git.carcosa.net/jmcbray/brutaldon.git
synced 2024-11-23 15:23:52 -05:00
Support feature_set= other than mainline for Mastodon
Pleroma will send records that cause brutaldon to make pleroma-specific responses, which the mastodon python module wigs out on claiming it doesn't support that "feature set" so allow for a feature set to be specified...
This commit is contained in:
parent
00e35409ef
commit
2dfdb0b859
@ -71,7 +71,7 @@ def get_session(domain):
|
|||||||
return s
|
return s
|
||||||
|
|
||||||
|
|
||||||
def get_usercontext(request):
|
def get_usercontext(request, feature_set="mainline"):
|
||||||
if is_logged_in(request):
|
if is_logged_in(request):
|
||||||
try:
|
try:
|
||||||
client = Client.objects.get(api_base_id=request.session["active_instance"])
|
client = Client.objects.get(api_base_id=request.session["active_instance"])
|
||||||
@ -83,13 +83,14 @@ def get_usercontext(request):
|
|||||||
Account.MultipleObjectsReturned,
|
Account.MultipleObjectsReturned,
|
||||||
):
|
):
|
||||||
raise NotLoggedInException()
|
raise NotLoggedInException()
|
||||||
mastodon = Mastodon(
|
mastodon = get_mastodon()Mastodon(
|
||||||
client_id=client.client_id,
|
client_id=client.client_id,
|
||||||
client_secret=client.client_secret,
|
client_secret=client.client_secret,
|
||||||
access_token=user.access_token,
|
access_token=user.access_token,
|
||||||
api_base_url=client.api_base_id,
|
api_base_url=client.api_base_id,
|
||||||
session=get_session(client.api_base_id),
|
session=get_session(client.api_base_id),
|
||||||
ratelimit_method="throw",
|
ratelimit_method="throw",
|
||||||
|
feature_set=feature_set
|
||||||
)
|
)
|
||||||
return user, mastodon
|
return user, mastodon
|
||||||
else:
|
else:
|
||||||
@ -808,7 +809,23 @@ def settings(request):
|
|||||||
{"form": form, "account": account, "preferences": account.preferences},
|
{"form": form, "account": account, "preferences": account.preferences},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def status_post(account, request, mastodon, **kw):
|
||||||
|
try:
|
||||||
|
mastodon.status_post(**kw)
|
||||||
|
except MastodonIllegalArgumentError as e:
|
||||||
|
if not 'is only available with feature set' in e.args[0]:
|
||||||
|
raise
|
||||||
|
feature_set = e.args[0].rsplit(" ",1)[-1]
|
||||||
|
|
||||||
|
account, mastodon = get_usercontext(request,
|
||||||
|
feature_set=feature_set)
|
||||||
|
|
||||||
|
return status_post(account, request, mastodon, **kw)
|
||||||
|
except TypeError:
|
||||||
|
kw.pop("content_type")
|
||||||
|
return status_post(account, request, mastodon, **kw)
|
||||||
|
return account, mastodon
|
||||||
|
|
||||||
@never_cache
|
@never_cache
|
||||||
@br_login_required
|
@br_login_required
|
||||||
def toot(request, mention=None):
|
def toot(request, mention=None):
|
||||||
@ -864,26 +881,19 @@ def toot(request, mention=None):
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if form.cleaned_data["visibility"] == "":
|
if form.cleaned_data["visibility"] == "":
|
||||||
form.cleaned_data["visibility"] = request.session[
|
form.cleaned_data["visibility"] = request.session[
|
||||||
"active_user"
|
"active_user"
|
||||||
].source.privacy
|
].source.privacy
|
||||||
try:
|
try:
|
||||||
try:
|
status_post(
|
||||||
mastodon.status_post(
|
account, mastodon,
|
||||||
status=form.cleaned_data["status"],
|
status=form.cleaned_data["status"],
|
||||||
visibility=form.cleaned_data["visibility"],
|
visibility=form.cleaned_data["visibility"],
|
||||||
spoiler_text=form.cleaned_data["spoiler_text"],
|
spoiler_text=form.cleaned_data["spoiler_text"],
|
||||||
media_ids=media_objects,
|
media_ids=media_objects,
|
||||||
content_type="text/markdown",
|
content_type="text/markdown")
|
||||||
)
|
|
||||||
except TypeError:
|
|
||||||
mastodon.status_post(
|
|
||||||
status=form.cleaned_data["status"],
|
|
||||||
visibility=form.cleaned_data["visibility"],
|
|
||||||
spoiler_text=form.cleaned_data["spoiler_text"],
|
|
||||||
media_ids=media_objects,
|
|
||||||
)
|
|
||||||
except MastodonAPIError as error:
|
except MastodonAPIError as error:
|
||||||
form.add_error(
|
form.add_error(
|
||||||
"",
|
"",
|
||||||
@ -903,6 +913,8 @@ def toot(request, mention=None):
|
|||||||
"preferences": account.preferences,
|
"preferences": account.preferences,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
else:
|
||||||
|
return result
|
||||||
return redirect(home)
|
return redirect(home)
|
||||||
else:
|
else:
|
||||||
return render(
|
return render(
|
||||||
|
Loading…
Reference in New Issue
Block a user