From 2a993a6c475cb93a44e086062854281a086e7686 Mon Sep 17 00:00:00 2001
From: George Katsikas <giorgakis.katsikas@gmail.com>
Date: Fri, 6 Oct 2023 12:58:21 +0200
Subject: [PATCH] automatically vet contributors with invitation key

fixes #124
---
 scipost_django/scipost/forms.py | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/scipost_django/scipost/forms.py b/scipost_django/scipost/forms.py
index c224243ae..d6bd55f52 100644
--- a/scipost_django/scipost/forms.py
+++ b/scipost_django/scipost/forms.py
@@ -24,6 +24,7 @@ from dal import autocomplete
 
 from .behaviors import orcid_validator
 from .constants import (
+    NORMAL_CONTRIBUTOR,
     TITLE_CHOICES,
     SCIPOST_FROM_ADDRESSES,
     UNVERIFIABLE_CREDENTIALS,
@@ -298,6 +299,16 @@ class RegistrationForm(forms.Form):
             }
         )
         contributor.save()
+
+        # Automatically vet the Contributor if they have an invitation key
+        if contributor.invitation_key:
+            contributor.status = NORMAL_CONTRIBUTOR
+            contributor.save()
+            group = Group.objects.get(name="Registered Contributors")
+            contributor.user.groups.add(group)
+            contributor.user.is_active = True
+            contributor.user.save()
+
         return contributor
 
 
-- 
GitLab