2022-11-05 13:17:27 -07:00
|
|
|
from django.contrib import admin
|
|
|
|
|
2022-11-17 18:16:34 -08:00
|
|
|
from users.models import (
|
|
|
|
Domain,
|
|
|
|
Follow,
|
|
|
|
Identity,
|
|
|
|
InboxMessage,
|
2022-11-17 23:09:04 -08:00
|
|
|
Invite,
|
2022-11-17 18:16:34 -08:00
|
|
|
PasswordReset,
|
|
|
|
User,
|
|
|
|
UserEvent,
|
|
|
|
)
|
2022-11-06 12:48:04 -08:00
|
|
|
|
|
|
|
|
|
|
|
@admin.register(Domain)
|
|
|
|
class DomainAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ["domain", "service_domain", "local", "blocked", "public"]
|
2022-11-05 13:17:27 -07:00
|
|
|
|
|
|
|
|
|
|
|
@admin.register(User)
|
|
|
|
class UserAdmin(admin.ModelAdmin):
|
2022-11-16 20:42:25 -08:00
|
|
|
list_display = ["email", "created", "last_seen", "admin", "moderator", "banned"]
|
2022-11-05 13:17:27 -07:00
|
|
|
|
|
|
|
|
|
|
|
@admin.register(UserEvent)
|
|
|
|
class UserEventAdmin(admin.ModelAdmin):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@admin.register(Identity)
|
|
|
|
class IdentityAdmin(admin.ModelAdmin):
|
2022-11-09 22:48:31 -08:00
|
|
|
list_display = ["id", "handle", "actor_uri", "state", "local"]
|
2022-11-16 20:42:25 -08:00
|
|
|
list_filter = ["local"]
|
2022-11-11 21:02:43 -08:00
|
|
|
raw_id_fields = ["users"]
|
2022-11-12 14:10:15 -08:00
|
|
|
actions = ["force_update"]
|
2022-11-15 17:30:30 -08:00
|
|
|
readonly_fields = ["actor_json"]
|
2022-11-12 14:10:15 -08:00
|
|
|
|
|
|
|
@admin.action(description="Force Update")
|
|
|
|
def force_update(self, request, queryset):
|
|
|
|
for instance in queryset:
|
|
|
|
instance.transition_perform("outdated")
|
2022-11-06 23:19:00 -08:00
|
|
|
|
2022-11-15 17:30:30 -08:00
|
|
|
@admin.display(description="ActivityPub JSON")
|
|
|
|
def actor_json(self, instance):
|
|
|
|
return instance.to_ap()
|
|
|
|
|
2022-11-20 10:18:42 -08:00
|
|
|
def has_add_permission(self, request, obj=None):
|
|
|
|
"""
|
|
|
|
Disables admin creation of identities as it will skip steps
|
|
|
|
"""
|
|
|
|
return False
|
|
|
|
|
2022-11-06 23:19:00 -08:00
|
|
|
|
|
|
|
@admin.register(Follow)
|
|
|
|
class FollowAdmin(admin.ModelAdmin):
|
2022-11-08 22:06:29 -08:00
|
|
|
list_display = ["id", "source", "target", "state"]
|
2022-11-11 21:02:43 -08:00
|
|
|
raw_id_fields = ["source", "target"]
|
2022-11-10 22:42:43 -08:00
|
|
|
|
|
|
|
|
2022-11-17 18:16:34 -08:00
|
|
|
@admin.register(PasswordReset)
|
|
|
|
class PasswordResetAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ["id", "user", "created"]
|
|
|
|
raw_id_fields = ["user"]
|
|
|
|
|
|
|
|
|
2022-11-10 22:42:43 -08:00
|
|
|
@admin.register(InboxMessage)
|
|
|
|
class InboxMessageAdmin(admin.ModelAdmin):
|
2022-11-12 20:14:21 -08:00
|
|
|
list_display = ["id", "state", "state_attempted", "message_type", "message_actor"]
|
2022-11-16 05:53:39 -08:00
|
|
|
search_fields = ["message"]
|
2022-11-10 22:42:43 -08:00
|
|
|
actions = ["reset_state"]
|
|
|
|
|
|
|
|
@admin.action(description="Reset State")
|
|
|
|
def reset_state(self, request, queryset):
|
|
|
|
for instance in queryset:
|
|
|
|
instance.transition_perform("received")
|
2022-11-17 23:09:04 -08:00
|
|
|
|
|
|
|
|
|
|
|
@admin.register(Invite)
|
|
|
|
class InviteAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ["id", "created", "token", "note"]
|