Bind.php
7.8 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<?php
namespace app\api\controller;
use app\common\controller\Api;
use think\Db;
use think\Exception;
use think\exception\PDOException;
/**
* 绑定资质
* @ApiWeigh (96)
*/
class Bind extends Api
{
protected $noNeedLogin = [''];
protected $noNeedRight = ['*'];
/**
* @ApiTitle (输入学号绑定信息)
* @ApiMethod (POST)
* @ApiParams (name="xh", type="string", required=true, description="学号")
* @ApiReturn ({
"code":"状态码",
"msg": "提示消息",
"data": {}
})
*/
public function inputSno()
{
$sno = $this->request->param('sno');
$user = $this->auth->getUserinfo();
if (empty($sno)) {
$this->error('参数错误', ['status' => 2]);
}
$is_bind = db('user')->where('id', $user['id'])->value('bind_study');
if ($is_bind == 1) {
$this->error('您当前已经绑定过学生了,请勿重复操作', $is_bind);
}
Db::startTrans();
try {
db('study')
->where('sno', $sno)
->update([
'user_id' => $user['id'],
'updatetime' => time()
]);
\db('user')
->where('id', $user['id'])
->update([
'bind_study' => 1,
'updatetime' => time()
]);
Db::commit();
} catch (Exception $e) {
Db::rollback();
$this->error('参数错误', $e->getMessage());
}
$this->success('绑定成功');
}
/**
* @ApiTitle (扫码绑定信息)
* @ApiMethod (POST)
* @ApiParams (name="unique", type="string", required=true, description="条形码id")
* @ApiReturn ({
"code":"状态码",
"msg": "提示消息",
"data": {}
})
*/
public function scanCode()
{
$unique = $this->request->param('unique');
$user = $this->auth->getUserinfo();
if (empty($unique)) {
$this->error('参数错误', ['status' => 2]);
}
$is_bind = db('user')->where('id', $user['id'])->value('bind_study');
if ($is_bind == 1) {
$this->error('您当前已经绑定过学生了,请勿重复操作', $is_bind);
}
Db::startTrans();
try {
db('study')
->where('unique', $unique)
->update([
'user_id' => $user['id'],
'updatetime' => time()
]);
\db('user')
->where('id', $user['id'])
->update([
'bind_study' => 1,
'updatetime' => time()
]);
Db::commit();
} catch (Exception $e) {
Db::rollback();
$this->error('参数错误', $e->getMessage());
}
$data = db('study')->where('unique', $unique)->field('id,grade,name,sno')->find();
$this->success('绑定成功', [$data, 'status' => 1]);
}
/**
* @ApiTitle (项目管理[老师])
* @ApiMethod (POST)
* @ApiReturn ({
"code":"状态码",
"msg": "提示消息",
"data": {
"id": 项目id,
"title": "项目名称",
"radar_id": "维度id",
"user_id": "用户id",
"ronda_id": "场次id",
"score": "项目积分",
"createtime": "创建时间",
"updatetime": "更新时间"
}
})
*/
public function teachItem()
{
$user = $this->auth->getUserinfo();
$data = db('item')
->where('user_id', $user['id'])
->select();
if (empty($data)) {
$this->error('当前还未关联项目', ['status' => 2]);
}
$this->success('获取项目成功', [$data, 'status' => 1]);
}
/**
* @ApiTitle (活动现场[扫码])
* @ApiMethod (POST)
* @ApiParams (name="items_id", type="string", required=true, description="项目id")
* @ApiParams (name="unique", type="string", required=true, description="条形码唯一标识")
* @ApiReturn ({
"code":"状态码",
"msg": "提示消息",
"data": {
"name": "姓名",
"gender": "性别",
"sno": "学号"
}
})
*/
public function Ewm()
{
$items_id = $this->request->param('items_id');
$unique = $this->request->param('unique');
if (empty($unique) && empty($items_id)) {
$this->error('参数错误', ['status' => 2]);
}
$study = db('study')->where('unique', $unique)->field('id,grade,name,sno,team_id,earn_score')->find();
$rel = \db('item_ronda_rel')->where('item_id', $items_id)->find();
$item = db('item')->where('id', $rel['item_id'])->field('score,title')->find();
$team = \db('team')->where('id', $study['team_id'])->field('title,score')->find();
$sum1 = $team['score'] + $item['score']; //合计战队总分
$sum2 = $study['earn_score'] + $item['score']; //合计个人总分
Db::startTrans();
try {
db('study_score_log')->insert([
'item_id' => $items_id,
'campus_id' => $rel['campus_id'],
'study_id' => $study['id'],
'team_id' => $study['team_id'],
'score' => $item['score'],
'memo' => $study['name'] . '参加' . $item['title'] . '项目给' . $team['title'] . '加分',
'createtime' => time()
]);
db('study')
->where('id', $study['id'])
->update([
'earn_score' => $sum2,
]);
\db('team')
->where('id', $study['team_id'])
->update([
'score' => $sum1,
'updatetime' => time()
]);
Db::commit();
} catch (Exception $e) {
Db::rollback();
$this->error('连接错误', ['status' => 3]);
}
$data = db('study')->where('unique', $unique)->field('name,gender,sno')->find();
$this->success('扫码成功', [$data, 'status' => 1]);
}
/**
* @ApiTitle (获取学生信息)
* @ApiMethod (POST)
* @ApiParams (name="campus_id", type="string", required=true, description="校区id")
* @ApiReturn ({
"code":"状态码",
"msg": "提示消息",
"data": {
"study_info": 学生信息{
"avatar": "学生头像",
"name": "学生名称",
"earn_score": "学生获得分数"
},
"study_score": 学生积分构成{
"total": 2,
"per_page": 3,
"current_page": 1,
"last_page": 1,
"data": [
{
"item_id": 项目id,
"sum_score": "项目所获分数",
"item_ronda": 项目对应雷达维度名称[
{
"radar_id": 雷达维度id,
"title": "雷达维度名称"
}
]
},}
})
*/
public function getScore()
{
$user = $this->auth->getUserinfo();
$campus_id = $this->request->param('campus_id');
$sid = \db('study')->where('user_id', $user['id'])->value('id');
//获取学生的信息
$data['study_info'] = \db('study')->where('id', $sid)->field('avatar,name,earn_score')->find();
//获取雷达维度
$data['study_score'] = \db('study_score_log')
->distinct('item_id')
->field('item_id,SUM(score) as sum_score')
->group('item_id')
->where(['campus_id' => $campus_id, 'study_id' => $sid])
->paginate(3, false)
->each(function ($item, $key) {
$item['item_radar'] = \db('item i')
->join('radar r', 'i.radar_id = r.id')
->where('i.id', $item['item_id'])
->field('i.radar_id,r.title')
->select();
return $item;
});
$this->success('获取学生信息成功', [$data, 'status' => 1]);
}
}