Skip to content

Commit

Permalink
Apply pylint rules
Browse files Browse the repository at this point in the history
Co-authored-by: Timo Brembeck <[email protected]>
  • Loading branch information
MizukiTemma and timobrembeck committed Oct 23, 2023
1 parent 18e1685 commit 2cc548b
Show file tree
Hide file tree
Showing 10 changed files with 93 additions and 37 deletions.
6 changes: 1 addition & 5 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ disable=missing-module-docstring,
too-few-public-methods,
too-many-ancestors,
duplicate-code,
missing-function-docstring,
consider-using-with,
arguments-differ,
empty-docstring,
raise-missing-from,
property-with-parameters
arguments-differ

enable = useless-suppression
2 changes: 1 addition & 1 deletion lunes_cms/api/v1/serializers/discipline_serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_total_discipline_children(self, obj):
:param disc: Discipline instance
:type disc: models.Discipline
:type disc: ~lunes_cms.cms.models.discipline.Discipline
:return: sum of children
:rtype: int
"""
Expand Down
6 changes: 4 additions & 2 deletions lunes_cms/api/v1/serializers/feedback_serializer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from django.contrib.contenttypes.models import ContentType
from django.core.exceptions import ObjectDoesNotExist
from django.utils.translation import ugettext_lazy as _
from rest_framework import serializers

Expand Down Expand Up @@ -26,7 +27,8 @@ class FeedbackSerializer(serializers.ModelSerializer):
def validate(self, attrs):
try:
attrs["content_type"].model_class().objects.get(pk=attrs["object_id"])
except:
except ObjectDoesNotExist as e:
print(e)
raise serializers.ValidationError(
{
"object_id": [
Expand All @@ -35,7 +37,7 @@ def validate(self, attrs):
),
]
}
)
) from e
return attrs

class Meta:
Expand Down
2 changes: 1 addition & 1 deletion lunes_cms/api/v1/serializers/group_serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_total_discipline_children(self, obj):
contain at least one training set.
:param disc: Discipline instance
:type disc: models.Discipline
:type disc: ~lunes_cms.cms.models.discipline.Discipline
:return: sum of children
:rtype: int
"""
Expand Down
31 changes: 29 additions & 2 deletions lunes_cms/cms/admins/discipline_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def save_model(self, request, obj, form, change):
:param request: current user request
:type request: django.http.request
:param obj: discipline object
:type obj: models.Discipline
:type obj: ~lunes_cms.cms.models.discipline.Discipline
:param form: employed model form
:type form: ModelForm
:param change: True if change on existing model
Expand Down Expand Up @@ -274,6 +274,15 @@ def make_unreleased(self, request, queryset):
ordering="modules_released_order",
)
def modules_released(self, obj):
"""
returns HTML Tag of the link to released training sets related to the discipline
:param obj: Discipline object
:type obj: ~lunes_cms.cms.models.discipline.Discipline
:return: HTML Tag of the link to released training sets related to the discipline
:rtype: str
"""
if not obj.is_leaf_node():
return obj.children_modules_released
trainingset_list = reverse("admin:cms_trainingset_changelist")
Expand All @@ -286,6 +295,15 @@ def modules_released(self, obj):
ordering="modules_unreleased_order",
)
def modules_unreleased(self, obj):
"""
returns HTML Tag of the link to unreleased training sets related to the discipline
:param obj: Discipline object
:type obj: ~lunes_cms.cms.models.discipline.Discipline
:return: HTML Tag of the link to unreleased training sets related to the discipline
:rtype: str
"""
if not obj.is_leaf_node():
return obj.children_modules_unreleased
trainingset_list = reverse("admin:cms_trainingset_changelist")
Expand All @@ -298,6 +316,15 @@ def modules_unreleased(self, obj):
ordering="-words_released_order",
)
def words_released(self, obj):
"""
returns HTML Tag of the link to released words in the relased training sets related to the descipline
:param obj: Discipline object
:type obj: ~lunes_cms.cms.models.discipline.Discipline
:return:
:rtype: str
"""
if not obj.is_leaf_node():
return obj.children_words_released
document_list = reverse("admin:cms_document_changelist")
Expand All @@ -313,7 +340,7 @@ def creator_group(self, obj):
Include creator group of discipline in list display
:param obj: Discipline object
:type obj: models.Discipline
:type obj: ~lunes_cms.cms.models.discipline.Discipline
:return: Either static admin group or user group
:rtype: str
Expand Down
30 changes: 27 additions & 3 deletions lunes_cms/cms/admins/training_set_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def save_model(self, request, obj, form, change):
:param request: current user request
:type request: django.http.request
:param obj: training set object
:type obj: models.TrainingSet
:type obj: ~lunes_cms.cms.models.training_set.TrainingSet
:param form: employed model form
:type form: ModelForm
:param change: True if change on existing model
Expand Down Expand Up @@ -296,6 +296,14 @@ def make_unreleased(self, request, queryset):
ordering="-words",
)
def words(self, obj):
"""
returns HTML tag of the link to the list of words related to the training set
:param obj: Training set object
:type obj: ~lunes_cms.cms.models.training_set.TrainingSet
:return: HTML tag of the link to the list of words related to the training set
:rtype: str
"""
document_list = reverse("admin:cms_document_changelist")
return mark_safe(
f"<a href={document_list}?training+set={obj.id}>{obj.words}</a>"
Expand All @@ -306,6 +314,14 @@ def words(self, obj):
ordering="-words_released",
)
def words_released(self, obj):
"""
returns HTML tag of the link to the list of released words related to the training set
:param obj: Training set object
:type obj: ~lunes_cms.cms.models.training_set.TrainingSet
:return: HTML tag of the link to the list of released words related to the training set
:rtype: str
"""
document_list = reverse("admin:cms_document_changelist")
return mark_safe(
f"<a href={document_list}?training+set={obj.id}&images=approved>{obj.words_released}</a>"
Expand All @@ -316,6 +332,14 @@ def words_released(self, obj):
ordering="-words_unreleased",
)
def words_unreleased(self, obj):
"""
returns HTML tag of the Link to the list of unreleased words related to the training set
:param obj: Training set object
:type obj: ~lunes_cms.cms.models.training_set.TrainingSet
:return: HTML tag of the Link to the list of unreleased words related to the training set
:rtype: str
"""
document_list = reverse("admin:cms_document_changelist")
return mark_safe(
f"<a href={document_list}?training+set={obj.id}&images=no-approved>{obj.words_unreleased}</a>"
Expand All @@ -326,7 +350,7 @@ def related_disciplines(self, obj):
Display related disciplines in list display
:param obj: Training set object
:type obj: models.TrainingSet
:type obj: ~lunes_cms.cms.models.training_set.TrainingSet
:return: comma separated list of related disciplines
:rtype: str
"""
Expand All @@ -339,7 +363,7 @@ def creator_group(self, obj):
Include creator group of discipline in list display
:param obj: Training set object
:type obj: models.TrainingSet
:type obj: ~lunes_cms.cms.models.training_set.TrainingSet
:return: Either static admin group or user group
:rtype: str
"""
Expand Down
6 changes: 2 additions & 4 deletions lunes_cms/cms/models/document.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,13 @@ class Document(models.Model):
feedback = GenericRelation(Feedback)

@property
def converted(self, content_type="audio/mpeg"):
def converted(self):
"""
Function that converts the uploaded audio to .mp3 and
returns the converted file
:param self: A handle to the :class:`models.Document`
:type self: class: `models.Document`
:param content_type: content type of the converted file, defaults to "audio/mpeg"
:type request: content_type
:return: File containing .mp3 audio
:rtype: .mp3 File
Expand All @@ -85,7 +83,7 @@ def converted(self, content_type="audio/mpeg"):

converted_audiofile = File(file=open(new_path, "rb"), name=Path(new_path))
converted_audiofile.name = Path(new_path).name
converted_audiofile.content_type = content_type
converted_audiofile.content_type = "audio/mpeg"
converted_audiofile.size = os.path.getsize(new_path)
os.remove(new_path)
return converted_audiofile
Expand Down
13 changes: 11 additions & 2 deletions lunes_cms/cms/models/group_api_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,22 @@ def qr_code(self):

@classmethod
def get_from_token(cls, token):
"""
returns a group api which maches to the given token
:param token: token
:type token: str
:return: Group API Key object
:rtype: ~lunes_cms.cms.models.group_api_key.GroupAPIKey
"""
try:
return cls.objects.get(
Q(token=token, revoked=False)
& (Q(expiry_date__isnull=True) | Q(expiry_date__gt=now()))
)
except cls.DoesNotExist:
raise PermissionDenied()
except cls.DoesNotExist as e:
raise PermissionDenied() from e

def __str__(self):
"""
Expand Down
4 changes: 2 additions & 2 deletions lunes_cms/cms/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def get_child_count(disc):
parent of a discipline that contains one.
:param disc: Discipline instance
:type disc: models.Discipline
:type disc: ~lunes_cms.cms.models.discipline.Discipline
:return: sum of children
:rtype: int
Expand All @@ -93,7 +93,7 @@ def get_training_set_count(disc):
child elements.
:param disc: Discipline instance
:type disc: models.Discipline
:type disc: ~lunes_cms.cms.models.discipline.Discipline
:return: sum of training sets
:rtype: int
Expand Down
30 changes: 15 additions & 15 deletions lunes_cms/locale/de/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-04 13:05+0000\n"
"POT-Creation-Date: 2023-10-07 11:10+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand All @@ -21,18 +21,18 @@ msgstr ""
msgid "API"
msgstr "API"

#: api/v1/serializers/feedback_serializer.py:21
#: api/v1/serializers/feedback_serializer.py:22
msgid ""
"The content type must be either 'discipline', 'training set' or 'document'."
msgstr ""
"Der Inhaltstyp muss entweder 'discipline', 'trainingset' oder 'document' "
"sein."

#: api/v1/serializers/feedback_serializer.py:33
#: api/v1/serializers/feedback_serializer.py:35
msgid "{} with id {} does not exist."
msgstr "{} mit der ID {} existiert nicht."

#: cms/admin.py:35 cms/admins/training_set_admin.py:335 cms/forms.py:46
#: cms/admin.py:35 cms/admins/training_set_admin.py:359 cms/forms.py:46
#: cms/forms.py:48 cms/list_filter.py:14 cms/models/discipline.py:101
msgid "disciplines"
msgstr "Modulgruppen"
Expand All @@ -41,8 +41,8 @@ msgstr "Modulgruppen"
msgid "training sets"
msgstr "Module"

#: cms/admin.py:37 cms/forms.py:52 cms/forms.py:53 cms/models/document.py:114
#: cms/models/document.py:115
#: cms/admin.py:37 cms/forms.py:52 cms/forms.py:53 cms/models/document.py:112
#: cms/models/document.py:113
msgid "vocabulary"
msgstr "Vokabeln"

Expand All @@ -66,16 +66,16 @@ msgstr "Ausgewählte Modulgruppen zurückhalten"
msgid "released modules"
msgstr "veröffentlichte Module"

#: cms/admins/discipline_admin.py:285
#: cms/admins/discipline_admin.py:294
msgid "unreleased modules"
msgstr "unveröffentlichte Module"

#: cms/admins/discipline_admin.py:297
#: cms/admins/discipline_admin.py:315
msgid "published words in released modules"
msgstr "veröffentlichte Vokabeln in veröffentlichten Modulen"

#: cms/admins/discipline_admin.py:309 cms/admins/document_admin.py:147
#: cms/admins/training_set_admin.py:352
#: cms/admins/discipline_admin.py:336 cms/admins/document_admin.py:147
#: cms/admins/training_set_admin.py:376
msgid "creator group"
msgstr "Besitzergruppe"

Expand Down Expand Up @@ -169,11 +169,11 @@ msgstr[1] "Die Module {} wurden erfolgreich zurückgehalten."
msgid "words"
msgstr "Vokabeln"

#: cms/admins/training_set_admin.py:305
#: cms/admins/training_set_admin.py:313
msgid "published words"
msgstr "veröffentlichte Vokabeln"

#: cms/admins/training_set_admin.py:315
#: cms/admins/training_set_admin.py:331
msgid "unpublished words"
msgstr "unveröffentlichte Vokabeln"

Expand Down Expand Up @@ -402,15 +402,15 @@ msgstr "QR-Code"
msgid "Download QR code"
msgstr "QR-Code herunterladen"

#: cms/models/group_api_key.py:147
#: cms/models/group_api_key.py:156
msgid "{}: Token for the group \"{}\""
msgstr "{}: Token für die Gruppe \"{}\""

#: cms/models/group_api_key.py:154
#: cms/models/group_api_key.py:163
msgid "API Key"
msgstr "API-Key"

#: cms/models/group_api_key.py:155
#: cms/models/group_api_key.py:164
msgid "API Keys"
msgstr "API-Keys"

Expand Down

0 comments on commit 2cc548b

Please sign in to comment.