使用教程
https://www.kancloud.cn/mikkle/thinkphp5_study/462704
~~~
<?php
/**
* Created by PhpStorm.
* Power By Mikkle
* Email:776329498@qq.com
* Date: 2017/11/27
* Time: 9:04
*/
namespace mikkle\tp_tools;
use mikkle\tp_master\Exception;
use mikkle\tp_master\Request;
use mikkle\tp_master\Log;
use mikkle\tp_master\Loader;
/**
*$paramList = [
"company" => "company/s",
"address" => "address/s",
"contacts" => "contacts/s",
"jobs" => "jobs/s",
"mobile" => "mobile/s",
"tencent_code" => "tencent_code/s",
"desc" => "desc/s",
"event_key" => "event_key/n",
];
$validate_name = "base/system/SystemApply";
$model_name = 'base/system/SystemApply';
$re = DataEdit::instance()
->setParameter($paramList)
->setAppend(["append" => "this is append"])
->setValidate($validate_name)
->setModel($model_name)
->save();;
return $re ? ReturnCode::jsonCode(1001) : ReturnCode::jsonCode(1003);
*
* Power: Mikkle
* Email:776329498@qq.com
* Class DataEdit
* @package mikkle\tp_tools
*/
class DataEdit
{
protected $parameter;
protected $append;
protected $data;
protected $saveData;
protected $validate;
protected $validateClass;
protected $scene;
protected $model;
protected $modelType;
protected $modelClass;
protected $updateMap;
protected $isUpdate;
protected $allowField = true ;
protected $pk;
protected $request;
protected $error;
protected $result;
protected static $instance;
public function __construct($options=[])
{
$this->request=Request::instance();
if(isset($options["data"])){
$this->data=$options["data"];
}
if(isset($options["validate"])){
$this->validate=$options["validate"];
}
if(isset($options["model"])){
$this->model=$options["model"];
}
}
/**
* 静态初始化方法
* Power: Mikkle
* Email:776329498@qq.com
* @param array $options
* @return static
*/
public static function instance($options = [])
{
if (is_null(self::$instance)) {
self::$instance = new static($options);
}
return self::$instance;
}
/**
* 设置获取参数数组
* Power: Mikkle
* Email:776329498@qq.com
* @param array $parameter
* @return $this
* @throws Exception
*/
public function setParameter(array $parameter=[]){
switch (true){
case (!empty($parameter)&&is_array($parameter)):
$this->parameter=$parameter;
return $this;
break;
default:
throw new Exception("设置获取参数数组的值出错!");
}
}
/**
* 单个添加获取参数数组
* Power: Mikkle
* Email:776329498@qq.com
* @param $saveName
* @param string $inputName
* @param string $dataType
* @return $this
* @throws Exception
*/
public function addParameter($saveName,$inputName="",$dataType=""){
if (!is_string($saveName)||empty($saveName)){
throw new Exception("设置参数的类型必须为字符串");
}
if (empty($inputName)){
$inputName=$saveName;
}
switch ($dataType) {
case "string":
case "s":
$dataType = "/s";
break;
case "int":
case "d":
$dataType = "/d";
break;
case "array":
case "a":
$dataType = "/a";
break;
case "bool":
case "b":
$dataType = "/b";
break;
case "float":
case "f":
$dataType = "/f";
break;
default:
$dataType = "";
}
$this->parameter["$saveName"]="{$inputName}{$dataType}";
return $this;
}
/**
* 设置追加的参数
* Power: Mikkle
* Email:776329498@qq.com
* @param array $append
* @return $this
* @throws Exception
*/
public function setAppend(array $append=[]){
switch (true){
case (!empty($append)&&is_array($append)):
$this->append=$append;
return $this;
break;
default:
throw new Exception("设置获取参数数组的值出错!");
}
}
/**
* 添加单个附加数据
* Power: Mikkle
* Email:776329498@qq.com
* @param $saveName
* @param $saveData
* @return $this
* @throws Exception
*/
public function addAppendData($saveName,$saveData){
if (!is_string($saveName)||!is_string($saveData)){
throw new Exception("设置附加存储值必须使用字符串");
}
$this->append[$saveName]=$saveData;
return $this;
}
/**
* 设置保存的值
* Power: Mikkle
* Email:776329498@qq.com
* @param array $data
* @return $this
* @throws Exception
*/
public function setData($data=[]){
switch (true){
case (!empty($data)&&is_array($data)):
$this->data=$data;
return $this;
break;
default:
throw new Exception("设置的值出错!");
}
}
/**
* 设置验证器或者验证规则[array]
* Power: Mikkle
* Email:776329498@qq.com
* @param array $validate
* @return $this
* @throws Exception
*/
public function setValidate($validate=[]){
switch (true){
case ($validate===false):
return $this;
break;
case (empty($validate)):
throw new Exception("设置的值不能为空!");
break;
case (!is_string($validate)&&!is_array($validate)):
throw new Exception("设置值的类型必须是字符串!");
break;
default:
$this->validate=$validate;
return $this;
}
}
/**
* 设置model
* Power: Mikkle
* Email:776329498@qq.com
* @param string $model
* @return $this
* @throws Exception
*/
public function setModel($model=""){
switch (true){
case (empty($model)):
throw new Exception("设置的值不能为空!");
break;
case (!is_string($model)):
throw new Exception("设置值的类型必须是字符串!");
break;
default:
$this->model=$model;
return $this;
}
}
public function setModelType($modelType=""){
switch (true){
case (empty($modelType)):
throw new Exception("设置的值不能为空!");
break;
case (!is_string($modelType)):
throw new Exception("设置值的类型必须是字符串!");
break;
default:
$this->modelType=$modelType;
return $this;
}
}
/**
* 设置pk
* @title setPk
* @description
* @author Mikkle
* @url
* @param $pk
* @return $this
*/
public function setPk($pk){
$this->pk=$pk;
return $this;
}
/**
* 设置升级条件
* Power: Mikkle
* Email:776329498@qq.com
* @param $map
* @return $this
*/
public function setUpdateMap($map){
$this->updateMap=$map;
$this->isUpdate=true;
return $this;
}
/**
* 设置可以允许的字段
* Power: Mikkle
* Email:776329498@qq.com
* @param $allowField
* @return $this
*/
public function setAllowField($allowField){
$this->allowField=$allowField;
return $this;
}
/**
* 存储数据 数据存在自动判断添加和升级
* Power: Mikkle
* Email:776329498@qq.com
* @return bool
*/
public function save(){
try{
if (!$this->actionHandle()){
throw new Exception($this->getError());
}
$this->checkPk();
if ($this->updateMap && isset($this->saveData[$this->pk])){
if (!isset($this->updateMap[$this->pk] )){
unset($this->saveData[$this->pk]);
}
}
if(empty($this->updateMap)&&isset($this->saveData[$this->pk])){
$this->updateMap[$this->pk] = $this->saveData[$this->pk];
unset($this->saveData[$this->pk]);
}
if ($this->updateMap){
$this->result = $this->modelClass->allowField($this->allowField)->save($this->saveData,$this->updateMap);
}else{
$this->result = $this->modelClass->allowField($this->allowField)->save($this->saveData);
}
return $this->result;
}catch (Exception $e){
$this->error=$e->getMessage();
Log::error($e->getMessage());
return false;
}
}
/**
* 升级数据
* Power: Mikkle
* Email:776329498@qq.com
* @return bool
*/
public function update(){
try{
if (!$this->actionHandle()){
throw new Exception($this->getError());
}
$this->checkPk();
if ($this->updateMap && isset($this->saveData[$this->pk])){
if (!isset($this->updateMap[$this->pk] )){
unset($this->saveData[$this->pk]);
}
}
if (empty($this->updateMap)&&!isset($this->saveData[$this->pk])){
throw new Exception("升级条件缺失");
}else if(empty($this->updateMap)&&isset($this->saveData[$this->pk])){
$this->updateMap[$this->pk] = $this->saveData[$this->pk];
unset($this->saveData[$this->pk]);
}
if ($this->updateMap){
$this->result = $this->modelClass->allowField($this->allowField)->save($this->saveData,$this->updateMap);
return $this->result;
}else{
throw new Exception("升级条件不存在");
}
}catch (Exception $e){
$this->error=$e->getMessage();
Log::error($e->getMessage());
return false;
}
}
/**
* 强制为添加数据(会过滤掉PK字段)
* Power: Mikkle
* Email:776329498@qq.com
* @return bool
*/
public function add(){
try{
if (!$this->actionHandle()){
throw new Exception($this->getError());
}
$this->checkPk();
if ($this->isUpdate&&isset($this->saveData[$this->pk])){
unset($this->saveData[$this->pk]);
$this->isUpdate=false;
}
$this->result = $this->modelClass->allowField($this->allowField)->save($this->saveData);
return $this->result;
}catch (Exception $e){
$this->error=$e->getMessage();
Log::error($e->getMessage());
return false;
}
}
/**
* 执行model方法
* Power: Mikkle
* Email:776329498@qq.com
* @param $actionName
* @return bool
*/
public function execModelAction($actionName){
try{
if (!$this->actionHandle()){
throw new Exception($this->getError());
}
if (!method_exists($this->modelClass, $actionName)) {
throw new Exception("自定义的方法存在");
}
$this->result = $this->modelClass->$actionName($this->saveData);
return $this->result;
}catch (Exception $e){
$this->error=$e->getMessage();
Log::error($e->getMessage());
return false;
}
}
protected function actionHandle()
{
try{
$this->buildSaveData();
if (!$this->checkSaveDate()){
return false;
}
if (empty($this->modelType)){
$this->modelClass=Loader::model($this->model);
}else{
$this->modelClass=Loader::model($this->model,$this->modelType);
}
return true;
}catch (Exception $e){
Log::error($e->getMessage());
return false;
}
}
protected function checkPk(){
if (empty($this->pk)){
$this->pk= $this->modelClass->getPK();
}
if (isset($this->saveData[$this->pk])){
$this->isUpdate=true;
}
}
protected function checkSaveDate(){
switch (true) {
case (empty($this->saveData)):
$this->error="要保存的数据为空";
return false;
break;
case (empty($this->validate)):
return true;
break;
case (is_array($this->validate)):
$this->validateClass = Loader::validate();
$this->validateClass->rule($this->validate);
break;
default:
if (strpos($this->validate, '.')) {
// 支持场景
list($this->validate, $this->scene) = explode('.', $this->validate);
}
$this->validateClass = Loader::validate($this->validate);
if (!empty($scene)) {
$this->validateClass->scene($scene);
}
}
if (!$this->validateClass->check($this->saveData)) {
$this->error=$this->validateClass->getError();
return false;
} else {
return true;
}
}
protected function buildSaveData(){
switch (true) {
case (empty($this->parameter)&&empty($this->data)):
$this->saveData=$this->request->param();
break;
case (!empty($this->parameter)&&!empty($this->data)):
throw new Exception("参数和指定值不可同时设置,容许指定请使用append方法");
break;
case ($this->parameter):
$this->saveData = $this->buildParameter($this->parameter);
break;
case ($this->data):
$this->saveData = $this->data;
break;
default:
;
}
if ($this->append) {
$this->saveData=array_merge($this->saveData,$this->append);
}
}
/**
* 获取参数的方法
* Power: Mikkle
* Email:776329498@qq.com
* @param $array
* @return array
*/
static public function buildParameter($array)
{
$data=[];
$request=Request::instance();
foreach( $array as $item=>$value ){
$data[$item] = $request->param($value);
}
return $data;
}
/**
* 获取model
* Power: Mikkle
* Email:776329498@qq.com
* @return mixed
*/
public function getModel(){
return $this->modelClass;
}
/**
* 获取错误信息
* Power: Mikkle
* Email:776329498@qq.com
* @return mixed|string
*/
public function getError(){
switch (true) {
case (empty($this->error)):
return "";
break;
case (is_string($this->error)):
return $this->error;
break;
case (is_array($this->error)&&isset($this->error["msg"])):
return $this->error["msg"];
break;
case (is_array($this->error)):
return json_encode($this->error);
break;
default:
return json_encode($this->error);
}
}
}
~~~
- 序言及更新日志
- 前言一 开发PHP必备的环境(你可以不看)
- LinUX系统ThinkPHP5链接MsSQL数据库的pdo_dblib扩展
- centos7.2挂载硬盘攻略
- Centos系统Redis安装及Redis的PHP扩展安装
- Centos系统增加Swap(系统交换区)的方法
- 前言二 开发PHP软件配置和介绍(你依然可以不看)
- 数据库SQL文件
- 本地Git(版本控制)的搭建
- GIT远程仓库的克隆和推送
- Git常用命令
- PHP面向对象思想实战经验领悟
- PHP面向对象实战----命名空间
- PHP面向对象实战----继承
- 基类实战--底层方法封装
- 基类实战--构造函数实战
- 基类实战--析构函数的使用
- TP5实战开发前篇---控制器(controller)
- 控制器中Request类的使用
- 控制器中基类的使用
- TP5实战开发前篇---模型篇(model)
- TP5实战开发前篇---验证器篇(Validate)
- TP5实战课程入门篇---花拳绣腿
- 模块以及类的文件的建立
- Api开发------单条信息显示
- Api开发---单条信息复杂关联显示
- Api开发---查询信息缓存Cache的应用
- TP5实战技巧---开发思路 引路造桥
- TP5实战技巧---整合基类 化繁为简
- TP5实战课程入门篇---数据操作
- Api开发---数据的添加和修改
- API开发---快速开发API通用接口
- TP5专用微信sdk使用教程
- THINKPHP5微信SDK更新记录及升级指导
- TP5专用SDK 微信参数配置方法
- 微信公众号推送接口对接教程
- 微信推送接口对接示例含扫描登录微信端部分
- TP5专用微信支付SDK使用简介
- TP5专用支付宝支付SDK使用说明
- 使用NW将开发的网站打包成桌面应用
- TP5高阶实战课程 进阶篇概述
- 进阶篇一 实战开发之习惯及要求
- 进阶篇二 实战开发之控制器
- 控制器基类之控制器基类使用方法
- 控制器基类之控制器基类常用方法分享
- 控制器基类之构造函数的使用方法
- 进阶篇三 实战开发之权限控制
- TP5实战源码 --- 全局用户信息验证类Auth
- TP5实战源码 --- 微信Auth实战开发源码
- 进阶篇四 实战开发之模型
- 模型基类之模型基类的用途
- 模型基类之常用数据处理方法
- 模型逻辑层之实战代码(含事务)
- 模型实战开发之模型常用方法
- 模型实战源码 --- 乐观锁的应用
- 模型实战技巧---Model事件功能的使用
- 模型事件实战应用---数据库操作日志
- 进阶篇五 实战开发之缓存(Cache)
- TP5实战源码---应用缓存获取城市信息
- TP5实战源码---应用缓存获取分类详情
- 进阶篇六 TP5类库的封装和使用
- DataEdit快捷操作类库
- ShowCode快捷使用类库
- 阿里大于 短信API接口 TP5专用类库
- DatabaseUpgrade数据库对比及更新类库
- AuthWeb权限类使用说明
- 进阶篇七 服务层的应用
- 服务层源码示例
- 服务层基类源码
- 进阶篇八 应用层Redis数据处理基类
- Redis服务层基类源码
- 进阶篇九 使用Redis类库处理一般的抢购(秒杀)活动示例
- 进阶篇十 某大型项目应用本Redis类源码示例(含事务 乐观锁)
- 进阶篇十一 逻辑层的应用
- 逻辑层基类源码
- 进阶篇 服务层代码示例
- 高阶实战课程 进阶篇持续新增中
- 高阶篇一 TP5命令行之守护任务源码
- TP5实战源码 --- 命令行
- TP5实战源码 --- 通过shell建立PHP守护程序
- 高阶篇二 使用Redis队列发送微信模版消息
- 高阶篇二 之 Worker队列基类源码
- 高阶篇三 TP5实战之Redis缓存应用
- Redis实战源码之Hash专用类库源码
- Redis实战源码之Model类结合
- Redis实战源码之模型Hash基类源码
- Redis实战源码之Hash查询使用技巧
- Redis实战源码之 shell脚本中redis赋值和取值
- 高阶篇四 Swoole的实战应用
- swoole基类代码
- Swoole扩展WebsocketServer专用类
- 基于Swoole的多Room聊天室的程序
- Swoole守护服务shell源码
- 高阶篇五 命令行异步多进程队列类的应用
- tp_worker类源码
- WorkerBase
- WorkerCommand
- WorkerRedis
- Redis类
- CycleWorkBase
- WorkerHookBase异步钩子
- 队列日志SQL
- 高阶篇六 定时执行队列类库以及使用方法
- 定时队列类库源码
- 高阶篇七 异步执行循环队列类库以及使用教程
- CycleWorkBase源码
- 高阶实战课程 进阶篇持续新增中
- Extend便捷类库源码库
- 阿里相关类库
- SendSms--验证码API接口文件
- 权限相关类库目录
- AuthWeb 权限验证类库
- Redis便捷操作类库(20171224更新)
- Redis
- Tools工具类库集
- Curl类库
- DataEdit
- Rand类库
- ShowCode类库
- Upload类库
- 附件集合
- 附件一:微信支付 实战开发源码
- 微信支付类库源代码
- Common_util_pub.php
- DownloadBill_pub.php
- JsApi_pub.php
- NativeCall_pub.php
- NativeLink_pub.php
- OrderQuery_pub.php
- Refund_pub.php
- RefundQuery_pub.php
- SDKRuntimeException.php
- ShortUrl_pub.php
- UnifiedOrder_pub.php
- Wxpay_client_pub.php
- Wxpay_server_pub.php
- WxPayConf_pub.php
- 微信支付回调页面源码
- 附件二 顺丰快递BSP接口实战开发源码
- 顺丰快递BSP接口实战开发源码
- 顺丰BSP基类
- 顺丰BSP基础代码
- 顺丰BSP下单接口
- 顺丰BSP查单接口
- 顺丰BSP确认/取消接口
- 附件三 APP注册登陆接口源码(含融云平台接口)
- 附件四 TP5订单Model(含事务 获取器 修改器等方法)
- 附录五 RSA加密解密
- Rsa文件源码
- 附件六 阿里大于短信接口
- 附件七 AES加解密类
- AES加解密类源码
- 附件八 TP5路由设置源码
- 附件九 TP5 Excel导入导出下载便捷类库
- Excel类库TP5源码
- 附件十 TP5便捷操作Redis类库源码
- TP5源码 Redis操作便捷类库
- 附件十一 TP5源码 上传文件入库类源码
- 上传类Upload源码
- Upload类上传配置文件
- 存储图像文件的数据库SQL文件
- 存储文件的数据库SQL文件
- 附件十二 TP5 图片处理增强类 支持缩略图在线显示
- 附件十三 微信推送消息接口类库源码
- 附件十三 微信推送消息接口类库源码 之 基类
- 附件十四 存储微信昵称的处理方法