Treasured.php
7.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
namespace app\api\controller;
use dh2y\qrcode\QRcode;
/**
* 墨宝档案
* @package app\api\controller
*/
class Treasured extends BaseApi
{
protected $noNeedLogin = '';
protected $noNeedRight = '*';
/**
* 获取墨宝档案尺寸
* @ApiTitle (获取墨宝档案尺寸)
* @ApiMethod (POST)
* @ApiRoute (/api/treasured/getTreasuredSize)
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturnParams (name="data", type="object", description="扩展数据返回")
* @ApiReturn ({
"code": 1,
"msg": "获取数据成功",
"time": "1609298080",
"data": [
{
"id": "尺寸id",
"name": "尺寸名称",
"createtime": "2020-12-29 09:18:49"
}
]
})
*/
public function getTreasuredSize(){
$TreasuredSize = model('TreasuredSize')->order('weigh','desc')->field('id,name,createtime')->select();
$this->success('获取数据成功',$TreasuredSize);
}
/**
* 增加墨宝档案
* @ApiTitle (增加墨宝档案)
* @ApiMethod (POST)
* @ApiRoute (/api/treasured/addTreasured)
* @ApiParams (name="url", type="string", required=true, description="你的域名 精确到id 用于二维码生成")
* @ApiParams (name="author", type="string", required=true, description="墨宝作者")
* @ApiParams (name="title", type="string", required=true, description="墨宝标题")
* @ApiParams (name="content", type="string", required=true, description="墨宝内容")
* @ApiParams (name="images", type="string", required=true, description="图片数组{不带域名}")
* @ApiParams (name="production_typeface_id", type="integer", required=true, description="字体ID")
* @ApiParams (name="treasured_size_id", type="integer", required=true, description="尺寸ID")
* @ApiParams (name="production_format_id", type="integer", required=true, description="格式ID")
* @ApiParams (name="status", type="integer", required=true, description="状态:0=待出售,1=已出售,2=非卖品")
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturnParams (name="data", type="object", description="扩展数据返回")
* @ApiReturn ({
"code": 1,
"msg": "增加墨宝档案成功",
"time": "1609306718",
"data": {
"id": 1,
"user_id": "用户ID",
"avatar": "用户头像",
"nickname": "用户昵称",
"title": "我是文章标题",
"number": "墨宝编号",
"author": "作者",
"images": "墨宝图片",
"content": "墨宝内容",
"production_typeface": "书体名称",
"production_typeface_id": "书体id{用的作品里面的书体}",
"production_format": "格式名称",
"production_format_id": "用的作品里面的格式",
"treasured_size": "尺寸名称",
"treasured_size_id": "尺寸id",
"status": "状态:0=待出售,1=已出售,2=非卖品",
"zan_num": "点赞数量",
"createtime": "2020-12-30 13:38:38",
"updatetime": "2020-12-30 13:38:38",
"deletetime": null,
"message": null
}
})
*/
public function addTreasured(){
//1.验证用户权限
if ($this->auth->authlist == '' || $this->auth->authlist == ','){
$this->error('请您先实名认证');
}
//2.获取数据
$data = $this->get_data_array([
['url','域名不能为空'],
['title','作品标题不能为空'],
['content','内容不存在'],
['images','图片必须上传'],
['production_typeface_id','字体ID必须传入'],
['treasured_size_id','尺寸ID必须传入'],
['production_format_id','格式ID必须传入'],
['status','状态必须填写 0=待出售,1=已出售,2=非卖品'],
]);
//3.获取图片数据
$files = str_replace('"','"',$data['images']);
$images = implode(',',json_decode($files,true));
//4.查询数据
$typeface = model('production_typeface')->where('id',$data['production_typeface_id'])->find();
$treasured_size = model('treasured_size')->where('id',$data['treasured_size_id'])->find();
$format = model('production_format')->where('id',$data['production_format_id'])->find();
if (!$typeface || !$treasured_size || !$format){
$this->error('数据不存在');
}
$data['production_typeface'] = $typeface['name'];
$data['treasured_size'] = $treasured_size['name'];
$data['production_format'] = $format['name'];
$data['user_id'] = $this->auth->id;
$data['avatar'] = $this->auth->avatar;
$data['nickname'] = $this->auth->nickname;
$data['images'] = $images;
if (isset($data['url'])){
$url = $data['url'];
unset($data['url']);
}
//5.增加墨宝
$treasured = model('treasured')->create($data);
//6.查询数据
$treasured = model('treasured')->where('id',$treasured['id'])->find();
//7.生成二维码及海报
$qr_code_bg = model('config')->where('name','qr_code_bg')->find();
if ($qr_code_bg && !empty($qr_code_bg['value'])){
$code = new QRcode();
$qr_code = $code->png($url.$treasured['id']) //生成二维码
->logo(ROOT_PATH.'public/assets/img/bg.png',4,1.97) //生成logo二维码
->logo($this->auth->avatar)//生成logo二维码
->getPath();//获取二维码生成的地址
$qr_code_d = $code->png($url.$treasured['id']) //生成二维码
->logo(ROOT_PATH.'public/assets/img/bg.png',4,1.97) //生成logo二维码
->logo($this->auth->avatar)//生成logo二维码
->background(550,950,cdnurl($qr_code_bg['value'])) //给二维码加上背景
->getPath();//获取二维码生成的地址
// $qr_code = $this->createQrCode($url.$treasured['id'],4,1.97);
// $qr_code = $this->createQrCode($url.$treasured['id'],4,1.97,cdnurl($qr_code_bg['value']));
//8.更新数据
$treasured->qr_code = this_url().$qr_code;
$treasured->qr_code_d = this_url().$qr_code_d;
$treasured->save();
}
//9.返回结果
$this->success('增加墨宝档案成功',$treasured);
}
public function createQrCode($name,$size = 5,$bili = 2,$qr_code_bg = null){
$code = new QRcode();
if ($qr_code_bg){
$qr_code = $code->png($name) //生成二维码
->logo(ROOT_PATH.'public/assets/img/bg.png',$size,$bili) //生成logo二维码
->logo($this->auth->avatar)//生成logo二维码
->background(600,1020,$qr_code_bg) //给二维码加上背景
->getPath();//获取二维码生成的地址
}else{
$qr_code = $code->png($name) //生成二维码
->logo(ROOT_PATH.'public/assets/img/bg.png',$size,$bili) //生成logo二维码
->logo($this->auth->avatar)//生成logo二维码
->getPath();//获取二维码生成的地址
}
return $qr_code;
}
}