Cards.php
5.5 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
<?php
/**
* Created by PhpStorm.
* User: 86132
* Date: 2020/11/19
* Time: 8:35
*/
namespace app\api\controller;
use EasyWeChat\Foundation\Application;
use app\common\controller\Api;
use think\Db;
/**
* 海报分享接口
*/
class Cards extends Api
{
protected $noNeedLogin = ['*'];
protected $noNeedRight = ['*'];
/**
* 海报分享接口
* @ApiTitle (转发好友)
* @ApiSummary (转发好友)
* @ApiMethod (POST)
* @ApiRoute (/api/Cards/MiniAppOtherFriend)
* @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
* @ApiParams (name="Goods_id", type="integer", required=true, description="商品ID")
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturn ({
'code':'1',
'msg':'返回成功',
"data":
})
*/
public function MiniAppOtherFriend()
{
$UserId = $this->is_token($this->request->header());
$params = $this->request->param();
$GoodsArray = Db::name('goods')->where('id', $params['Goods_id'])->find();
if (empty($GoodsArray)) {
$this->error('分享错误', 0);
die;
}
$data = [
'Goods_id' => $GoodsArray['id'],
'User_id' => $UserId,
'Title' => $GoodsArray['title'],
'Image' => cdnurl($GoodsArray['image']),
];
$this->success('成功', $data);
}
/**
* 海报分享接口
* @ApiTitle (商品详情生成海报)
* @ApiSummary (商品详情生成海报)
* @ApiMethod (POST)
* @ApiRoute (/api/Cards/GoodsConNewsPaper)
* @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
* @ApiParams (name="Goods_id", type="integer", required=true, description="商品ID")
* @ApiParams (name="path", type="integer", required=true, description="路径")
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturn ({
'code':'1',
'msg':'返回成功',
"data":
})
*/
public function GoodsConNewsPaper()
{
$UserId = $this->is_token($this->request->header());
$params = $this->request->param();
$GoodsArray = Db::name('goods')->where('id', $params['Goods_id'])->find();
if (empty($GoodsArray)) {
$this->error('分享错误', 0);
die;
}
$UserInfo = Db::name('user')->where('id', $UserId)->find();
//小程序码
$MiniAppQrcodeUrl = $this->InserMiniAppQrCode($GoodsArray['id'], $UserId, $params['path']);
$data = [
'Avatar' => $UserInfo['avatar'],
'Nickname' => $UserInfo['nickname'],
'Goods_id' => $GoodsArray['id'],
'User_id' => $UserId,
'Title' => $GoodsArray['title'],
'Price' => $GoodsArray['price'],
'DeletePrice' => $GoodsArray['delete_price'],
'Image' => cdnurl($GoodsArray['image']),
'MiniAppQrcodeUrl' => $MiniAppQrcodeUrl
];
$this->success('成功', $data);
}
/**
* 海报分享接口
* @ApiTitle (邀请好友/测试题/名片海报)
* @ApiSummary (邀请好友/测试题/名片海报)
* @ApiMethod (POST)
* @ApiRoute (/api/Cards/CardsPaper)
* @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
* @ApiParams (name="path", type="integer", required=true, description="路径")
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturn ({
'code':'1',
'msg':'返回成功',
"data":
})
*/
public function CardsPaper()
{
$UserId = $this->is_token($this->request->header());
$params = $this->request->param();
$UserInfo = Db::name('user')->where('id', $UserId)->find();
// $is_invite_code = './MiniAppQrCode/' . $UserId . '.png';
// if (file_exists($is_invite_code) == true) {
// $MiniAppQrcodeUrl = $this->request->domain() . '/MiniAppQrCode/' . $UserId . '.png';
// } else {
//小程序码
// $MiniAppQrcodeUrl = $this->UserInserMiniAppQrCode($UserId, $params['path']);
// }
$MiniAppQrcodeUrl = $this->InserMiniAppQrCode(0, $UserId, $params['path']);
$data = [
'Avatar' => $UserInfo['avatar'],
'Nickname' => $UserInfo['nickname'],
'User_id' => $UserId,
'MiniAppQrcodeUrl' => $MiniAppQrcodeUrl
];
$this->success('成功', $data);
}
/**
* 海报分享接口
* @ApiTitle (分享)
* @ApiSummary (分享))
* @ApiMethod (POST)
* @ApiRoute (/api/Cards/MiniAppFriends)
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturn ({
'code':'1',
'msg':'返回成功',
"data":
})
*/
public function MiniAppFriends()
{
$Array = Db::name('miniappfriends')->where('id', 1)->find();
$data = [
'Title' => $Array['title'],
'Image' => cdnurl($Array['image']),
];
$this->success('成功', $data);
}
}