from django.db import models
from jsonfield import JSONField
from fnpdjango.storage import BofhFileSystemStorage
+
from curriculum.models import Level, Curriculum, CurriculumCourse
import logging
lesson.build_package(student=True)
return lesson
+ def republish(self, repackage_level=True, attachments=None):
+ from librarian import IOFile
+ import os.path
+ from django.conf import settings
+ if attachments is None:
+ attachments = {}
+ for attachment in self.attachment_set.all():
+ full_name = os.path.join(settings.MEDIA_ROOT, attachment.file.name)
+ f = IOFile.from_filename(full_name)
+ attachments['%s.%s' % (attachment.slug, attachment.ext)] = f
+ infile = IOFile.from_filename(self.xml_file.path, attachments=attachments)
+ Lesson.publish(infile)
+ if repackage_level:
+ self.level.build_packages()
+
def populate_dc(self):
from librarian.parser import WLDocument
wldoc = WLDocument.from_file(self.xml_file.path)
return None
def requires_internet(self):
- return 'internet' in self.dc.get('requires', [])
+ return any(requirement in self.dc.get('requires', []) for requirement in ('internet', 'Internet'))
class Attachment(models.Model):