目录结构调整
This commit is contained in:
@@ -1,226 +0,0 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2011 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: luofei614 <weibo.com/luofei614>
|
||||
// +----------------------------------------------------------------------
|
||||
namespace com;
|
||||
/**
|
||||
* 权限认证类
|
||||
* 功能特性:
|
||||
* 1,是对规则进行认证,不是对节点进行认证。用户可以把节点当作规则名称实现对节点进行认证。
|
||||
* $auth=new Auth(); $auth->check('规则名称','用户id')
|
||||
* 2,可以同时对多条规则进行认证,并设置多条规则的关系(or或者and)
|
||||
* $auth=new Auth(); $auth->check('规则1,规则2','用户id','and')
|
||||
* 第三个参数为and时表示,用户需要同时具有规则1和规则2的权限。 当第三个参数为or时,表示用户值需要具备其中一个条件即可。默认为or
|
||||
* 3,一个用户可以属于多个用户组(think_auth_group_access表 定义了用户所属用户组)。我们需要设置每个用户组拥有哪些规则(think_auth_group 定义了用户组权限)
|
||||
*
|
||||
* 4,支持规则表达式。
|
||||
* 在think_auth_rule 表中定义一条规则时,如果type为1, condition字段就可以定义规则表达式。 如定义{score}>5 and {score}<100 表示用户的分数在5-100之间时这条规则才会通过。
|
||||
*/
|
||||
|
||||
//数据库
|
||||
/*
|
||||
-- ----------------------------
|
||||
-- think_auth_rule,规则表,
|
||||
-- id:主键,name:规则唯一标识, title:规则中文名称 status 状态:为1正常,为0禁用,condition:规则表达式,为空表示存在就验证,不为空表示按照条件验证
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `think_auth_rule`;
|
||||
CREATE TABLE `think_auth_rule` (
|
||||
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` char(80) NOT NULL DEFAULT '',
|
||||
`title` char(20) NOT NULL DEFAULT '',
|
||||
`type` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`status` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`condition` char(100) NOT NULL DEFAULT '', # 规则附件条件,满足附加条件的规则,才认为是有效的规则
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `name` (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
-- ----------------------------
|
||||
-- think_auth_group 用户组表,
|
||||
-- id:主键, title:用户组中文名称, rules:用户组拥有的规则id, 多个规则","隔开,status 状态:为1正常,为0禁用
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `think_auth_group`;
|
||||
CREATE TABLE `think_auth_group` (
|
||||
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`title` char(100) NOT NULL DEFAULT '',
|
||||
`status` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`rules` char(80) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
-- ----------------------------
|
||||
-- think_auth_group_access 用户组明细表
|
||||
-- uid:用户id,group_id:用户组id
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `think_auth_group_access`;
|
||||
CREATE TABLE `think_auth_group_access` (
|
||||
`uid` mediumint(8) unsigned NOT NULL,
|
||||
`group_id` mediumint(8) unsigned NOT NULL,
|
||||
UNIQUE KEY `uid_group_id` (`uid`,`group_id`),
|
||||
KEY `uid` (`uid`),
|
||||
KEY `group_id` (`group_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
*/
|
||||
|
||||
class Auth{
|
||||
|
||||
//默认配置
|
||||
protected $_config = array(
|
||||
'auth_on' => true, // 认证开关
|
||||
'auth_type' => 1, // 认证方式,1为实时认证;2为登录认证。
|
||||
'auth_group' => 'auth_group', // 用户组数据表名
|
||||
'auth_group_access' => 'auth_group_access', // 用户-用户组关系表
|
||||
'auth_rule' => 'auth_rule', // 权限规则表
|
||||
'auth_user' => 'member' // 用户信息表
|
||||
);
|
||||
|
||||
public function __construct() {
|
||||
if (config('auth_config')) {
|
||||
//可设置配置项 auth_config, 此配置项为数组。
|
||||
$this->_config = array_merge($this->_config, config('auth_config'));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 检查权限
|
||||
* @param name string|array 需要验证的规则列表,支持逗号分隔的权限规则或索引数组
|
||||
* @param uid int 认证用户的id
|
||||
* @param string mode 执行check的模式
|
||||
* @param relation string 如果为 'or' 表示满足任一条规则即通过验证;如果为 'and'则表示需满足所有规则才能通过验证
|
||||
* @return boolean 通过验证返回true;失败返回false
|
||||
*/
|
||||
public function check($name, $uid, $type=1, $mode='url', $relation='or') {
|
||||
if (!$this->_config['auth_on'])
|
||||
return true;
|
||||
$authList = $this->getAuthList($uid,$type); //获取用户需要验证的所有有效规则列表
|
||||
if (is_string($name)) {
|
||||
$name = strtolower($name);
|
||||
if (strpos($name, ',') !== false) {
|
||||
$name = explode(',', $name);
|
||||
} else {
|
||||
$name = array($name);
|
||||
}
|
||||
}
|
||||
$list = array(); //保存验证通过的规则名
|
||||
if ($mode=='url') {
|
||||
$REQUEST = unserialize( strtolower(serialize($_REQUEST)) );
|
||||
}
|
||||
foreach ( $authList as $auth ) {
|
||||
$query = preg_replace('/^.+\?/U','',$auth);
|
||||
if ($mode=='url' && $query!=$auth ) {
|
||||
parse_str($query,$param); //解析规则中的param
|
||||
$intersect = array_intersect_assoc($REQUEST,$param);
|
||||
$auth = preg_replace('/\?.*$/U','',$auth);
|
||||
if ( in_array($auth,$name) && $intersect==$param ) { //如果节点相符且url参数满足
|
||||
$list[] = $auth ;
|
||||
}
|
||||
}else if (in_array($auth , $name)){
|
||||
$list[] = $auth ;
|
||||
}
|
||||
}
|
||||
if ($relation == 'or' and !empty($list)) {
|
||||
return true;
|
||||
}
|
||||
$diff = array_diff($name, $list);
|
||||
if ($relation == 'and' and empty($diff)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据用户id获取用户组,返回值为数组
|
||||
* @param uid int 用户id
|
||||
* @return array 用户所属的用户组 array(
|
||||
* array('uid'=>'用户id','group_id'=>'用户组id','title'=>'用户组名称','rules'=>'用户组拥有的规则id,多个,号隔开'),
|
||||
* ...)
|
||||
*/
|
||||
public function getGroups($uid) {
|
||||
static $groups = array();
|
||||
if (isset($groups[$uid]))
|
||||
return $groups[$uid];
|
||||
$user_groups = \think\Db::name($this->_config['auth_group_access'])
|
||||
->alias('a')
|
||||
->join($this->_config['auth_group']." g", "g.id=a.group_id")
|
||||
->where("a.uid='$uid' and g.status='1'")
|
||||
->field('uid,group_id,title,rules')->select();
|
||||
$groups[$uid] = $user_groups ? $user_groups : array();
|
||||
return $groups[$uid];
|
||||
}
|
||||
|
||||
/**
|
||||
* 获得权限列表
|
||||
* @param integer $uid 用户id
|
||||
* @param integer $type
|
||||
*/
|
||||
protected function getAuthList($uid,$type) {
|
||||
static $_authList = array(); //保存用户验证通过的权限列表
|
||||
$t = implode(',',(array)$type);
|
||||
if (isset($_authList[$uid.$t])) {
|
||||
return $_authList[$uid.$t];
|
||||
}
|
||||
if( $this->_config['auth_type']==2 && isset($_SESSION['_auth_list_'.$uid.$t])){
|
||||
return $_SESSION['_auth_list_'.$uid.$t];
|
||||
}
|
||||
|
||||
//读取用户所属用户组
|
||||
$groups = $this->getGroups($uid);
|
||||
$ids = array();//保存用户所属用户组设置的所有权限规则id
|
||||
foreach ($groups as $g) {
|
||||
$ids = array_merge($ids, explode(',', trim($g['rules'], ',')));
|
||||
}
|
||||
$ids = array_unique($ids);
|
||||
if (empty($ids)) {
|
||||
$_authList[$uid.$t] = array();
|
||||
return array();
|
||||
}
|
||||
|
||||
$map=array(
|
||||
'id'=>array('in',$ids),
|
||||
'type'=>$type,
|
||||
'status'=>1,
|
||||
);
|
||||
//读取用户组所有权限规则
|
||||
$rules = \think\Db::name($this->_config['auth_rule'])->where($map)->field('condition,name')->select();
|
||||
|
||||
//循环规则,判断结果。
|
||||
$authList = array(); //
|
||||
foreach ($rules as $rule) {
|
||||
if (!empty($rule['condition'])) { //根据condition进行验证
|
||||
$user = $this->getUserInfo($uid);//获取用户信息,一维数组
|
||||
|
||||
$command = preg_replace('/\{(\w*?)\}/', '$user[\'\\1\']', $rule['condition']);
|
||||
//dump($command);//debug
|
||||
@(eval('$condition=(' . $command . ');'));
|
||||
if ($condition) {
|
||||
$authList[] = strtolower($rule['name']);
|
||||
}
|
||||
} else {
|
||||
//只要存在就记录
|
||||
$authList[] = strtolower($rule['name']);
|
||||
}
|
||||
}
|
||||
$_authList[$uid.$t] = $authList;
|
||||
if($this->_config['auth_type']==2){
|
||||
//规则列表结果保存到session
|
||||
$_SESSION['_auth_list_'.$uid.$t]=$authList;
|
||||
}
|
||||
return array_unique($authList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获得用户资料,根据自己的情况读取数据库
|
||||
*/
|
||||
protected function getUserInfo($uid) {
|
||||
static $userinfo=array();
|
||||
if(!isset($userinfo[$uid])){
|
||||
$userinfo[$uid]=\think\Db::name($this->_config['auth_user'])->where(array('uid'=>$uid))->find();
|
||||
}
|
||||
return $userinfo[$uid];
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,212 +0,0 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006-2012 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://www.zjzit.cn>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace com;
|
||||
use think\Db;
|
||||
|
||||
//数据导出模型
|
||||
class Database{
|
||||
/**
|
||||
* 文件指针
|
||||
* @var resource
|
||||
*/
|
||||
private $fp;
|
||||
|
||||
/**
|
||||
* 备份文件信息 part - 卷号,name - 文件名
|
||||
* @var array
|
||||
*/
|
||||
private $file;
|
||||
|
||||
/**
|
||||
* 当前打开文件大小
|
||||
* @var integer
|
||||
*/
|
||||
private $size = 0;
|
||||
|
||||
/**
|
||||
* 备份配置
|
||||
* @var integer
|
||||
*/
|
||||
private $config;
|
||||
|
||||
/**
|
||||
* 数据库备份构造方法
|
||||
* @param array $file 备份或还原的文件信息
|
||||
* @param array $config 备份配置信息
|
||||
* @param string $type 执行类型,export - 备份数据, import - 还原数据
|
||||
*/
|
||||
public function __construct($file, $config, $type = 'export'){
|
||||
$this->file = $file;
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
/**
|
||||
* 打开一个卷,用于写入数据
|
||||
* @param integer $size 写入数据的大小
|
||||
*/
|
||||
private function open($size){
|
||||
if($this->fp){
|
||||
$this->size += $size;
|
||||
if($this->size > $this->config['part']){
|
||||
$this->config['compress'] ? @gzclose($this->fp) : @fclose($this->fp);
|
||||
$this->fp = null;
|
||||
$this->file['part']++;
|
||||
session('backup_file', $this->file);
|
||||
$this->create();
|
||||
}
|
||||
} else {
|
||||
$backuppath = $this->config['path'];
|
||||
$filename = "{$backuppath}{$this->file['name']}-{$this->file['part']}.sql";
|
||||
if($this->config['compress']){
|
||||
$filename = "{$filename}.gz";
|
||||
$this->fp = @gzopen($filename, "a{$this->config['level']}");
|
||||
} else {
|
||||
$this->fp = @fopen($filename, 'a');
|
||||
}
|
||||
$this->size = filesize($filename) + $size;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 写入初始数据
|
||||
* @return boolean true - 写入成功,false - 写入失败
|
||||
*/
|
||||
public function create(){
|
||||
$sql = "-- -----------------------------\n";
|
||||
$sql .= "-- SentCMS MySQL Data Transfer \n";
|
||||
$sql .= "-- \n";
|
||||
$sql .= "-- Host : " . config('database.hostname') . "\n";
|
||||
$sql .= "-- Port : " . config('database.hostport') . "\n";
|
||||
$sql .= "-- Database : " . config('database.database') . "\n";
|
||||
$sql .= "-- \n";
|
||||
$sql .= "-- Part : #{$this->file['part']}\n";
|
||||
$sql .= "-- Date : " . date("Y-m-d H:i:s") . "\n";
|
||||
$sql .= "-- -----------------------------\n\n";
|
||||
$sql .= "SET FOREIGN_KEY_CHECKS = 0;\n\n";
|
||||
return $this->write($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* 写入SQL语句
|
||||
* @param string $sql 要写入的SQL语句
|
||||
* @return boolean true - 写入成功,false - 写入失败!
|
||||
*/
|
||||
private function write($sql){
|
||||
$size = strlen($sql);
|
||||
|
||||
//由于压缩原因,无法计算出压缩后的长度,这里假设压缩率为50%,
|
||||
//一般情况压缩率都会高于50%;
|
||||
$size = $this->config['compress'] ? $size / 2 : $size;
|
||||
|
||||
$this->open($size);
|
||||
return $this->config['compress'] ? @gzwrite($this->fp, $sql) : @fwrite($this->fp, $sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* 备份表结构
|
||||
* @param string $table 表名
|
||||
* @param integer $start 起始行数
|
||||
* @return boolean false - 备份失败
|
||||
*/
|
||||
public function backup($table, $start){
|
||||
//创建DB对象
|
||||
$db = \think\Db::connect();
|
||||
|
||||
//备份表结构
|
||||
if(0 == $start){
|
||||
$result = $db->query("SHOW CREATE TABLE `{$table}`");
|
||||
$sql = "\n";
|
||||
$sql .= "-- -----------------------------\n";
|
||||
$sql .= "-- Table structure for `{$table}`\n";
|
||||
$sql .= "-- -----------------------------\n";
|
||||
$sql .= "DROP TABLE IF EXISTS `{$table}`;\n";
|
||||
$sql .= trim($result[0]['Create Table']) . ";\n\n";
|
||||
if(false === $this->write($sql)){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
//数据总数
|
||||
$result = $db->query("SELECT COUNT(*) AS count FROM `{$table}`");
|
||||
$count = $result['0']['count'];
|
||||
|
||||
//备份表数据
|
||||
if($count){
|
||||
//写入数据注释
|
||||
if(0 == $start){
|
||||
$sql = "-- -----------------------------\n";
|
||||
$sql .= "-- Records of `{$table}`\n";
|
||||
$sql .= "-- -----------------------------\n";
|
||||
$this->write($sql);
|
||||
}
|
||||
|
||||
//备份数据记录
|
||||
$result = $db->query("SELECT * FROM `{$table}` LIMIT {$start}, 1000");
|
||||
foreach ($result as $row) {
|
||||
$row = array_map('addslashes', $row);
|
||||
$sql = "INSERT INTO `{$table}` VALUES ('" . str_replace(array("\r","\n"),array('\r','\n'),implode("', '", $row)) . "');\n";
|
||||
if(false === $this->write($sql)){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
//还有更多数据
|
||||
if($count > $start + 1000){
|
||||
return array($start + 1000, $count);
|
||||
}
|
||||
}
|
||||
|
||||
//备份下一表
|
||||
return 0;
|
||||
}
|
||||
|
||||
public function import($start){
|
||||
//还原数据
|
||||
$db = \think\Db::connect();
|
||||
|
||||
if($this->config['compress']){
|
||||
$gz = gzopen($this->file[1], 'r');
|
||||
$size = 0;
|
||||
} else {
|
||||
$size = filesize($this->file[1]);
|
||||
$gz = fopen($this->file[1], 'r');
|
||||
}
|
||||
|
||||
$sql = '';
|
||||
if($start){
|
||||
$this->config['compress'] ? gzseek($gz, $start) : fseek($gz, $start);
|
||||
}
|
||||
|
||||
for($i = 0; $i < 1000; $i++){
|
||||
$sql .= $this->config['compress'] ? gzgets($gz) : fgets($gz);
|
||||
if(preg_match('/.*;$/', trim($sql))){
|
||||
if(false !== $db->execute($sql)){
|
||||
$start += strlen($sql);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
$sql = '';
|
||||
} elseif ($this->config['compress'] ? gzeof($gz) : feof($gz)) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
return array($start, $size);
|
||||
}
|
||||
|
||||
/**
|
||||
* 析构方法,用于关闭文件资源
|
||||
*/
|
||||
public function __destruct(){
|
||||
//$this->config['compress'] ? @gzclose($this->fp) : @fclose($this->fp);
|
||||
}
|
||||
}
|
||||
@@ -1,274 +0,0 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: colin <colin@tensent.cn> <http://www.tensent.cn>
|
||||
// +----------------------------------------------------------------------
|
||||
namespace com;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 数据库管理类
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
class Datatable{
|
||||
|
||||
protected $table; /*数据库操作的表*/
|
||||
protected $fields = array(); /*数据库操作字段*/
|
||||
protected $charset = 'utf8'; /*数据库操作字符集*/
|
||||
public $prefix = ''; /*数据库操作表前缀*/
|
||||
protected $model_table_prefix = ''; /*模型默认创建的表前缀*/
|
||||
protected $engine_type = 'MyISAM'; /*数据库引擎*/
|
||||
protected $key = 'id'; /*数据库主键*/
|
||||
public $sql = ''; /*最后生成的sql语句*/
|
||||
|
||||
/**
|
||||
* 初始化数据库信息
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function __construct(){
|
||||
//创建DB对象
|
||||
$this->prefix = config('database.prefix');
|
||||
$this->model_table_prefix = config('model_table_prefix');
|
||||
}
|
||||
|
||||
/**
|
||||
* 开始创建表
|
||||
* @var $table 表名
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function start_table($table){
|
||||
$this->table = $this->getTablename($table,true);
|
||||
$this->sql .= "CREATE TABLE IF NOT EXISTS `".$this->table."`(";
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建字段
|
||||
* @var $sql 要执行的字段sql语句可以为array()或者strubf
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function create_field($sql){
|
||||
$this->sql .= $sql.',';
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 快速创建ID字段
|
||||
* @var length 字段的长度
|
||||
* @var comment 字段的描述
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function create_id($key = 'id', $length = 11 , $comment = '主键' , $is_auto_increment = true){
|
||||
$auto_increment = $is_auto_increment ? 'AUTO_INCREMENT' : '';
|
||||
$this->sql .= "`{$key}` int({$length}) unsigned NOT NULL $auto_increment COMMENT '{$comment}',";
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* 快速创建ID字段
|
||||
* @var length 字段的长度
|
||||
* @var comment 字段的描述
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function create_uid(){
|
||||
$this->sql .= "`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid',";
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 追加字段
|
||||
* @var $table 追加字段的表名
|
||||
* @var $attr 属性列表
|
||||
* @var $is_more 是否为多条同时插入
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function colum_field($table,$attr = array()){
|
||||
$field_attr['table'] = $table ? $this->getTablename($table,true) : $this->table;
|
||||
$field_attr['field'] = $attr['field'];
|
||||
$field_attr['type'] = $attr['type'] ? $attr['type'] : 'varchar';
|
||||
if (intval($attr['length']) && $attr['length']) {
|
||||
$field_attr['length'] = "(".$attr['length'].")";
|
||||
}else{
|
||||
$field_attr['length'] = "";
|
||||
}
|
||||
$field_attr['is_null'] = $attr['is_null'] ? 'NOT NULL' : 'null';
|
||||
$field_attr['default'] = $attr['default'] != '' ? 'default "'.$attr['default'].'"' : 'default null';
|
||||
if($field_attr['is_null'] == 'null'){
|
||||
$field_attr['default'] = $field_attr['default'];
|
||||
}else{
|
||||
$field_attr['default'] = '';
|
||||
}
|
||||
$field_attr['comment'] = (isset($attr['comment']) && $attr['comment']) ? $attr['comment'] : '';
|
||||
$field_attr['oldname'] = (isset($attr['oldname']) && $attr['oldname']) ? $attr['oldname'] : '';
|
||||
$field_attr['newname'] = (isset($attr['newname']) && $attr['newname']) ? $attr['newname'] : $field_attr['field'];
|
||||
$field_attr['after'] = (isset($attr['after']) && $attr['after']) ? ' AFTER `'.$attr['after'].'`' : '';
|
||||
$field_attr['action'] = (isset($attr['action']) && $attr['action']) ? $attr['action'] : 'ADD';
|
||||
//确认表是否存在
|
||||
|
||||
if($field_attr['action'] == 'ADD'){
|
||||
$this->sql = "ALTER TABLE `{$field_attr['table']}` ADD `{$field_attr['field']}` {$field_attr['type']}{$field_attr['length']} {$field_attr['is_null']} {$field_attr['default']} COMMENT '{$field_attr['comment']}'";
|
||||
}elseif($field_attr['action'] == 'CHANGE'){
|
||||
$this->sql = "ALTER TABLE `{$field_attr['table']}` CHANGE `{$field_attr['oldname']}` `{$field_attr['newname']}` {$field_attr['type']}{$field_attr['length']} {$field_attr['is_null']} {$field_attr['default']} COMMENT '{$field_attr['comment']}'";
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除字段
|
||||
* @var $table 追加字段的表名
|
||||
* @var $field 字段名
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function del_field($table,$field){
|
||||
$table = $table ? $this->getTablename($table,true) : $this->table;
|
||||
$this->sql = "ALTER TABLE `$table` DROP `$field`";
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除数据表
|
||||
* @var $table 追加字段的表名
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function del_table($table){
|
||||
$table = $table ? $this->getTablename($table,true) : $this->table;
|
||||
$this->sql = "DROP TABLE `$table`";
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 主键设置
|
||||
* @var $key 要被设置主键的字段
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function create_key($key = null){
|
||||
if(null != $key){
|
||||
$this->key = $key;
|
||||
}
|
||||
$this->sql .= "PRIMARY KEY (`".$this->key."`)";
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 结束表
|
||||
* @var $engine_type 数据库引擎
|
||||
* @var $comment 表注释
|
||||
* @var $charset 数据库编码
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function end_table($comment,$engine_type = null,$charset = null){
|
||||
if(null != $charset){
|
||||
$this->charset = $charset;
|
||||
}
|
||||
if(null != $engine_type){
|
||||
$this->engine_type = $engine_type;
|
||||
}
|
||||
$end = "ENGINE=".$this->engine_type." AUTO_INCREMENT=1 DEFAULT CHARSET=".$this->charset." ROW_FORMAT=DYNAMIC COMMENT='".$comment."';";
|
||||
$this->sql .= ")".$end;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建动作
|
||||
* @return int 0
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function create(){
|
||||
$res = Db::execute($this->sql);
|
||||
return $res !== false;
|
||||
}
|
||||
|
||||
/**
|
||||
* create的别名
|
||||
* @return int 0
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function query(){
|
||||
return $this->create();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取最后生成的sql语句
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function getLastSql(){
|
||||
return $this->sql;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取指定的表名
|
||||
* @var $table 要获取名字的表名
|
||||
* @var $prefix 获取表前缀? 默认为不获取 false
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function getTablename($table , $prefix = false){
|
||||
if(false == $prefix){
|
||||
$this->table = $this->model_table_prefix.$table;
|
||||
}else{
|
||||
$this->table = $this->prefix.$this->model_table_prefix.$table;
|
||||
}
|
||||
return $this->table;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取指定表名的所有字段及详细信息
|
||||
* @var $table 要获取名字的表名 可以为sent_tengsu_photo、tengsu_photo、photo
|
||||
* @author colin <colin@tensent.cn>
|
||||
*/
|
||||
public function getFields($table){
|
||||
if(false == $table){
|
||||
$table = $this->table;//为空调用当前table
|
||||
}else{
|
||||
$table = $table;
|
||||
}
|
||||
$patten = "/\./";
|
||||
if(!preg_match_all($patten,$table)){
|
||||
//匹配_
|
||||
$patten = "/_+/";
|
||||
if(!preg_match_all($patten, $table)){
|
||||
$table = $this->prefix.$this->model_table_prefix.$table;
|
||||
}else{
|
||||
//匹配是否包含表前缀,如果是 那么就是手动输入
|
||||
$patten = "/$this->prefix/";
|
||||
if(!preg_match_all($patten,$table)){
|
||||
$table = $this->prefix.$table;
|
||||
}
|
||||
}
|
||||
}
|
||||
$sql = "SHOW FULL FIELDS FROM $table";
|
||||
return Db::query($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* 确认表是否存在
|
||||
* @var $table 表名 可以为sent_tengsu_photo、tengsu_photo、photo
|
||||
* @author colin <colin@tensent.cn>
|
||||
* @return boolen
|
||||
*/
|
||||
public function CheckTable($table){
|
||||
//获取表名
|
||||
$this->table = $this->getTablename($table,true);
|
||||
$result = Db::execute("SHOW TABLES LIKE '%$this->table%'");
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 确认字段是否存在
|
||||
* @var $table 表名 可以为sent_tengsu_photo、tengsu_photo、photo
|
||||
* @var $field 字段名 要检查的字段名
|
||||
* @author colin <colin@tensent.cn>
|
||||
* @return boolen
|
||||
*/
|
||||
public function CheckField($table,$field){
|
||||
//检查字段是否存在
|
||||
$table = $this->getTablename($table,true);
|
||||
if(!Db::query("Describe $table $field")){
|
||||
return false;
|
||||
}else{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,164 +0,0 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006-2015 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: liu21st <liu21st@gmail.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace com;
|
||||
|
||||
use think\template\TagLib;
|
||||
|
||||
/**
|
||||
* CX标签库解析类
|
||||
* @category Think
|
||||
* @package Think
|
||||
* @subpackage Driver.Taglib
|
||||
* @author liu21st <liu21st@gmail.com>
|
||||
*/
|
||||
class Sent extends Taglib{
|
||||
|
||||
// 标签定义
|
||||
protected $tags = array(
|
||||
// 标签定义: attr 属性列表 close 是否闭合(0 或者1 默认1) alias 标签别名 level 嵌套层次
|
||||
'nav' => array('attr' => 'field,name', 'close' => 1), //获取导航
|
||||
'list' => array('attr' => 'table,where,order,limit,id,sql,field,key','level'=>3),//列表
|
||||
'doc' => array('attr' => 'model,field,limit,id,field,key','level'=>3),
|
||||
'recom' => array('attr' => 'doc_id,id'),
|
||||
'link' => array('attr' => 'type,limit' , 'close' => 1),//友情链接
|
||||
'prev' => array('attr' => 'id,cate' , 'close' => 1),//上一篇
|
||||
'next' => array('attr' => 'id,cate' , 'close' => 1),//下一篇
|
||||
);
|
||||
|
||||
public function tagnav($tag, $content){
|
||||
$field = empty($tag['field']) ? 'true' : $tag['field'];
|
||||
$tree = empty($tag['tree'])? true : false;
|
||||
$parse = $parse = '<?php ';
|
||||
$parse .= '$__NAV__ = db(\'Channel\')->field('.$field.')->where("status=1")->order("sort")->select();';
|
||||
if($tree){
|
||||
$parse .= '$__NAV__ = list_to_tree($__NAV__, "id", "pid");';
|
||||
}
|
||||
$parse .= 'foreach ($__NAV__ as $key => $'.$tag['name'].') {';
|
||||
$parse .= '?>';
|
||||
$parse .= $content;
|
||||
$parse .= '<?php } ?>';
|
||||
return $parse;
|
||||
}
|
||||
|
||||
public function tagdoc($tag, $content){
|
||||
$model = !empty($tag['model']) ? $tag['model']:'';
|
||||
$cid = !empty($tag['cid']) ? $tag['cid']:'0';
|
||||
$field = empty($tag['field']) ? '*' : $tag['field'];
|
||||
$limit = empty($tag['limit']) ? 20 : $tag['limit'];
|
||||
$order = empty($tag['order']) ? 'create_time desc' : $tag['order'];
|
||||
|
||||
//获得当前栏目的所有子栏目
|
||||
$ids = get_category_child($cid);
|
||||
$ids = implode(',', $ids);
|
||||
$where = "category_id IN ({$ids})";
|
||||
$where .= " and model_id = {$model} and status >= 1";
|
||||
|
||||
$parse = $parse = '<?php ';
|
||||
$parse .= '$__LIST__ = model(\'Document\')->extend(\''.$model.'\')->where(\''.$where.'\')->field(\''.$field.'\')->limit(\''.$limit.'\')->order(\''.$order.'\')->select();';
|
||||
$parse .= 'foreach ($__LIST__ as $key => $'.$tag['name'].') {';
|
||||
$parse .= '?>';
|
||||
$parse .= $content;
|
||||
$parse .= '<?php } ?>';
|
||||
return $parse;
|
||||
}
|
||||
|
||||
public function taglist($tag, $content){
|
||||
$name = !empty($tag['name']) ? $tag['name'] : '';
|
||||
$map = !empty($tag['map']) ? $tag['map'] : '';
|
||||
$field = empty($tag['field']) ? '*' : $tag['field'];
|
||||
$limit = empty($tag['limit']) ? 20 : $tag['limit'];
|
||||
$order = empty($tag['order']) ? 'id desc' : $tag['order'];
|
||||
|
||||
$where[] = "status > 0";
|
||||
if ($map) {
|
||||
$where[] = $map;
|
||||
}
|
||||
$map = implode(" and ", $where);
|
||||
|
||||
$parse = $parse = '<?php ';
|
||||
$parse .= '$__LIST__ = model(\''.$name.'\')->where(\''.$map.'\')->field(\''.$field.'\')->limit(\''.$limit.'\')->order(\''.$order.'\')->select();';
|
||||
$parse .= 'foreach ($__LIST__ as $key => $'.$tag['id'].') {';
|
||||
$parse .= '?>';
|
||||
$parse .= $content;
|
||||
$parse .= '<?php } ?>';
|
||||
return $parse;
|
||||
}
|
||||
|
||||
public function tagrecom($tag, $content){
|
||||
$doc_id = empty($tag['doc_id']) ? '' : $tag['doc_id'];
|
||||
$field = empty($tag['field']) ? '*' : $tag['field'];
|
||||
$limit = empty($tag['limit']) ? 20 : $tag['limit'];
|
||||
$order = empty($tag['order']) ? 'id desc' : $tag['order'];
|
||||
|
||||
if (!$doc_id) {
|
||||
return array();
|
||||
}
|
||||
|
||||
$parse = $parse = '<?php ';
|
||||
$parse .= '$__LIST__ = model(\'Document\')->recom('. $doc_id .',\'' .$field. '\',' .$limit. ',\'' .$order. '\');';
|
||||
$parse .= 'foreach ($__LIST__ as $key => $'.$tag['id'].') {';
|
||||
$parse .= '?>';
|
||||
$parse .= $content;
|
||||
$parse .= '<?php } ?>';
|
||||
return $parse;
|
||||
}
|
||||
|
||||
public function taglink($tag, $content){
|
||||
$type = !empty($tag['type']) ? $tag['type'] : '';
|
||||
$limit = !empty($tag['limit']) ? $tag['limit'] : '';
|
||||
$field = empty($tag['field']) ? '*' : $tag['field'];
|
||||
$limit = empty($tag['limit']) ? 20 : $tag['limit'];
|
||||
$order = empty($tag['order']) ? "id desc" : $tag['order'];
|
||||
|
||||
$where[] = "status > 0";
|
||||
if ($type) {
|
||||
$where[] = "ftype = " . $type;
|
||||
}
|
||||
$map = implode(" and ", $where);
|
||||
|
||||
$parse = $parse = '<?php ';
|
||||
$parse .= '$__LIST__ = model(\'Link\')->where(\''.$map.'\')->field(\''.$field.'\')->limit(\''.$limit.'\')->order(\''.$order.'\')->select();';
|
||||
$parse .= 'foreach ($__LIST__ as $key => $'.$tag['name'].') {';
|
||||
$parse .= '?>';
|
||||
$parse .= $content;
|
||||
$parse .= '<?php } ?>';
|
||||
return $parse;
|
||||
}
|
||||
|
||||
public function tagprev($tag, $content){
|
||||
$id = !empty($tag['id']) ? $tag['id'] : '';
|
||||
$cate = !empty($tag['cate']) ? $tag['cate'] : '';
|
||||
$model_id = !empty($tag['model']) ? $tag['model'] : '';
|
||||
|
||||
$map = "category_id = ".$cate." and model_id=".$model_id." and id < ".$id;
|
||||
|
||||
$parse = '<?php ';
|
||||
$parse .= '$__DATA__ = db(\'Document\')->where("' . $map . '")->order(\'id asc\')->find();';
|
||||
$parse .= $content;
|
||||
$parse .= '}?>';
|
||||
return $parse;
|
||||
}
|
||||
|
||||
public function tagnext($tag, $content){
|
||||
$id = !empty($tag['id']) ? $tag['id'] : '';
|
||||
$cate = !empty($tag['cate']) ? $tag['cate'] : '';
|
||||
$model_id = !empty($tag['model']) ? $tag['model'] : '';
|
||||
|
||||
$map = "category_id = ".$cate." and model_id=".$model_id." and id < ".$id;
|
||||
|
||||
$parse = '<?php ';
|
||||
$parse .= '$__DATA__ = db(\'Document\')->where("' . $map . '")->order(\'id asc\')->find();';
|
||||
$parse .= $content;
|
||||
$parse .= '}?>';
|
||||
return $parse;
|
||||
}
|
||||
}
|
||||
@@ -1,95 +0,0 @@
|
||||
<?php
|
||||
namespace com;
|
||||
/**
|
||||
* 通用的树型类,可以生成任何树型结构
|
||||
*/
|
||||
class Tree {
|
||||
|
||||
protected $formatTree;
|
||||
|
||||
/**
|
||||
* 把返回的数据集转换成Tree
|
||||
* @param array $list 要转换的数据集
|
||||
* @param string $pid parent标记字段
|
||||
* @param string $level level标记字段
|
||||
* @return array
|
||||
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||||
*/
|
||||
protected function list_to_tree($list, $pk='id', $pid = 'pid', $child = '_child', $root = 0) {
|
||||
// 创建Tree
|
||||
$tree = array();
|
||||
if(is_array($list)) {
|
||||
// 创建基于主键的数组引用
|
||||
$refer = array();
|
||||
foreach ($list as $key => $data) {
|
||||
$refer[$data[$pk]] =& $list[$key];
|
||||
}
|
||||
foreach ($list as $key => $data) {
|
||||
// 判断是否存在parent
|
||||
$parentId = $data[$pid];
|
||||
if ($root == $parentId) {
|
||||
$tree[] =& $list[$key];
|
||||
}else{
|
||||
if (isset($refer[$parentId])) {
|
||||
$parent =& $refer[$parentId];
|
||||
$parent['childs'][] = $data['id'];
|
||||
$parent[$child][] =& $list[$key];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return $tree;
|
||||
}
|
||||
|
||||
/**
|
||||
* 将树子节点加层级成列表
|
||||
*/
|
||||
protected function _toFormatTree($tree, $level = 1) {
|
||||
foreach ($tree as $key => $value) {
|
||||
$temp = $value;
|
||||
if (isset($temp['_child'])) {
|
||||
$temp['_child'] = true;
|
||||
$temp['level'] = $level;
|
||||
} else {
|
||||
$temp['_child'] = false;
|
||||
$temp['level'] = $level;
|
||||
}
|
||||
array_push($this->formatTree, $temp);
|
||||
if (isset($value['_child'])) {
|
||||
$this->_toFormatTree($value['_child'], ($level + 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected function cat_empty_deal($cat, $next_parentid, $pid='pid', $empty = " ") {
|
||||
$str = "";
|
||||
if ($cat[$pid]) {
|
||||
for ($i=2; $i < $cat['level']; $i++) {
|
||||
$str .= $empty."│";
|
||||
}
|
||||
if ($cat[$pid] != $next_parentid && !$cat['_child']) {
|
||||
$str .= $empty."└─ ";
|
||||
} else {
|
||||
$str .= $empty."├─ ";
|
||||
}
|
||||
}
|
||||
return $str;
|
||||
}
|
||||
|
||||
public function toFormatTree($list,$title = 'title',$pk='id',$pid = 'pid',$root = 0){
|
||||
if (empty($list)) {
|
||||
return false;
|
||||
}
|
||||
$list = $this->list_to_tree($list,$pk,$pid,'_child',$root);
|
||||
$this->formatTree = array();
|
||||
$this->_toFormatTree($list);
|
||||
foreach ($this->formatTree as $key => $value) {
|
||||
$index = ($key+1);
|
||||
$next_parentid = isset($this->formatTree[$index][$pid]) ? $this->formatTree[$index][$pid] : '';
|
||||
$value['level_show'] = $this->cat_empty_deal($value, $next_parentid);
|
||||
$value['title_show'] = $value['level_show'].$value[$title];
|
||||
$data[] = $value;
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
@@ -1,356 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Ueditor插件
|
||||
* @author Nintendov
|
||||
*/
|
||||
|
||||
namespace com;
|
||||
|
||||
class Ueditor{
|
||||
|
||||
public $uid;//要操作的用户id 如有登录需要则去掉注释
|
||||
private $output;//要输出的数据
|
||||
private $st;
|
||||
private $rootpath = '/uploads';
|
||||
private $config = '';
|
||||
|
||||
public function __construct($uid = ''){
|
||||
//uid 为空则导入当前会话uid
|
||||
if(''===$uid) $this->uid = session('user_auth.uid');
|
||||
|
||||
//导入设置
|
||||
$this->config = json_decode(preg_replace("/\/\*[\s\S]+?\*\//", "", file_get_contents(APP_PATH."ueditor.json")), true);
|
||||
|
||||
$action = htmlspecialchars($_GET['action']);
|
||||
|
||||
switch($action){
|
||||
case 'config':
|
||||
$result = json_encode($this->config);
|
||||
break;
|
||||
|
||||
case 'uploadimage':
|
||||
$config = array(
|
||||
"pathFormat" => $this->config['imagePathFormat'],
|
||||
"maxSize" => $this->config['imageMaxSize'],
|
||||
"allowFiles" => $this->config['imageAllowFiles']
|
||||
);
|
||||
$fieldName = $this->config['imageFieldName'];
|
||||
$result = $this->uploadFile($config, $fieldName);
|
||||
break;
|
||||
|
||||
case 'uploadscrawl':
|
||||
$config = array(
|
||||
"pathFormat" => $this->config['scrawlPathFormat'],
|
||||
"maxSize" => $this->config['scrawlMaxSize'],
|
||||
"allowFiles" => $this->config['scrawlAllowFiles'],
|
||||
"oriName" => "scrawl.png"
|
||||
);
|
||||
$fieldName = $this->config['scrawlFieldName'];
|
||||
$result=$this->uploadBase64($config,$fieldName);
|
||||
break;
|
||||
|
||||
case 'uploadvideo':
|
||||
$config = array(
|
||||
"pathFormat" => $this->config['videoPathFormat'],
|
||||
"maxSize" => $this->config['videoMaxSize'],
|
||||
"allowFiles" => $this->config['videoAllowFiles']
|
||||
);
|
||||
$fieldName = $this->config['videoFieldName'];
|
||||
$result=$this->uploadFile($config, $fieldName);
|
||||
break;
|
||||
|
||||
case 'uploadfile':
|
||||
// default:
|
||||
$config = array(
|
||||
"pathFormat" => $this->config['filePathFormat'],
|
||||
"maxSize" => $this->config['fileMaxSize'],
|
||||
"allowFiles" => $this->config['fileAllowFiles']
|
||||
);
|
||||
$fieldName = $this->config['fileFieldName'];
|
||||
$result=$this->uploadFile($config, $fieldName);
|
||||
break;
|
||||
|
||||
case 'listfile':
|
||||
$config=array(
|
||||
'allowFiles' => $this->config['fileManagerAllowFiles'],
|
||||
'listSize' => $this->config['fileManagerListSize'],
|
||||
'path' => $this->config['fileManagerListPath'],
|
||||
);
|
||||
$result = $this->listFile($config);
|
||||
break;
|
||||
|
||||
case 'listimage':
|
||||
$config=array(
|
||||
'allowFiles' => $this->config['imageManagerAllowFiles'],
|
||||
'listSize' => $this->config['imageManagerListSize'],
|
||||
'path' => $this->config['imageManagerListPath'],
|
||||
);
|
||||
$result = $this->listFile($config);
|
||||
break;
|
||||
|
||||
case 'catchimage':
|
||||
$config = array(
|
||||
"pathFormat" => $this->config['catcherPathFormat'],
|
||||
"maxSize" => $this->config['catcherMaxSize'],
|
||||
"allowFiles" => $this->config['catcherAllowFiles'],
|
||||
"oriName" => "remote.png"
|
||||
);
|
||||
$fieldName = $this->config['catcherFieldName'];
|
||||
$result = $this->saveRemote($config , $fieldName);
|
||||
break;
|
||||
|
||||
default:
|
||||
$result = json_encode(array(
|
||||
'state'=> 'wrong require'
|
||||
));
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
if (isset($_GET["callback"])) {
|
||||
if (preg_match("/^[\w_]+$/", $_GET["callback"])) {
|
||||
$this->output = htmlspecialchars($_GET["callback"]) . '(' . $result . ')';
|
||||
} else {
|
||||
$this->output = json_encode(array(
|
||||
'state'=> 'callback参数不合法'
|
||||
));
|
||||
}
|
||||
} else {
|
||||
$this->output = $result;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* 输出结果
|
||||
* @param data 数组数据
|
||||
* @return 组合后json格式的结果
|
||||
*/
|
||||
public function output(){
|
||||
return $this->output;
|
||||
}
|
||||
|
||||
/**
|
||||
* 上传文件方法
|
||||
*
|
||||
*/
|
||||
private function uploadFile($config,$fieldName){
|
||||
|
||||
|
||||
$upload = new \org\Upload();
|
||||
$upload->maxSize = $config['maxSize'] ;// 设置附件上传大小
|
||||
$upload->exts = $this->format_exts($config['allowFiles']);// 设置附件上传类型
|
||||
$upload->rootPath = '.'.$this->rootpath; // 设置附件上传根目录
|
||||
$upload->autoSub = false;
|
||||
$upload->savePath = $this->getFullPath($config['pathFormat']); // 设置附件上传(子)目录
|
||||
$info=$upload->uploadOne($_FILES[$fieldName]);
|
||||
$rootpath = $this->rootpath;
|
||||
|
||||
if(!$info){
|
||||
$data = array(
|
||||
"state"=>$upload -> getError(),
|
||||
);
|
||||
}else{
|
||||
$data = array(
|
||||
'state' => "SUCCESS",
|
||||
'url' => $rootpath . $info['savepath'] . $info['savename'],
|
||||
'title' => $info['name'],
|
||||
'original' => $info['name'],
|
||||
'type' => '.' . $info['ext'],
|
||||
'size' => $info['size'],
|
||||
);
|
||||
}
|
||||
return json_encode($data);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Enter description here ...
|
||||
*/
|
||||
private function uploadBase64($config,$fieldName){
|
||||
$data = array();
|
||||
|
||||
$base64Data = $_POST[$fieldName];
|
||||
$img = base64_decode($base64Data);
|
||||
$path = $this->getFullPath($config['pathFormat']);
|
||||
|
||||
if(strlen($img)>$config['maxSize']){
|
||||
$data['states'] = 'too large';
|
||||
return json_encode($data);
|
||||
}
|
||||
|
||||
$rootpath = $this->rootpath;
|
||||
|
||||
//替换随机字符串
|
||||
$imgname = uniqid().'.png';
|
||||
$filename = $path.$imgname;
|
||||
|
||||
if(\Think\Storage::put($rootpath,$filename,$img)){
|
||||
$data=array(
|
||||
'state' =>'SUCCESS',
|
||||
'url' => $rootpath . $filename,
|
||||
'title' =>$imgname,
|
||||
'original' =>'scrawl.png',
|
||||
'type' => '.png',
|
||||
'size' => strlen($img),
|
||||
|
||||
);
|
||||
}else{
|
||||
$data=array(
|
||||
'state'=>'cant write',
|
||||
);
|
||||
}
|
||||
return json_encode($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 列出文件夹下所有文件,如果是目录则向下
|
||||
*/
|
||||
private function listFile($config){
|
||||
$allowFiles = substr(str_replace(".", "|", join("", $config['allowFiles'])), 1);
|
||||
$size = isset($_GET['size']) ? htmlspecialchars($_GET['size']) : $config['listSize'];
|
||||
$start = isset($_GET['start']) ? htmlspecialchars($_GET['start']) : 0;
|
||||
$end = $start + $size;
|
||||
|
||||
$rootpath = $this->rootpath;
|
||||
|
||||
$path = $config['path'];
|
||||
$files = \Think\Storage::listFile($rootpath,$path, $allowFiles);
|
||||
//return $files;
|
||||
if (!count($files)) {
|
||||
return json_encode(array(
|
||||
"state" => "no match file",
|
||||
"list" => array(),
|
||||
"start" => $start,
|
||||
"total" => count($files)
|
||||
));
|
||||
}
|
||||
|
||||
/* 获取指定范围的列表 */
|
||||
$len = count($files);
|
||||
for ($i = min($end, $len) - 1, $list = array(); $i < $len && $i >= 0 && $i >= $start; $i--){
|
||||
$list[] = $files[$i];
|
||||
}
|
||||
//倒序
|
||||
//for ($i = $end, $list = array(); $i < $len && $i < $end; $i++){
|
||||
// $list[] = $files[$i];
|
||||
//}
|
||||
|
||||
/* 返回数据 */
|
||||
$result = json_encode(array(
|
||||
"state" => "SUCCESS",
|
||||
"list" => $list,
|
||||
"start" => $start,
|
||||
"total" => count($files)
|
||||
));
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Enter description here ...
|
||||
*/
|
||||
private function saveRemote($config , $fieldName){
|
||||
$list = array();
|
||||
if (isset($_POST[$fieldName])) {
|
||||
$source = $_POST[$fieldName];
|
||||
} else {
|
||||
$source = $_GET[$fieldName];
|
||||
}
|
||||
foreach ($source as $imgUrl) {
|
||||
$upload = new \org\Upload();
|
||||
|
||||
$imgUrl = htmlspecialchars($imgUrl);
|
||||
$imgUrl = str_replace("&", "&", $imgUrl);
|
||||
|
||||
//http开头验证
|
||||
if (strpos($imgUrl, "http") !== 0) {
|
||||
$data = array('state'=>'不是http链接');
|
||||
return json_encode($data);
|
||||
}
|
||||
//格式验证(扩展名验证和Content-Type验证)
|
||||
$fileType = strtolower(strrchr($imgUrl, '.'));
|
||||
if (!in_array($fileType, $config['allowFiles']) || stristr($heads['Content-Type'], "image")) {
|
||||
$data = array("state"=>"错误文件格式");
|
||||
return json_encode($data);
|
||||
}
|
||||
|
||||
//打开输出缓冲区并获取远程图片
|
||||
ob_start();
|
||||
$context = stream_context_create(
|
||||
array('http' => array(
|
||||
'follow_location' => false // don't follow redirects
|
||||
))
|
||||
);
|
||||
readfile($imgUrl, false, $context);
|
||||
$img = ob_get_contents();
|
||||
ob_end_clean();
|
||||
preg_match("/[\/]([^\/]*)[\.]?[^\.\/]*$/", $imgUrl, $m);
|
||||
|
||||
$path = $this->getFullPath($config['pathFormat']);
|
||||
if(strlen($img)>$config['maxSize']){
|
||||
$data['states'] = 'too large';
|
||||
return json_encode($data);
|
||||
}
|
||||
|
||||
$rootpath = $this->rootpath;
|
||||
|
||||
$imgname = uniqid().'.png';
|
||||
$filename = $path.$imgname;
|
||||
|
||||
$oriName = $m ? $m[1]:"";
|
||||
|
||||
if(\Think\Storage::put($rootpath,$filename,$img)){
|
||||
array_push($list, array(
|
||||
"state" => 'SUCCESS',
|
||||
"url" => \Think\Storage::getPath($rootpath,$filename),
|
||||
"size" => strlen($img),
|
||||
"title" => $imgname,
|
||||
"original" => $oriName,
|
||||
"source" => htmlspecialchars($imgUrl)
|
||||
));
|
||||
}else{
|
||||
array_push($list,array('state'=>'文件写入失败'));
|
||||
}
|
||||
}
|
||||
|
||||
/* 返回抓取数据 */
|
||||
return json_encode(array(
|
||||
'state'=> count($list) ? 'SUCCESS':'ERROR',
|
||||
'list'=> $list
|
||||
));
|
||||
}
|
||||
|
||||
/**
|
||||
* 规则替换命名文件
|
||||
* @param $path
|
||||
* @return string
|
||||
*/
|
||||
private function getFullPath($path){
|
||||
//替换日期事件
|
||||
$t = time();
|
||||
$d = explode('-', date("Y-y-m-d-H-i-s"));
|
||||
$format = $path;
|
||||
$format = str_replace("{yyyy}", $d[0], $format);
|
||||
$format = str_replace("{yy}", $d[1], $format);
|
||||
$format = str_replace("{mm}", $d[2], $format);
|
||||
$format = str_replace("{dd}", $d[3], $format);
|
||||
$format = str_replace("{hh}", $d[4], $format);
|
||||
$format = str_replace("{ii}", $d[5], $format);
|
||||
$format = str_replace("{ss}", $d[6], $format);
|
||||
$format = str_replace("{uid}", $this->uid, $format);
|
||||
|
||||
return $format;
|
||||
}
|
||||
|
||||
private function format_exts($exts){
|
||||
$data=array();
|
||||
foreach ($exts as $key => $value) {
|
||||
$data[]=ltrim($value,'.');
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user