1
1
import uuid
2
- from django .db import models
2
+ from math import floor
3
+
3
4
from django .contrib .auth import get_user_model
4
- from django .utils . text import slugify
5
+ from django .db import models
5
6
from django .utils import timezone
6
- from math import floor
7
- from projects .models import Category
7
+ from django .utils .text import slugify
8
8
9
9
Creator = get_user_model ()
10
10
11
11
12
+ # TODO: use a single model for images everywhere
12
13
class Image (models .Model ):
13
14
file_url = models .URLField (max_length = 1000 )
14
15
public_id = models .TextField (max_length = 1000 , blank = True )
15
16
16
17
def __str__ (self ):
17
18
try :
18
- image = self .file_url
19
+ file_url = self .file_url
19
20
except AttributeError :
20
- image = ''
21
- return "Photo <%s:%s>" % (self .public_id , image )
21
+ file_url = ""
22
+ return "Photo <%s:%s>" % (self .public_id , file_url )
22
23
23
24
24
25
class InspiringArtist (models .Model ):
25
- ''' this should be having more fields to distinguish an artist '''
26
- image = models . ForeignKey ( Image ,
27
- on_delete = models .CASCADE ,
28
- null = True ,
29
- blank = True )
26
+ """ this should be having more fields to distinguish an artist"""
27
+
28
+ image = models .ForeignKey (
29
+ Image , on_delete = models . CASCADE , null = True , blank = True
30
+ ) # TODO: change to OneToOneField
30
31
short_biography = models .TextField (max_length = 10000 , blank = True , null = True )
31
32
name = models .CharField (max_length = 100 , null = True )
32
33
@@ -35,41 +36,45 @@ def __str__(self):
35
36
36
37
37
38
class Activity (models .Model ):
38
- id = models .UUIDField (primary_key = True ,
39
- default = uuid .uuid4 ,
40
- editable = False ,
41
- unique = True )
42
- creators = models .ManyToManyField (Creator ,
43
- related_name = "activities_created" )
39
+ id = models .UUIDField (
40
+ primary_key = True , default = uuid .uuid4 , editable = False , unique = True
41
+ )
42
+ creators = models .ManyToManyField (Creator , related_name = "activities_created" )
44
43
title = models .CharField (max_length = 500 )
45
- category = models .ManyToManyField ("projects.Category" ,blank = True , related_name = "activities" )
46
- introduction = models .CharField (max_length = 10000 ,blank = True )
44
+ category = models .ManyToManyField (
45
+ "projects.Category" , blank = True , related_name = "activities"
46
+ )
47
+ introduction = models .CharField (max_length = 10000 , blank = True )
47
48
class_grade = models .CharField (max_length = 50 , blank = True )
48
-
49
+
49
50
learning_goals = models .TextField (max_length = 10000 , blank = True , null = True )
50
51
facilitation_tips = models .TextField (max_length = 10000 , blank = True , null = True )
51
52
motivation = models .TextField (max_length = 10000 , blank = True , null = True )
52
53
video = models .URLField (max_length = 1000 , blank = True , null = True )
53
54
materials_used = models .TextField (max_length = 5000 , blank = True , null = True )
54
- materials_used_image = models .ForeignKey (Image ,
55
- on_delete = models .SET_NULL ,
56
- null = True ,
57
- blank = True ,
58
- )
59
- inspiring_artist = models .ForeignKey (InspiringArtist ,
60
- on_delete = models .SET_NULL ,
61
- null = True ,
62
- related_name = "inspiring_artist_activities" ,
63
- blank = True ,
64
- )
65
- views = models .ManyToManyField (Creator ,
66
- blank = True ,
67
- related_name = "activities_viewed" )
55
+ materials_used_image = models .ForeignKey ( # TODO: change to OneToOneField
56
+ Image ,
57
+ on_delete = models .SET_NULL ,
58
+ null = True ,
59
+ blank = True ,
60
+ )
61
+ inspiring_artist = (
62
+ models .ForeignKey ( # TODO: sure an activity can only be inspired by one artist?
63
+ InspiringArtist ,
64
+ on_delete = models .SET_NULL ,
65
+ null = True ,
66
+ related_name = "activities_inspired" ,
67
+ blank = True ,
68
+ )
69
+ )
70
+ views = models .ManyToManyField (
71
+ Creator , blank = True , related_name = "activities_viewed"
72
+ )
68
73
views_count = models .IntegerField (blank = True , default = 0 )
69
74
saved_count = models .IntegerField (blank = True , default = 0 )
70
- saved_by = models .ManyToManyField (Creator ,
71
- blank = True ,
72
- related_name = "activities_saved" )
75
+ saved_by = models .ManyToManyField (
76
+ Creator , blank = True , related_name = "activities_saved"
77
+ )
73
78
created_on = models .DateTimeField (default = timezone .now , null = True )
74
79
publish = models .BooleanField (default = False , null = True )
75
80
slug = models .SlugField (unique = True , max_length = 1000 )
@@ -79,56 +84,65 @@ def save(self, *args, **kwargs):
79
84
pass
80
85
else :
81
86
uid = str (uuid .uuid4 ())
82
- uid = uid [0 : floor (len (uid ) / 6 )]
87
+ uid = uid [0 : floor (len (uid ) / 6 )]
83
88
self .slug = slugify (self .title ) + "-" + uid
84
89
85
90
super ().save (* args , ** kwargs )
86
91
87
92
def __str__ (self ):
88
93
return self .title
89
94
95
+ class Meta :
96
+ verbose_name_plural = "Activities"
97
+
90
98
91
99
class InspiringExample (models .Model ):
92
- activity = models .ForeignKey (Activity ,
93
- on_delete = models .CASCADE ,
94
- null = True ,
95
- related_name = "inspiring_examples" ,
96
- blank = True )
100
+ activity = models .ForeignKey (
101
+ Activity ,
102
+ on_delete = models .CASCADE ,
103
+ null = True ,
104
+ related_name = "inspiring_examples" ,
105
+ blank = True ,
106
+ )
97
107
description = models .TextField (max_length = 10000 , blank = True )
98
108
credit = models .TextField (max_length = 1000 , blank = True )
99
- image = models .ForeignKey (Image ,
100
- on_delete = models .CASCADE ,
101
- null = True ,
102
- blank = True )
109
+ image = models .ForeignKey (
110
+ Image , on_delete = models .CASCADE , null = True , blank = True
111
+ ) # TODO: change to OneToOneField
103
112
104
113
def __str__ (self ):
105
- return self .image
114
+ return self .image . file_url
106
115
107
116
108
117
class ActivityImage (models .Model ):
109
- activity = models .ForeignKey (Activity ,
110
- on_delete = models .CASCADE ,
111
- null = True ,
112
- related_name = "activity_images" ,
113
- blank = True )
114
- image = models .ForeignKey (Image ,
115
- on_delete = models .CASCADE ,
116
- null = True ,
117
- blank = True )
118
+ activity = models .ForeignKey (
119
+ Activity ,
120
+ on_delete = models .CASCADE ,
121
+ null = True ,
122
+ related_name = "activity_images" ,
123
+ blank = True ,
124
+ )
125
+ image = models .ForeignKey (
126
+ Image , on_delete = models .CASCADE , null = True , blank = True
127
+ ) # TODO: change to OneToOneField
118
128
119
129
def __str__ (self ):
120
- return self .image
130
+ return self .image . file_url
121
131
122
132
123
133
class ActivityMakingStep (models .Model ):
124
- activity = models .ForeignKey (Activity ,
125
- on_delete = models .CASCADE ,
126
- null = True ,
127
- related_name = "making_steps" ,
128
- blank = True )
129
-
130
- title = models .TextField (max_length = 500 ,null = True )
131
- image = models .ManyToManyField (Image ,blank = True )
134
+ activity = models .ForeignKey (
135
+ Activity ,
136
+ on_delete = models .CASCADE ,
137
+ null = True ,
138
+ related_name = "making_steps" ,
139
+ blank = True ,
140
+ )
141
+
142
+ title = models .TextField (max_length = 500 , null = True )
143
+ image = models .ManyToManyField (
144
+ Image , blank = True
145
+ ) # TODO: should this be ManyToManyField or OneToOneField ?
132
146
description = models .TextField (max_length = 10000 , blank = True )
133
147
step_order = models .IntegerField ()
134
148
0 commit comments