code for adding a state field to users
parent
2c71afebc2
commit
9373589c52
|
@ -9,20 +9,27 @@ class PubkeyInline(admin.TabularInline):
|
||||||
model = Pubkey
|
model = Pubkey
|
||||||
extra = 1
|
extra = 1
|
||||||
|
|
||||||
def bulk_review(madmin, req, qs):
|
def bulk_accept(madmin, req, qs):
|
||||||
for townie in qs:
|
for townie in qs:
|
||||||
townie.reviewed = True
|
townie.state = 'accepted'
|
||||||
townie.save()
|
townie.save()
|
||||||
post_users_to_social(qs)
|
post_users_to_social(qs)
|
||||||
|
|
||||||
bulk_review.short_description = 'mark selected townies as reviewed'
|
bulk_accept.short_description = 'mark selected townies as accepted'
|
||||||
|
|
||||||
|
def bulk_reject(madmin, req, qs):
|
||||||
|
for townie in qs:
|
||||||
|
townie.state = 'rejected'
|
||||||
|
townie.save()
|
||||||
|
|
||||||
|
bulk_reject.short_description = 'mark selected townies as rejected'
|
||||||
|
|
||||||
@admin.register(Townie)
|
@admin.register(Townie)
|
||||||
class TownieAdmin(admin.ModelAdmin):
|
class TownieAdmin(admin.ModelAdmin):
|
||||||
inlines = [PubkeyInline]
|
inlines = [PubkeyInline]
|
||||||
list_display = ('username', 'reviewed', 'email')
|
list_display = ('username', 'state', 'email')
|
||||||
ordering = ('reviewed',)
|
|
||||||
readonly_fields = ('reasons', 'plans', 'socials')
|
readonly_fields = ('reasons', 'plans', 'socials')
|
||||||
|
ordering = ('state',)
|
||||||
exclude = ('first_name', 'last_name', 'password', 'groups', 'user_permissions', 'last_login', 'is_staff', 'is_active', 'is_superuser')
|
exclude = ('first_name', 'last_name', 'password', 'groups', 'user_permissions', 'last_login', 'is_staff', 'is_active', 'is_superuser')
|
||||||
actions = (bulk_review,)
|
actions = (bulk_accept, bulk_reject,)
|
||||||
search_fields = ('username', 'email', 'displayname')
|
search_fields = ('username', 'email', 'displayname')
|
||||||
|
|
|
@ -42,14 +42,37 @@ class Townie(User):
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = 'Townie'
|
verbose_name = 'Townie'
|
||||||
verbose_name_plural = 'Townies'
|
verbose_name_plural = 'Townies'
|
||||||
|
|
||||||
|
# the actual values here have a leading int for sorting :(
|
||||||
|
UNREVIEWED = '0_unreviewed'
|
||||||
|
TEMPBAN = '1_tempban'
|
||||||
|
ACCEPTED = '2_accepted'
|
||||||
|
REJECTED = '3_rejected'
|
||||||
|
PERMABAN = '4_permaban'
|
||||||
|
STATE_CHOICES = (
|
||||||
|
(REJECTED, 'Rejected'),
|
||||||
|
(ACCEPTED, 'Accepted'),
|
||||||
|
(UNREVIEWED, 'Unreviewed'),
|
||||||
|
(PERMABAN, 'Permanently Banned'),
|
||||||
|
(TEMPBAN, 'Temporarily Banned'),
|
||||||
|
)
|
||||||
shell = CharField(max_length=50, default="/bin/bash")
|
shell = CharField(max_length=50, default="/bin/bash")
|
||||||
reviewed = BooleanField(default=False)
|
state = CharField(max_length=20, choices=STATE_CHOICES, default=UNREVIEWED)
|
||||||
reasons = TextField(blank=True, null=False, default='')
|
reasons = TextField(blank=True, null=False, default='')
|
||||||
plans = TextField(blank=True, null=False, default='')
|
plans = TextField(blank=True, null=False, default='')
|
||||||
socials = TextField(blank=True, null=False, default='')
|
socials = TextField(blank=True, null=False, default='')
|
||||||
referral = CharField(max_length=100, null=True, blank=True)
|
referral = CharField(max_length=100, null=True, blank=True)
|
||||||
displayname = CharField(max_length=100, blank=False, null=False)
|
displayname = CharField(max_length=100, blank=False, null=False)
|
||||||
notes = TextField(blank=True, null=True)
|
notes = TextField(blank=True, null=True,
|
||||||
|
help_text='Use this field to share information about this user (reviewed or not) for other admins to see')
|
||||||
|
|
||||||
|
@property
|
||||||
|
def accepted(self):
|
||||||
|
return self.ACCEPTED == self.state
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unreviewed(self):
|
||||||
|
return self.UNREVIEWED == self.state
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def home(self):
|
def home(self):
|
||||||
|
@ -86,7 +109,7 @@ class Townie(User):
|
||||||
"""A VERY NOT IDEMPOTENT create function. Originally, I had ambitions
|
"""A VERY NOT IDEMPOTENT create function. Originally, I had ambitions
|
||||||
to have this be idempotent and able to incrementally update a user as
|
to have this be idempotent and able to incrementally update a user as
|
||||||
needed, but decided that was overkill for now."""
|
needed, but decided that was overkill for now."""
|
||||||
assert(self.reviewed)
|
assert(self.accepted)
|
||||||
dot_ssh_path = '/home/{}/.ssh'.format(self.username)
|
dot_ssh_path = '/home/{}/.ssh'.format(self.username)
|
||||||
|
|
||||||
error = _guarded_run(['sudo',
|
error = _guarded_run(['sudo',
|
||||||
|
@ -208,7 +231,7 @@ def on_pubkey_post_save(sender, instance, **kwargs):
|
||||||
|
|
||||||
townie = townie[0]
|
townie = townie[0]
|
||||||
|
|
||||||
if townie.reviewed:
|
if townie.accepted:
|
||||||
townie.write_authorized_keys()
|
townie.write_authorized_keys()
|
||||||
|
|
||||||
|
|
||||||
|
@ -220,13 +243,17 @@ def on_townie_pre_save(sender, instance, **kwargs):
|
||||||
|
|
||||||
existing = Townie.objects.get(id=instance.id)
|
existing = Townie.objects.get(id=instance.id)
|
||||||
|
|
||||||
# See if we need to create this user on disk.
|
# See if we need to create the user on disk.
|
||||||
if not existing.reviewed and instance.reviewed is True:
|
if existing.unreviewed and instance.accepted:
|
||||||
logger.info('Creating user {} on disk.'.format(instance.username))
|
logger.info('Creating user {} on disk.'.format(instance.username))
|
||||||
instance.create_on_disk()
|
instance.create_on_disk()
|
||||||
instance.send_welcome_email()
|
instance.send_welcome_email()
|
||||||
instance.write_authorized_keys()
|
instance.write_authorized_keys()
|
||||||
return
|
return
|
||||||
|
else:
|
||||||
|
# This user state transition is currently undefined. In the future, we can check for things
|
||||||
|
# like bans/unbans and then take the appropriate action.
|
||||||
|
return
|
||||||
|
|
||||||
# See if this user needs a rename on disk
|
# See if this user needs a rename on disk
|
||||||
logger.info('checking for rename {} vs {}'.format(
|
logger.info('checking for rename {} vs {}'.format(
|
||||||
|
@ -252,15 +279,3 @@ def _guarded_run(cmd_args, **run_args):
|
||||||
issue_text='error while running {}: {}'.format(
|
issue_text='error while running {}: {}'.format(
|
||||||
cmd_args, e))
|
cmd_args, e))
|
||||||
return e
|
return e
|
||||||
|
|
||||||
|
|
||||||
# things to consider:
|
|
||||||
# * what happens when a user is marked as not reviewed?
|
|
||||||
# * does this signal user deletion? Or does literal Townie deletion signal
|
|
||||||
# "needs to be removed from disk"? I think it makes the most sense for the
|
|
||||||
# latter to imply full user deletion.
|
|
||||||
# * I honestly can't even think of a reason to revert a user to "not reviewed"
|
|
||||||
# and perhaps it's best to just not make that possible. for now, though, I
|
|
||||||
# think I can ignore it.
|
|
||||||
# * what happens when a user needs to be banned?
|
|
||||||
# * the Townie should be deleted via post_delete signal
|
|
||||||
|
|
Loading…
Reference in New Issue