芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/midiatech/lib/Widget/Video.php
. */ namespace Xibo\Widget; class Video extends ModuleWidget { /** @inheritdoc */ public function layoutDesignerJavaScript() { // We use the same javascript as the data set view designer return 'video-designer-javascript'; } /** @inheritdoc */ public function settingsForm() { return 'video-form-settings'; } /** @inheritdoc */ public function settings() { // Process any module settings you asked for. $this->module->settings['defaultMute'] = $this->getSanitizer()->getCheckbox('defaultMute'); if ($this->getModule()->defaultDuration !== 0) throw new \InvalidArgumentException(__('The Video Module must have a default duration of 0 to detect the end of videos.')); // Return an array of the processed settings. return $this->module->settings; } /** * Edit a Video Widget * @SWG\Put( * path="/playlist/widget/{widgetId}?video", * operationId="WidgetVideoEdit", * tags={"widget"}, * summary="Parameters for editing existing video on a layout", * description="For uploading new video files, please refer to POST /library documentation. * For assigning existing video file to a Playlist please see POST /playlist/library/assign/{playlistId} documentation. * This call will replace existing Widget object, all not supplied parameters will be set to default.", * @SWG\Parameter( * name="widgetId", * in="path", * description="The Widget ID", * type="integer", * required=true * ), * @SWG\Parameter( * name="name", * in="formData", * description="Edit only - Optional Widget Name", * type="string", * required=false * ), * @SWG\Parameter( * name="useDuration", * in="formData", * description="Edit Only - (0, 1) Select 1 only if you will provide duration parameter as well", * type="integer", * required=false * ), * @SWG\Parameter( * name="duration", * in="formData", * description="Edit Only - The Widget Duration", * type="integer", * required=false * ), * @SWG\Parameter( * name="scaleTypeId", * in="formData", * description="How should the video be scaled, available options: aspect, stretch", * type="string", * required=false * ), * @SWG\Parameter( * name="mute", * in="formData", * description="Edit only - Flag (0, 1) Should the video be muted?", * type="integer", * required=false * ), * @SWG\Parameter( * name="loop", * in="formData", * description="Edit only - Flag (0, 1) Should the video loop (only for duration > 0 )?", * type="integer", * required=false * ), * @SWG\Parameter( * name="enableStat", * in="formData", * description="The option (On, Off, Inherit) to enable the collection of Widget Proof of Play statistics", * type="string", * required=false * ), * @SWG\Parameter( * name="showFullScreen", * in="formData", * description="Edit only - Should the video expand over the top of existing content and show in full screen?", * type="integer", * required=false * ), * @SWG\Response( * response=201, * description="successful operation", * @SWG\Schema(ref="#/definitions/Widget"), * @SWG\Header( * header="Location", * description="Location of the new widget", * type="string" * ) * ) * ) * * @inheritdoc */ public function edit() { // Set the properties specific to this module $this->setUseDuration($this->getSanitizer()->getCheckbox('useDuration')); $this->setDuration($this->getSanitizer()->getInt('duration', $this->getDuration())); $this->setOption('name', $this->getSanitizer()->getString('name')); $this->setOption('enableStat', $this->getSanitizer()->getString('enableStat')); $this->setOption('scaleType', $this->getSanitizer()->getString('scaleTypeId', 'aspect')); $this->setOption('mute', $this->getSanitizer()->getCheckbox('mute')); $this->setOption('showFullScreen', $this->getSanitizer()->getCheckbox('showFullScreen')); // Only loop if the duration is > 0 if ($this->getUseDuration() == 0 || $this->getDuration() == 0) { $this->setDuration(0); $this->setOption('loop', 0); } else { $this->setOption('loop', $this->getSanitizer()->getCheckbox('loop')); } $this->saveWidget(); } /** @inheritdoc */ public function previewAsClient($width, $height, $scaleOverride = 0) { return $this->previewIcon(); } /** @inheritdoc */ public function determineDuration($fileName = null) { // If we don't have a file name, then we use the default duration of 0 (end-detect) if ($fileName === null) return 0; $this->getLog()->debug('Determine Duration from %s', $fileName); $info = new \getID3(); $file = $info->analyze($fileName); return intval($this->getSanitizer()->getDouble('playtime_seconds', 0, $file)); } /** @inheritdoc */ public function setDefaultWidgetOptions() { parent::setDefaultWidgetOptions(); $this->setOption('mute', $this->getSetting('defaultMute', 0)); } /** @inheritdoc */ public function getResource($displayId = 0) { $this->download(); } /** @inheritdoc */ public function isValid() { return self::$STATUS_VALID; } }