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