Beispiel #1
0
 def is_valid(self, raise_exception):
     if not super(TransformTask, self).is_valid(raise_exception):
         return False
     if (hasattr(self, u'user') and self.user is not None and
         (not isinstance(self.user, User) or not self.user.is_valid(False))):
         self._E(raise_exception, u'user is not a valid instance of user')
     # Remark: An integer is also considered as a valid user id to simplify the integration with EBU-io
     if hasattr(self, u'user_id') and not (valid_uuid(self.user_id, none_allowed=False) or valid_int(self.user_id)):
         self._E(raise_exception, u'user_id is not a valid uuid string neither a valid integer')
     if (hasattr(self, u'media_in') and self.media_in is not None and
         (not isinstance(self.media_in, Media) or not self.media_in.is_valid(False))):
         self._E(raise_exception, u'media_in is not a valid instance of media')
     if hasattr(self, u'media_in_id') and not valid_uuid(self.media_in_id, none_allowed=False):
         self._E(raise_exception, u'media_in_id is not a valid uuid string')
     if (hasattr(self, u'media_out') and self.media_out is not None and
         (not isinstance(self.media_out, Media) or not self.media_out.is_valid(False))):
         self._E(raise_exception, u'media_out is not a valid instance of media')
     if hasattr(self, u'media_out_id') and not valid_uuid(self.media_out_id, none_allowed=False):
         self._E(raise_exception, u'media_out_id is not a valid uuid string')
     if (hasattr(self, u'profile') and self.profile is not None and
         (not isinstance(self.profile, TransformProfile) or not self.profile.is_valid(False))):
         self._E(raise_exception, u'profile is not a valid instance of transformation profile')
     if hasattr(self, u'profile_id') and not valid_uuid(self.profile_id, none_allowed=False):
         self._E(raise_exception, u'profile_id is not a valid uuid string')
     # FIXME check send_email
     return True
Beispiel #2
0
 def is_valid(self, raise_exception):
     if not super(Media, self).is_valid(raise_exception):
         return False
     # FIXME check user XOR user_id ...
     if (hasattr(self, u'user') and self.user is not None and
         (not isinstance(self.user, User) or not self.user.is_valid(False))):
         self._E(raise_exception, u'user is not a valid instance of user')
     # Remark: An integer is also considered as a valid user id to simplify the integration with EBU-io
     if hasattr(self, u'user_id') and not (valid_uuid(self.user_id, none_allowed=False) or valid_int(self.user_id)):
         self._E(raise_exception, u'user_id is not a valid uuid string neither a valid integer')
     if (hasattr(self, u'parent') and self.parent is not None and
         (not isinstance(self.parent, Media) or not self.parent.is_valid(False))):
         self._E(raise_exception, u'parent is not a valid instance of media')
     if hasattr(self, u'parent_id') and not valid_uuid(self.parent_id, none_allowed=True):
         self._E(raise_exception, u'parent_id is not a valid uuid string')
     # FIXME check uri
     # FIXME check public_uris
     if not valid_filename(self.filename):
         self._E(raise_exception, u'filename is not a valid file-name')
     # FIXME check metadata
     if not self.status in Media.ALL_STATUS:
         self._E(raise_exception, u'status is not in {0}'.format(Media.ALL_STATUS))
     return True
Beispiel #3
0
 def is_valid(self, raise_exception):
     if not super(PublisherTask, self).is_valid(raise_exception):
         return False
     if (hasattr(self, u'user') and self.user is not None and
         (not isinstance(self.user, User) or not self.user.is_valid(False))):
         self._E(raise_exception, u'user is not a valid instance of user')
     # Remark: An integer is also considered as a valid user id to simplify the integration with EBU-io
     if hasattr(self, u'user_id') and not (valid_uuid(self.user_id, none_allowed=False) or valid_int(self.user_id)):
         self._E(raise_exception, u'user_id is not a valid uuid string neither a valid integer')
     if (hasattr(self, u'media') and self.media is not None and
         (not isinstance(self.media, Media) or not self.media.is_valid(False))):
         self._E(raise_exception, u'media is not a valid instance of media')
     if hasattr(self, u'media_id') and not valid_uuid(self.media_id, none_allowed=False):
         self._E(raise_exception, u'media_id is not a valid uuid string')
     # FIXME check publish_uri
     if not valid_uuid(self.revoke_task_id, none_allowed=True):
         self._E(raise_exception, u'revoke_task_id is not a valid uuid string')
     # FIXME check send_email
     return True