Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
3.8 KiB

16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
  1. # -*- coding: utf-8 -*-
  2. """
  3. * Copyright © 2009-2010, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
  4. *
  5. * Mumble-Django is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This package is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. """
  15. from django.conf import settings
  16. from django.contrib import admin
  17. from django.utils.translation import ugettext_lazy as _
  18. from mumble.forms import MumbleServerForm, MumbleAdminForm, MumbleUserAdminForm
  19. from mumble.models import MumbleServer, Mumble, MumbleUser
  20. class MumbleServerAdmin(admin.ModelAdmin):
  21. list_display = [ 'dbus', 'get_murmur_online' ]
  22. search_fields = [ 'dbus' ]
  23. ordering = [ 'dbus' ]
  24. form = MumbleServerForm
  25. def get_murmur_online( self, obj ):
  26. return obj.online
  27. get_murmur_online.short_description = _('Master is running')
  28. get_murmur_online.boolean = True
  29. class MumbleAdmin(admin.ModelAdmin):
  30. """ Specification for the "Server administration" admin section. """
  31. list_display = [ 'name', 'srvid', 'get_addr', 'get_port', 'get_murmur_online', 'get_booted',
  32. 'get_is_public', 'get_users_regged', 'get_users_online', 'get_channel_count' ];
  33. list_filter = [ 'addr', 'server' ];
  34. search_fields = [ 'name', 'addr', 'port' ];
  35. ordering = [ 'name' ];
  36. form = MumbleAdminForm;
  37. def get_murmur_online( self, obj ):
  38. return obj.server.online
  39. get_murmur_online.short_description = _('Master is running')
  40. get_murmur_online.boolean = True
  41. def get_addr( self, obj ):
  42. if not obj.addr:
  43. return "*"
  44. get_addr.short_description = _('Server Address')
  45. def get_port( self, obj ):
  46. if not obj.port:
  47. return "< %d >" % (settings.MUMBLE_DEFAULT_PORT + obj.srvid - 1)
  48. return obj.port
  49. get_port.short_description = _('Server Port')
  50. def get_booted( self, obj ):
  51. return obj.booted
  52. get_booted.short_description = _('Instance is running')
  53. get_booted.boolean = True
  54. def get_users_regged( self, obj ):
  55. """ Populates the "Registered users" column. """
  56. if obj.booted:
  57. return obj.users_regged;
  58. else:
  59. return '-';
  60. get_users_regged.short_description = _( 'Registered users' );
  61. def get_users_online( self, obj ):
  62. """ Populates the "Online users" column. """
  63. if obj.booted:
  64. return obj.users_online;
  65. else:
  66. return '-';
  67. get_users_online.short_description = _( 'Online users' );
  68. def get_channel_count( self, obj ):
  69. """ Populates the "Channel Count" column. """
  70. if obj.booted:
  71. return obj.channel_cnt;
  72. else:
  73. return '-';
  74. get_channel_count.short_description = _( 'Channel count' );
  75. def get_is_public( self, obj ):
  76. """ Populates the "Public" column. """
  77. if obj.booted:
  78. if obj.is_public:
  79. return _( 'Yes' );
  80. else:
  81. return _( 'No' );
  82. else:
  83. return '-';
  84. get_is_public.short_description = _( 'Public' );
  85. class MumbleUserAdmin(admin.ModelAdmin):
  86. """ Specification for the "Registered users" admin section. """
  87. list_display = [ 'owner', 'server', 'name', 'get_acl_admin' ];
  88. list_filter = [ 'server' ];
  89. search_fields = [ 'owner__username', 'name' ];
  90. ordering = [ 'owner__username' ];
  91. form = MumbleUserAdminForm
  92. def get_acl_admin( self, obj ):
  93. if obj.server.booted:
  94. return obj.aclAdmin
  95. return None
  96. get_acl_admin.short_description = _('Admin on root channel')
  97. get_acl_admin.boolean = True
  98. admin.site.register( MumbleServer, MumbleServerAdmin );
  99. admin.site.register( Mumble, MumbleAdmin );
  100. admin.site.register( MumbleUser, MumbleUserAdmin );