/**
	 * returns a cached file object or adds existing files to the cache
	 *
	 * @param int|FileTable[] $id
	 * @return FileTable|null
	 */
	static public function getFile( $id )
	{
		static $cache			=	array();

		if ( is_array( $id ) ) {
			foreach ( $id as $row ) {
				/** @var FileTable $row */
				$rowId			=	(int) $row->get( 'id' );

				if ( ! $rowId ) {
					continue;
				}

				$cache[$rowId]	=	$row;
			}

			return null;
		} elseif ( ! $id ) {
			return new FileTable();
		} elseif ( ! isset( $cache[$id] ) ) {
			$row				=	new FileTable();

			$row->load( (int) $id );

			$cache[$id]			=	$row;
		}

		return $cache[$id];
	}
Exemple #2
0
	/**
	 * render frontend event activity
	 *
	 * @param CB\Plugin\Activity\Table\ActivityTable $row
	 * @param string                                 $title
	 * @param string                                 $message
	 * @param CB\Plugin\Activity\Activity            $stream
	 * @param FileTable                              $file
	 * @param cbgjFilePlugin                         $plugin
	 * @return string
	 */
	static function showFileActivity( $row, &$title, &$message, $stream, $file, $plugin )
	{
		global $_CB_framework;

		$title					=	CBTxt::T( 'GROUP_FILE_ACTIVITY_TITLE', 'uploaded a file in [group]', array( '[group]' => '<strong><a href="' . $_CB_framework->pluginClassUrl( $plugin->_gjPlugin->element, true, array( 'action' => 'groups', 'func' => 'show', 'id' => (int) $file->group()->get( 'id' ) ) ) . '">' . htmlspecialchars( CBTxt::T( $file->group()->get( 'name' ) ) ) . '</a></strong>' ) );

		$return					=	'<div class="gjFileActivity">'
								.		'<table class="gjGroupFileRows table table-hover table-responsive">'
								.			'<thead>'
								.				'<tr>'
								.					'<th colspan="2">&nbsp;</th>'
								.					'<th style="width: 15%;" class="text-center">' . CBTxt::T( 'Type' ) . '</th>'
								.					'<th style="width: 15%;" class="text-left">' . CBTxt::T( 'Size' ) . '</th>'
								.				'</tr>'
								.			'</thead>'
								.			'<tbody>';

		$extension				=	null;
		$size					=	0;
		$name					=	( $file->get( 'title' ) ? htmlspecialchars( $file->get( 'title' ) ) : $file->name() );
		$item					=	$name;

		if ( $file->exists() ) {
			$downloadPath		=	$_CB_framework->pluginClassUrl( $plugin->element, true, array( 'action' => 'file', 'func' => 'download', 'id' => (int) $file->get( 'id' ) ), 'raw', 0, true );
			$extension			=	$file->extension();
			$size				=	$file->size();

			switch ( $extension ) {
				case 'txt':
				case 'pdf':
				case 'jpg':
				case 'jpeg':
				case 'png':
				case 'gif':
				case 'js':
				case 'css':
				case 'mp4':
				case 'mp3':
				case 'wav':
					$item		=	'<a href="' . $_CB_framework->pluginClassUrl( $plugin->element, true, array( 'action' => 'file', 'func' => 'show', 'id' => (int) $file->get( 'id' ) ), 'raw', 0, true ) . '" target="_blank">'
								.		$item
								.	'</a>';
					break;
				default:
					$item		=	'<a href="' . $downloadPath . '" target="_blank">'
								.		$item
								.	'</a>';
					break;
			}

			$download			=	'<a href="' . $downloadPath . '" target="_blank" title="' . htmlspecialchars( CBTxt::T( 'Click to Download' ) ) . '" class="gjGroupDownloadIcon btn btn-xs btn-default">'
								.		'<span class="fa fa-download"></span>'
								.	'</a>';
		} else {
			$download			=	'<button type="button" class="gjButton gjButtonDownloadFile btn btn-xs btn-default disabled">'
								.		'<span class="fa fa-download"></span>'
								.	'</button>';
		}

		if ( $file->get( 'description' ) ) {
			$item				.=	' ' . cbTooltip( 1, $file->get( 'description' ), $name, 400, null, '<span class="fa fa-info-circle text-muted"></span>' );
		}

		$return					.=				'<tr>'
								.					'<td style="width: 1%;" class="text-center">' . $download . '</td>'
								.					'<td style="width: 45%;" class="gjGroupFileItem text-left">' . $item . '</td>'
								.					'<td style="width: 15%;" class="text-center"><span class="gjGroupFileTypeIcon fa fa-' . $file->icon() . '" title="' . htmlspecialchars( ( $extension ? strtoupper( $extension ) : CBTxt::T( 'Unknown' ) ) ) . '"></span></td>'
								.					'<td style="width: 15%;" class="text-left">' . $size . '</td>'
								.				'</tr>'
								.			'</tbody>'
								.		'</table>'
								.	'</div>';

		return $return;
	}
Exemple #3
0
	/**
	 * render frontend file edit
	 *
	 * @param FileTable              $row
	 * @param array                  $input
	 * @param GroupTable             $group
	 * @param UserTable              $user
	 * @param CBplug_cbgroupjivefile $plugin
	 * @return string
	 */
	static function showFileEdit( $row, $input, $group, $user, $plugin )
	{
		global $_CB_framework, $_PLUGINS;

		$pageTitle					=	( $row->get( 'id' ) ? CBTxt::T( 'Edit File' ) : CBTxt::T( 'New File' ) );

		$_CB_framework->setPageTitle( $pageTitle );

		cbValidator::loadValidation();
		initToolTip();

		$isModerator				=	CBGroupJive::isModerator( $user->get( 'id' ) );
		$canModerate				=	( CBGroupJive::getGroupStatus( $user, $group ) >= 2 );
		$return						=	null;

		$_PLUGINS->trigger( 'gj_onBeforeDisplayFileEdit', array( &$return, &$row, &$input, $group, $user ) );

		$return						.=	'<div class="gjFileEdit">'
									.		'<form action="' . $_CB_framework->pluginClassUrl( $plugin->element, true, array( 'action' => 'file', 'func' => 'save', 'id' => (int) $row->get( 'id' ) ) ) . '" method="post" enctype="multipart/form-data" name="gjFileEditForm" id="gjFileEditForm" class="cb_form gjFileEditForm form-auto cbValidation">'
									.			( $pageTitle ? '<div class="gjFileEditTitle page-header"><h3>' . $pageTitle . '</h3></div>' : null );

		if ( $isModerator || $canModerate || ( $row->get( 'id' ) && ( $row->get( 'published' ) != -1 ) ) || ( $group->params()->get( 'file', 1 ) != 2 ) ) {
			$return					.=			'<div class="cbft_select cbtt_select form-group cb_form_line clearfix">'
									.				'<label for="published" class="col-sm-3 control-label">' . CBTxt::T( 'Published' ) . '</label>'
									.				'<div class="cb_field col-sm-9">'
									.					$input['published']
									.					getFieldIcons( null, 0, null, CBTxt::T( 'Select publish state of this file. Unpublished files will not be visible to the public.' ) )
									.				'</div>'
									.			'</div>';
		}

		$return						.=			'<div class="cbft_text cbtt_input form-group cb_form_line clearfix">'
									.				'<label for="title" class="col-sm-3 control-label">' . CBTxt::T( 'Title' ) . '</label>'
									.				'<div class="cb_field col-sm-9">'
									.					$input['title']
									.					getFieldIcons( null, 0, null, CBTxt::T( 'Optionally input a file title to display instead of filename.' ) )
									.				'</div>'
									.			'</div>';

		if ( $row->get( 'id' ) && $row->exists() ) {
			$return					.=			'<div class="cbft_delimiter form-group cb_form_line clearfix">'
									.				'<div class="cb_field col-sm-offset-3 col-sm-9">'
									.					'<a href="' . $_CB_framework->pluginClassUrl( $plugin->element, true, array( 'action' => 'file', 'func' => 'download', 'id' => (int) $row->get( 'id' ) ), 'raw', 0, true ) . '" target="_blank">'
									.						$row->name()
									.					'</a>'
									.					' (' . $row->size() . ')'
									.				'</div>'
									.			'</div>';
		}

		$return						.=			'<div class="cbft_file cbtt_input form-group cb_form_line clearfix">'
									.				'<label for="file" class="col-sm-3 control-label">' . CBTxt::T( 'File' ) . '</label>'
									.				'<div class="cb_field col-sm-9">'
									.					$input['file']
									.					getFieldIcons( null, ( ! $row->get( 'id' ) ? 1 : 0 ), null, CBTxt::T( 'Select the file to upload.' ) )
									.					( $input['file_limits'] ? '<div class="help-block">' . implode( ' ', $input['file_limits'] ) . '</div>' : null )
									.				'</div>'
									.			'</div>'
									.			'<div class="cbft_textarea cbtt_textarea form-group cb_form_line clearfix">'
									.				'<label for="description" class="col-sm-3 control-label">' . CBTxt::T( 'Description' ) . '</label>'
									.				'<div class="cb_field col-sm-9">'
									.					$input['description']
									.					getFieldIcons( null, 0, null, CBTxt::T( 'Optionally input a file description.' ) )
									.				'</div>'
									.			'</div>';

		if ( $isModerator ) {
			$return					.=			'<div class="cbft_text cbtt_input form-group cb_form_line clearfix">'
									.				'<label for="user_id" class="col-sm-3 control-label">' . CBTxt::T( 'Owner' ) . '</label>'
									.				'<div class="cb_field col-sm-9">'
									.					$input['user_id']
									.					getFieldIcons( null, 1, null, CBTxt::T( 'Input the file owner id. File owner determines the creator of the file specified as User ID.' ) )
									.				'</div>'
									.			'</div>';
		}

		if ( ( ! $isModerator ) && $plugin->params->get( 'groups_file_captcha', 0 ) ) {
			$_PLUGINS->loadPluginGroup( 'user' );

			$captcha				=	$_PLUGINS->trigger( 'onGetCaptchaHtmlElements', array( false ) );

			if ( ! empty( $captcha ) ) {
				$captcha			=	$captcha[0];

				$return				.=			'<div class="form-group cb_form_line clearfix">'
									.				'<label class="col-sm-3 control-label">' . CBTxt::T( 'Captcha' ) . '</label>'
									.				'<div class="cb_field col-sm-9">'
									.					( isset( $captcha[0] ) ? $captcha[0] : null )
									.				'</div>'
									.			'</div>'
									.			'<div class="form-group cb_form_line clearfix">'
									.				'<div class="cb_field col-sm-offset-3 col-sm-9">'
									.					str_replace( 'inputbox', 'form-control', ( isset( $captcha[1] ) ? $captcha[1] : null ) )
									.					getFieldIcons( null, 1, null )
									.				'</div>'
									.			'</div>';
			}
		}

		$return						.=			'<div class="form-group cb_form_line clearfix cbtwolines">'
									.				'<div class="col-sm-offset-3 col-sm-9">'
									.					'<input type="submit" value="' . htmlspecialchars( ( $row->get( 'id' ) ? CBTxt::T( 'Update File' ) : CBTxt::T( 'Upload File' ) ) ) . '" class="gjButton gjButtonSubmit btn btn-primary" ' . cbValidator::getSubmitBtnHtmlAttributes() . ' />'
									.					' <input type="button" value="' . htmlspecialchars( CBTxt::T( 'Cancel' ) ) . '" class="gjButton gjButtonCancel btn btn-default" onclick="cbjQuery.cbconfirm( \'' . addslashes( CBTxt::T( 'Are you sure you want to cancel? All unsaved data will be lost!' ) ) . '\' ).done( function() { window.location.href = \'' . $_CB_framework->pluginClassUrl( $plugin->_gjPlugin->element, false, array( 'action' => 'groups', 'func' => 'show', 'id' => (int) $group->get( 'id' ) ) ) . '\'; })" />'
									.				'</div>'
									.			'</div>'
									.			( ! $row->get( 'id' ) ? '<input type="hidden" id="group" name="group" value="' . (int) $group->get( 'id' ) . '" />' : null )
									.			cbGetSpoofInputTag( 'plugin' )
									.		'</form>'
									.	'</div>';

		$_PLUGINS->trigger( 'gj_onAfterDisplayFileEdit', array( &$return, $row, $input, $group, $user ) );

		$_CB_framework->setMenuMeta();

		echo $return;
	}