Esempio n. 1
0
 def create(cls,
            creator_id,
            subject,
            title,
            attachments=(),
            body='',
            is_private=False,
            topics=()):
     creator = AuthorizedUser.find_by_id(creator_id)
     if creator:
         note_template = cls(body=body,
                             creator_id=creator_id,
                             is_private=is_private,
                             subject=subject,
                             title=title)
         for topic in topics:
             note_template.topics.append(
                 NoteTemplateTopic.create(
                     note_template.id,
                     titleize(vacuum_whitespace(topic))), )
         for byte_stream_bundle in attachments:
             note_template.attachments.append(
                 NoteTemplateAttachment.create(
                     note_template_id=note_template.id,
                     name=byte_stream_bundle['name'],
                     byte_stream=byte_stream_bundle['byte_stream'],
                     uploaded_by=creator.uid,
                 ), )
         db.session.add(note_template)
         std_commit()
         return note_template
Esempio n. 2
0
 def _add_attachment(cls, note_template, attachment, uploaded_by_uid):
     note_template.attachments.append(
         NoteTemplateAttachment.create(
             note_template_id=note_template.id,
             name=attachment['name'],
             byte_stream=attachment['byte_stream'],
             uploaded_by=uploaded_by_uid,
         ), )
     note_template.updated_at = utc_now()