1 from django.core.files import File
2 from django.core.urlresolvers import reverse
3 from django.db import models
4 from jsonfield import JSONField
5 from curriculum.models import Level
8 class Section(models.Model):
9 title = models.CharField(max_length=255, unique=True)
10 slug = models.SlugField(unique=True)
11 order = models.IntegerField()
12 xml_file = models.FileField(upload_to="catalogue/section/xml",
13 null=True, blank=True)
18 class IncompleteError(BaseException):
21 def __unicode__(self):
24 def get_absolute_url(self):
25 return "%s#%s" % (reverse("catalogue_lessons"), self.slug)
28 def publish(cls, infile):
29 from librarian.parser import WLDocument
30 from django.core.files.base import ContentFile
31 xml = infile.get_string()
32 wldoc = WLDocument.from_string(xml)
35 lessons = [Lesson.objects.get(slug=part.slug)
36 for part in wldoc.book_info.parts]
37 except Lesson.DoesNotExist, e:
38 raise cls.IncompleteError(e)
40 slug = wldoc.book_info.url.slug
42 section = cls.objects.get(slug=slug)
43 except cls.DoesNotExist:
44 section = cls(slug=slug, order=0)
47 section.xml_file.save('%s.xml' % slug, ContentFile(xml), save=False)
48 section.title = wldoc.book_info.title
51 section.lesson_set.all().update(section=None)
52 for i, lesson in enumerate(lessons):
53 lesson.section = section
59 def syntetic_lesson(self, level):
61 return self.lesson_set.filter(type='synthetic', level=level)[0]
66 class Lesson(models.Model):
67 section = models.ForeignKey(Section, null=True, blank=True)
68 level = models.ForeignKey(Level)
69 title = models.CharField(max_length=255)
70 slug = models.SlugField(unique=True)
71 type = models.CharField(max_length=15, db_index=True)
72 order = models.IntegerField(db_index=True)
73 dc = JSONField(default='{}')
75 xml_file = models.FileField(upload_to="catalogue/lesson/xml",
76 null=True, blank=True) # FIXME: slug in paths
77 html_file = models.FileField(upload_to="catalogue/lesson/html",
78 null=True, blank=True)
79 package = models.FileField(upload_to="catalogue/lesson/pack",
80 null=True, blank=True)
81 student_package = models.FileField(upload_to="catalogue/lesson/student_pack",
82 null=True, blank=True)
83 pdf = models.FileField(upload_to="catalogue/lesson/pdf",
84 null=True, blank=True)
85 student_pdf = models.FileField(upload_to="catalogue/lesson/student_pdf",
86 null=True, blank=True)
89 ordering = ['section', 'level', 'order']
91 def __unicode__(self):
95 def get_absolute_url(self):
96 return ('catalogue_lesson', [self.slug])
99 def publish(cls, infile):
100 from librarian.parser import WLDocument
101 from django.core.files.base import ContentFile
102 xml = infile.get_string()
103 wldoc = WLDocument.from_string(xml)
105 # Check if not section metadata block.
106 if wldoc.book_info.parts:
107 return Section.publish(infile)
109 slug = wldoc.book_info.url.slug
111 lesson = cls.objects.get(slug=slug)
112 except cls.DoesNotExist:
113 lesson = cls(slug=slug)
115 lesson.attachment_set.all().delete()
116 for att_name, att_file in infile.attachments.items():
118 slug, ext = att_name.rsplit('.', 1)
120 slug, ext = att_name, ''
121 attachment = lesson.attachment_set.create(slug=slug, ext=ext)
122 attachment.file.save(att_name, ContentFile(att_file.get_string()))
125 lesson.xml_file.save('%s.xml' % slug, ContentFile(xml), save=False)
126 lesson.title = wldoc.book_info.title
128 lesson.level = Level.objects.get(slug=wldoc.book_info.audience)
131 lesson.type = lesson.dc["type"]
134 lesson.build_package()
135 lesson.build_package(student=True)
138 def populate_dc(self):
139 from librarian.parser import WLDocument
140 wldoc = WLDocument.from_file(self.xml_file.path)
141 self.dc = wldoc.book_info.to_dict()
144 def build_html(self):
145 from librarian.parser import WLDocument
146 wldoc = WLDocument.from_file(self.xml_file.path)
147 html = wldoc.as_html()
148 self.html_file.save("%s.html" % self.slug,
149 File(open(html.get_filename())))
151 def build_package(self, student=False):
152 from StringIO import StringIO
154 from django.core.files.base import ContentFile
156 zipf = zipfile.ZipFile(buff, 'w', zipfile.ZIP_STORED)
157 zipf.write(self.xml_file.path, "pliki-zrodlowe/%s.xml" % self.slug)
158 pdf = self.student_pdf if student else self.pdf
160 zipf.write(self.xml_file.path,
161 "%s%s.pdf" % (self.slug, "_student" if student else ""))
163 fieldname = "student_package" if student else "package"
164 getattr(self, fieldname).save(
165 "%s%s.zip" % (self.slug, "_student" if student else ""),
166 ContentFile(buff.getvalue()))
168 def get_syntetic(self):
169 return self.section.syntetic_lesson(self.level)
172 class Attachment(models.Model):
173 slug = models.CharField(max_length=255)
174 ext = models.CharField(max_length=15)
175 lesson = models.ForeignKey(Lesson)
176 file = models.FileField(upload_to="catalogue/attachment")
179 ordering = ['slug', 'ext']
180 unique_together = ['lesson', 'slug', 'ext']
182 def __unicode__(self):
183 return "%s.%s" % (self.slug, self.ext)
186 class Part(models.Model):
187 lesson = models.ForeignKey(Lesson)
188 pdf = models.FileField(upload_to="catalogue/part/pdf",
189 null=True, blank=True)
190 student_pdf = models.FileField(upload_to="catalogue/part/student_pdf",
191 null=True, blank=True)