...
|
...
|
@@ -261,28 +261,28 @@ class Config extends Api |
|
|
//Gift
|
|
|
$IsHave = Db::name('message')->where(['user_id' => $UserId, 'ob_id' => $Params['ob_id'], 'type' => 2])->find();
|
|
|
if ($Params['gift_id'] != 0) {
|
|
|
if (!empty($IsHave)) {
|
|
|
//update
|
|
|
if ($IsHave['gift_id'] != 0) {
|
|
|
// $this->error('只能送出一份礼物');
|
|
|
}
|
|
|
$data = [
|
|
|
'gift_id' => $Params['gift_id']
|
|
|
];
|
|
|
$Res = Db::name('message')->where(['user_id' => $UserId, 'ob_id' => $Params['ob_id'], 'type' => 2])->update($data);
|
|
|
} else {
|
|
|
//add
|
|
|
$data = [
|
|
|
'user_id' => $UserId,
|
|
|
'ob_id' => $Params['ob_id'],
|
|
|
'type' => 2,
|
|
|
'touser_id' => $ObInfo['user_id'],
|
|
|
'message' => $Params['message'],
|
|
|
'gift_id' => $Params['gift_id'],
|
|
|
'createtime' => time()
|
|
|
];
|
|
|
$Res = Db::name('message')->insert($data);
|
|
|
}
|
|
|
// if (!empty($IsHave)) {
|
|
|
// //update
|
|
|
// if ($IsHave['gift_id'] != 0) {
|
|
|
//// $this->error('只能送出一份礼物');
|
|
|
// }
|
|
|
// $data = [
|
|
|
// 'gift_id' => $Params['gift_id']
|
|
|
// ];
|
|
|
// $Res = Db::name('message')->where(['user_id' => $UserId, 'ob_id' => $Params['ob_id'], 'type' => 2])->update($data);
|
|
|
// } else {
|
|
|
//add
|
|
|
$data = [
|
|
|
'user_id' => $UserId,
|
|
|
'ob_id' => $Params['ob_id'],
|
|
|
'type' => 2,
|
|
|
'touser_id' => $ObInfo['user_id'],
|
|
|
'message' => $Params['message'],
|
|
|
'gift_id' => $Params['gift_id'],
|
|
|
'createtime' => time()
|
|
|
];
|
|
|
$Res = Db::name('message')->insert($data);
|
|
|
// }
|
|
|
} else {
|
|
|
//Message
|
|
|
// if (!empty($IsHave)) {
|
...
|
...
|
@@ -295,17 +295,17 @@ class Config extends Api |
|
|
// ];
|
|
|
// $Res = Db::name('message')->where(['user_id' => $UserId, 'ob_id' => $Params['ob_id'], 'type' => 2])->update($data);
|
|
|
// } else {
|
|
|
//add
|
|
|
$data = [
|
|
|
'user_id' => $UserId,
|
|
|
'ob_id' => $Params['ob_id'],
|
|
|
'type' => 2,
|
|
|
'touser_id' => $ObInfo['user_id'],
|
|
|
'message' => $Params['message'],
|
|
|
'gift_id' => $Params['gift_id'],
|
|
|
'createtime' => time()
|
|
|
];
|
|
|
$Res = Db::name('message')->insert($data);
|
|
|
//add
|
|
|
$data = [
|
|
|
'user_id' => $UserId,
|
|
|
'ob_id' => $Params['ob_id'],
|
|
|
'type' => 2,
|
|
|
'touser_id' => $ObInfo['user_id'],
|
|
|
'message' => $Params['message'],
|
|
|
'gift_id' => $Params['gift_id'],
|
|
|
'createtime' => time()
|
|
|
];
|
|
|
$Res = Db::name('message')->insert($data);
|
|
|
// }
|
|
|
}
|
|
|
$this->Res($Res);
|
...
|
...
|
|