PHP code example of satthi / contents-file
1. Go to this page and download the library: Download satthi/contents-file library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
satthi / contents-file example snippets
Configure::write('ContentsFile.Setting', [
'type' => 'normal',
// trueでファイル名がランダム文字列に
'randomFile' => true,
// trueで拡張子付きでファイルを保存する。loaderを通さずに使用する場合は設定しておいたほうが良い。
'ext' => true,
'Normal' => [
'tmpDir' => TMP . 'cache/files/',
'fileDir' => ROOT . '/files/',
],
]);
public function bootstrap()
{
$this->addPlugin('Migrations');
// 追加
$this->addPlugin('ContentsFile', ['routes' => true]);
}
Configure::write('ContentsFile.Setting', [
'type' => 's3',
// trueでファイル名がランダム文字列に
'randomFile' => true,
// trueで拡張子付きでファイルを保存する。awsの場合は別途ヘッダーを吐き出すため設定する必要性はあまり高くない。
'ext' => true,
'S3' => [
'key' => 'KEY',
'secret' => 'SECRET', // IAM Roleを利用する場合、省略可能
'bucket' => 'BUCKET_NAME', // IAM Roleを利用する場合、省略可能
'tmpDir' => 'tmp',
'fileDir' => 'file',
'workingDir' => TMP,
// ファイルのURLをloaderを通さず直接awsに接続したい場合に設定
/*
//s3-ap-northeast-1.amazonaws.com/BUCKET_NAME でも
//BUCKET_NAME.s3-website-ap-northeast-1.amazonaws.com でも
//指定の文字列.cloudfront.net でも使用したいものを設定
*/
'static_domain' => '//s3-ap-northeast-1.amazonaws.com/BUCKET_NAME',
// minio 使用時にendpointを使用
//'endpoint' => 'http://{{ip_address}}:9000',
]
]);
public function bootstrap()
{
// 追加
$this->addPlugin('ContentsFile', ['routes' => true]);
}
namespace App\Model\Table;
use Cake\ORM\Table;
class TopicsTable extends Table
{
public function initialize(array $config)
{
parent::initialize($config);
$this->setTable('topics');
$this->setPrimaryKey('id');
// 追加項目
$this->addBehavior('ContentsFile.ContentsFile');
$this->addBehavior('Timestamp');
}
public function validationDefault(Validator $validator)
{
// providerを読み込み
$validator->setProvider('contents_file', 'ContentsFile\Validation\ContentsFileValidation');
$validator
->notEmpty('img', 'ファイルを添付してください' , function ($context){
// fileValidationWhenメソッドを追加しました。
return $this->fileValidationWhen($context, 'img');
})
->add('img', 'uploadMaxSizeCheck', [
'rule' => 'uploadMaxSizeCheck',
'provider' => 'contents_file',
'message' => 'ファイルアップロード容量オーバーです',
'last' => true,
])
->add('img', 'checkMaxSize', [
'rule' => ['checkMaxSize' , '1M'],
'provider' => 'contents_file',
'message' => 'ファイルアップロード容量オーバーです',
'last' => true,
])
->add('img', 'extension', [
'rule' => ['extension', ['jpg', 'jpeg', 'gif', 'png',]],
'message' => '画像のみを添付して下さい',
'last' => true,
])
;
return $validator;
}
}
namespace App\Model\Entity;
use Cake\ORM\Entity;
// 追加項目
use ContentsFile\Model\Entity\ContentsFileTrait;
class Topic extends Entity
{
// 追加項目
use ContentsFileTrait;
// 追加項目
public $contentsFileConfig = [
'fields' => [
// 使用したいフィールドを設定
'file' => [
'resize' => false,
],
'img' => [
'resize' => [
// 画像のリサイズが必要な場合
['width' => 300],
['width' => 300, 'height' => 400],
// typeには
// normal(default) 長い方を基準に画像をリサイズする
// normal_s 短い方を基準に画像をリサイズする
// scoop 短い方を基準に画像をリサイズし、中央でくりぬきする
['width' => 300, 'height' => 400, 'type' => 'scoop'],
],
],
],
];
protected array $_accessible = [
'title' => true,
// 初期状態に追記
'file' => true,
'contents_file_file' => true,
'delete_file' => true,
'img' => true,
'contents_file_img' => true,
'delete_img' => true,
];
//&getメソッドをoverride
public function &get(string $property): mixed
{
$value = parent::get($property);
$value = $this->getContentsFile($property, $value);
return $value;
}
//setメソッドをoverride
public function set(array|string $field, mixed $value = null, array $options = []){
parent::set($field, $value , $options);
$this->setContentsFile();
return $this;
}
}
namespace App\Controller;
use Cake\Event\EventInterface;
use App\Controller\AppController;
class TopicsController extends AppController
{
public function beforeFilter(EventInterface $event)
{
parent::beforeFilter($event);
$this->viewBuilder()->setHelpers(['ContentsFile.ContentsFile']);
}
}
<?= $this->Form->create($topic, ['type' => 'file'])
// linkでファイルのリンク作成