123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\admin\controller\system;
- use app\admin\model\system\SystemFile as SystemFileModel;
- use app\admin\controller\AuthController;
- use service\FormBuilder as Form;
- /**
- * 文件校验控制器
- * Class SystemFile
- * @package app\admin\controller\system
- *
- */
- class SystemFile extends AuthController
- {
- public function index()
- {
- $app = $this->getDir('./application');
- $extend = $this->getDir('./extend');
- $public = $this->getDir('./public');
- $arr = array();
- $arr = array_merge($app, $extend);
- $arr = array_merge($arr, $public);
- $fileAll = array();//本地文件
- $cha = array();//不同的文件
- foreach ($arr as $k => $v) {
- $fp = fopen($v, 'r');
- if (filesize($v)) $ct = fread($fp, filesize($v));
- else $ct = null;
- fclose($fp);
- $cthash = md5($ct);
- $update_time = stat($v);
- $fileAll[$k]['cthash'] = $cthash;
- $fileAll[$k]['filename'] = $v;
- $fileAll[$k]['atime'] = $update_time['atime'];
- $fileAll[$k]['mtime'] = $update_time['mtime'];
- $fileAll[$k]['ctime'] = $update_time['ctime'];
- }
- $file = SystemFileModel::all(function ($query) {
- $query->order('atime', 'desc');
- })->toArray();//数据库中的文件
- if (empty($file)) {
- $data_num = array_chunk($fileAll, 10);
- SystemFileModel::beginTrans();
- $res = true;
- foreach ($data_num as $k => $v) {
- $res = $res && SystemFileModel::insertAll($v);
- }
- SystemFileModel::checkTrans($res);
- if ($res) {
- $cha = array();//不同的文件
- } else {
- $cha = $fileAll;
- }
- } else {
- $cha = array();//差异文件
- foreach ($file as $k => $v) {
- foreach ($fileAll as $ko => $vo) {
- if ($v['filename'] == $vo['filename']) {
- if ($v['cthash'] != $vo['cthash']) {
- $cha[$k]['filename'] = $v['filename'];
- $cha[$k]['cthash'] = $v['cthash'];
- $cha[$k]['atime'] = $v['atime'];
- $cha[$k]['mtime'] = $v['mtime'];
- $cha[$k]['ctime'] = $v['ctime'];
- $cha[$k]['type'] = '已修改';
- }
- unset($fileAll[$ko]);
- unset($file[$k]);
- }
- }
- }
- foreach ($file as $k => $v) {
- $cha[$k]['filename'] = $v['filename'];
- $cha[$k]['cthash'] = $v['cthash'];
- $cha[$k]['atime'] = $v['atime'];
- $cha[$k]['mtime'] = $v['mtime'];
- $cha[$k]['ctime'] = $v['ctime'];
- $cha[$k]['type'] = '已删除';
- }
- foreach ($fileAll as $k => $v) {
- $cha[$k]['filename'] = $v['filename'];
- $cha[$k]['cthash'] = $v['cthash'];
- $cha[$k]['atime'] = $v['atime'];
- $cha[$k]['mtime'] = $v['mtime'];
- $cha[$k]['ctime'] = $v['ctime'];
- $cha[$k]['type'] = '新增的';
- }
- }
- $this->assign('cha', $cha);
- return $this->fetch();
- }
- public function filelist()
- {
- $app = $this->getDir('./application');
- print_r($app);
- $extend = $this->getDir('./extend');
- $public = $this->getDir('./public');
- $arr = array();
- $arr = array_merge($app, $extend);
- $arr = array_merge($arr, $public);
- $fileAll = array();//本地文件
- foreach ($arr as $k => $v) {
- $fp = fopen($v, 'r');
- if (filesize($v)) $ct = fread($fp, filesize($v));
- else $ct = null;
- fclose($fp);
- $cthash = md5($ct);
- $update_time = stat($v);
- $fileAll[$k]['cthash'] = $cthash;
- $fileAll[$k]['filename'] = $v;
- $fileAll[$k]['atime'] = $update_time['atime'];
- $fileAll[$k]['mtime'] = $update_time['mtime'];
- $fileAll[$k]['ctime'] = $update_time['ctime'];
- }
- dump($fileAll);
- }
- /**
- * 获取文件夹中的文件 不包括子文件
- * @param $dir
- * @return array
- */
- public function getNextDir()
- {
- $dir = './';
- $list = scandir($dir);
- $dirlist = array();
- $filelist = array();
- foreach ($list as $key => $v) {
- if ($v != '.' && $v != '..') {
- if (is_dir($dir . '/' . $v)) {
- $dirlist[$key]['name'] = $v;
- $dirlist[$key]['type'] = 'dir';
- }
- if (is_file($dir . '/' . $v)) {
- $filelist[$key]['name'] = $v;
- $filelist[$key]['type'] = 'file';
- }
- }
- }
- $filesarr = array_merge($dirlist, $filelist);
- print_r($filesarr);
- }
- /**
- * 获取文件夹中的文件 包括子文件 不能直接用 直接使用 $this->getDir()方法 P156
- * @param $path
- * @param $data
- */
- public function searchDir($path, &$data)
- {
- if (is_dir($path) && !strpos($path, 'uploads')) {
- $dp = dir($path);
- while ($file = $dp->read()) {
- if ($file != '.' && $file != '..') {
- $this->searchDir($path . '/' . $file, $data);
- }
- }
- $dp->close();
- }
- if (is_file($path)) {
- $data[] = $path;
- }
- }
- /**
- * 获取文件夹中的文件 包括子文件
- * @param $dir
- * @return array
- */
- public function getDir($dir)
- {
- $data = array();
- $this->searchDir($dir, $data);
- return $data;
- }
- //测试
- public function ceshi()
- {
- //创建form
- $form = Form::create('/save.php', [
- Form::input('goods_name', '商品名称')
- , Form::input('goods_name1', 'password')->type('password')
- , Form::input('goods_name2', 'textarea')->type('textarea')
- , Form::input('goods_name3', 'email')->type('email')
- , Form::input('goods_name4', 'date')->type('date')
- , Form::city('address', 'cityArea',
- '陕西省', '西安市'
- )
- , Form::dateRange('limit_time', 'dateRange',
- strtotime('- 10 day'),
- time()
- )
- , Form::dateTime('add_time', 'dateTime')
- , Form::color('color', 'color', '#ff0000')
- , Form::checkbox('checkbox', 'checkbox', [1])->options([['value' => 1, 'label' => '白色'], ['value' => 2, 'label' => '红色'], ['value' => 31, 'label' => '黑色']])
- , Form::date('riqi', 'date', '2018-03-1')
- , Form::dateTimeRange('dateTimeRange', '区间时间段')
- , Form::year('year', 'year')
- , Form::month('month', 'month')
- , Form::frame('frame', 'frame', '/admin/system.system_attachment/index.html?fodder=frame')
- , Form::frameInputs('frameInputs', 'frameInputs', '/admin/system.system_attachment/index.html?fodder=frameInputs')
- , Form::frameFiles('month1', 'frameFiles', '/admin/system.system_attachment/index.html?fodder=month1')
- , Form::frameImages('fodder1', 'frameImages', '/admin/system.system_attachment/index.html?fodder=fodder1')->maxLength(3)->width('800px')->height('400px')
- , Form::frameImages('fodder11', 'frameImages', '/admin/system.system_attachment/index.html?fodder=fodder11')->icon('images')
- , Form::frameInputOne('month3', 'frameInputOne', '/admin/system.system_attachment/index.html?fodder=month3')->icon('ionic')
- , Form::frameFileOne('month4', 'frameFileOne', '/admin/system.system_attachment/index.html?fodder=month4')
- , Form::frameImageOne('month5', 'frameImageOne', '/admin/system.system_attachment/index.html?fodder=month5')->icon('image')
- , Form::hidden('month6', 'hidden')
- , Form::number('month7', 'number')
- // ,Form::input input输入框,其他type: text类型Form::text,password类型Form::password,textarea类型Form::textarea,url类型Form::url,email类型Form::email,date类型Form::idate
- , Form::radio('month8', 'radio')->options([['value' => 1, 'label' => '白色'], ['value' => 2, 'label' => '红色'], ['value' => 31, 'label' => '黑色']])
- , Form::rate('month9', 'rate')
- , Form::select('month10', 'select')->options([['value' => 1, 'label' => '白色'], ['value' => 2, 'label' => '红色'], ['value' => 31, 'label' => '黑色']])
- , Form::selectMultiple('month11', 'selectMultiple')
- , Form::selectOne('month12', 'selectOne')
- , Form::slider('month13', 'slider', 2)
- , Form::sliderRange('month23', 'sliderRange', 2, 13)
- , Form::switches('month14', '区间时间段')
- , Form::timePicker('month15', '区间时间段')
- , Form::time('month16', '区间时间段')
- , Form::timeRange('month17', '区间时间段')
- // ,Form::upload('month','区间时间段')
- // ,Form::uploadImages('month','区间时间段')
- // ,Form::uploadFiles('month','区间时间段')
- // ,Form::uploadImageOne('month','区间时间段')
- // ,Form::uploadFileOne('month','区间时间段')
- ]);
- $html = $form->setMethod('get')->setTitle('编辑商品')->view();
- echo $html;
- }
- }
|