2017 © Pedro Peláez
 

cakephp-plugin files

Files for NetCommons Plugin

image

netcommons/files

Files for NetCommons Plugin

  • Saturday, July 28, 2018
  • by NetCommons
  • Repository
  • 12 Watchers
  • 1 Stars
  • 52,715 Installations
  • PHP
  • 17 Dependents
  • 0 Suggesters
  • 5 Forks
  • 17 Open issues
  • 17 Versions
  • 4 % Grown

The README.md

Files

Tests Status Coverage Status Stable Version, (*1)

AttachmentBehavior

ファイルアップロードをするフォームを表示するときはModel::recursiveを0以上にしてください。, (*2)

Model::recursive = -1の場合、Modelに添付されたアップロードファイルの情報が取得できないため、NetCommonsForm::uploadFile()は添付されたファイルが無いと判断してしまいます。, (*3)

認証キーと組み合わせ使う方法

認証キープラグインと組み合わせることで特定の認証キーを知っているユーザだけがファイルダウンロード可能にできます。, (*4)

リダイレクト型

ダウンロードアクションを実装しているコントローラで AuthorizationKeyComponent を使います, (*5)

public $components = array(
    'Files.Download',
    'AuthorizationKeys.AuthorizationKey' => [
        'operationType' => 'redirect',
        'targetAction' => 'download_pdf',
        'model' => 'BlogEntry',
    ],
);

ダウンロードアクション内で認証キーによるガードを設定します, (*6)

public function download_pdf() {
    // ここから元コンテンツを取得する処理
    $this->_prepare();
    $key = $this->params['pass'][1];

    $conditions = $this->BlogEntry->getConditions(
            Current::read('Block.id'),
            $this->Auth->user('id'),
            $this->_getPermission(),
            $this->_getCurrentDateTime()
    );

    $conditions['BlogEntry.key'] = $key;
    $options = array(
            'conditions' => $conditions,
            'recursive' => 1,
    );
    $blogEntry = $this->BlogEntry->find('first', $options);
    // ここまで元コンテンツを取得する処理

    // 認証キーによるガード
    $this->AuthorizationKey->guard('redirect', 'BlogEntry', $blogEntry);

    // ダウンロード実行
    if ($blogEntry) {
        return $this->Download->doDownload($blogEntry['BlogEntry']['id'], ['filed' => 'pdf']);
    } else {
        // 表示できない記事へのアクセスなら404
        throw new NotFoundException(__('Invalid blog entry'));
    }
}

ポップアップ型

ダウンロードアクションを実装しているコントローラで AuthorizationKeyComponent を使います, (*7)

public $components = array(
    'Files.Download',
    'AuthorizationKeys.AuthorizationKey' => [
        'operationType' => 'redirect',
        'targetAction' => 'download_pdf',
        'model' => 'BlogEntry',
    ],
);

ダウンロードアクション内でのガードをpopupにします, (*8)

    $this->AuthorizationKey->guard('popup', 'BlogEntry', $blogEntry);

ダウンロードリンクを書き換えてポップアップ画面が表示されるようにします。 認証キーポップアップはAngularJSのディレクティブ authorization-keys-popup-link として実装されています。, (*9)



PDF : Html->link('PDF', '#', ['authorization-keys-popup-link', 'url' => $this->NetCommonsHtml->url( [ 'action' => 'download_pdf', 'key' => $blogEntry['BlogEntry']['key'], 'pdf', ] ), 'frame-id' => Current::read('Frame.id') ] ); ?>

認証キーの詳細については認証キーのドキュメントも参照してください。, (*10)

AuthorizationKeys, (*11)

Validation

AttachmentBehaviorでUploadビヘイビアのバリデーションルールを利用できます。, (*12)

The Versions