Merge branch 'master' of https://git.shagain.club/shulang/webman
This commit is contained in:
commit
05fb46057b
|
@ -13,7 +13,7 @@ class ApiResponseApp
|
|||
return json([
|
||||
'code' => $code,
|
||||
'data' => $data,
|
||||
'msg' => $message,
|
||||
'msg' => trans($message),
|
||||
'time' => time()
|
||||
]);
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ class ApiResponseApp
|
|||
$code = 0;
|
||||
return json([
|
||||
'code' => $code,
|
||||
'msg' => $message,
|
||||
'msg' => trans($message),
|
||||
'data' => $data,
|
||||
'time' => time()
|
||||
]);
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace app\controller;
|
||||
|
||||
use app\model\Recommend;
|
||||
use App\Utils\API\PaymentNew;
|
||||
use support\Request;
|
||||
|
||||
use App\Utils\ApiResponse;
|
||||
use support\Log;
|
||||
|
||||
class RecommendController
|
||||
{
|
||||
protected $noNeedLogin = ['index'];
|
||||
/**
|
||||
* @Apidoc\Title("1.0 获取vip等级赠送积分")
|
||||
* @Apidoc\Url("Recommend/index")
|
||||
* @Apidoc\Method("POST")
|
||||
*/
|
||||
public function index(Request $request)
|
||||
{
|
||||
$invite_code = $request->get('invite_code');
|
||||
$Recommend = Recommend::where('invite_code', $invite_code)->first();
|
||||
if (!empty($Recommend)) {
|
||||
$Recommend->open += 1;
|
||||
$Recommend->save();
|
||||
return redirect("http://127.0.0.1:8787/#/reg?i=$invite_code", 302);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
|
@ -38,9 +38,9 @@ class JobuserController
|
|||
if (!empty($data['key'])) {
|
||||
$key = $data['key'];
|
||||
$query->where(function ($query) use ($key) {
|
||||
$query->where('username', 'like', '%' . $key . '%')
|
||||
->orWhere('invite_code', 'like', '%' . $key . '%')
|
||||
->orWhere('remark', 'like', '%' . $key . '%');
|
||||
$query->where('users.username', 'like', '%' . $key . '%')
|
||||
->orWhere('users.invite_code', 'like', '%' . $key . '%')
|
||||
->orWhere('users.remark', 'like', '%' . $key . '%');
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -52,13 +52,25 @@ class JobuserController
|
|||
}
|
||||
|
||||
// 使用 join 进行关联查询 f_id 对应的用户名称
|
||||
$users = $query->leftJoin('users as u', 'users.f_id', '=', 'u.id') // 假设 users 表有 id 字段,f_id 关联到父用户
|
||||
->select('users.*', 'u.username as parent_username') // 选择用户表的字段和关联表的 username 字段
|
||||
->orderBy('id', 'desc')
|
||||
->get(); // 或者使用 paginate() 来进行分页
|
||||
$users = $query->leftJoin('users as u', 'users.f_id', '=', 'u.id') // 假设 users 表有 id 字段,f_id 关联到父用户
|
||||
->select(
|
||||
'users.id',
|
||||
'users.username',
|
||||
'users.updated_at',
|
||||
'users.invite_code',
|
||||
'users.login_time',
|
||||
'users.money',
|
||||
'users.remark',
|
||||
'users.status',
|
||||
'users.vip_id',
|
||||
'users.created_at',
|
||||
'u.username as parent_username' // 选择所需字段,并为父用户用户名起别名
|
||||
)->where('users.isrobot',0)
|
||||
->orderBy('users.id', 'desc')->get(); // 确保按 users 表的 id 排序
|
||||
|
||||
// 格式化结果为数组
|
||||
return ApiResponse::success(200, $users->toArray());
|
||||
|
||||
// 返回分页结果
|
||||
return ApiResponse::success(200, $users);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -0,0 +1,130 @@
|
|||
<?php
|
||||
|
||||
namespace app\controller\admin\api\v1;
|
||||
|
||||
use app\dao\UserDao;
|
||||
use app\dao\UserRewardDao;
|
||||
use support\Request;
|
||||
use App\Utils\ApiResponse;
|
||||
use App\model\Admin;
|
||||
use app\model\Recommend;
|
||||
use app\model\User;
|
||||
use app\model\UserPhone;
|
||||
use app\model\UserPhoneLog;
|
||||
use hg\apidoc\annotation as Apidoc;
|
||||
use app\model\Withdraw;
|
||||
use App\Utils\Random;
|
||||
use support\Db;
|
||||
|
||||
/**
|
||||
* @Apidoc\Title("admin推广链接控制器")
|
||||
* @Apidoc\Group("admin")
|
||||
*/
|
||||
class PromotionController
|
||||
{
|
||||
/**
|
||||
* @Apidoc\Title("管理员生成推广链接")
|
||||
* @Apidoc\Url("admin/api/v1/Promotion/Generatelink")
|
||||
* @Apidoc\Method("POST")
|
||||
*/
|
||||
public function Generatelink(Request $request)
|
||||
{
|
||||
$invite_code = UserDao::Createuser();
|
||||
return ApiResponse::success(200, $invite_code);
|
||||
}
|
||||
/**
|
||||
* @Apidoc\Title("获取推广列表所有")
|
||||
* @Apidoc\Url("admin/api/v1/Promotion/list")
|
||||
* @Apidoc\Method("POST")
|
||||
*/
|
||||
public function list(Request $request)
|
||||
{
|
||||
// 获取请求的参数
|
||||
$data = $request->post();
|
||||
|
||||
// 构建查询构造器
|
||||
$query = User::query();
|
||||
|
||||
// 根据 key 进行模糊查询
|
||||
if (!empty($data['key'])) {
|
||||
$key = $data['key'];
|
||||
$query->where(function ($query) use ($key) {
|
||||
$query->where('users.invite_code', 'like', '%' . $key . '%')
|
||||
->orWhere('users.remark', 'like', '%' . $key . '%');
|
||||
});
|
||||
}
|
||||
|
||||
// 根据 status 过滤,假设 status 字段存在并且不是 -1
|
||||
if (isset($data['status']) && $data['status'] != -1) {
|
||||
$status = (int)$data['status']; // 强制转换为整数
|
||||
// 使用 users 表的别名明确指定 status 字段
|
||||
$query->where('users.status', $status);
|
||||
}
|
||||
|
||||
// 使用 join 进行关联查询 f_id 对应的用户名称
|
||||
$users = $query->leftJoin('users as u', 'users.f_id', '=', 'u.id') // 假设 users 表有 id 字段,f_id 关联到父用户
|
||||
->select(
|
||||
'users.id',
|
||||
'users.username',
|
||||
'users.updated_at',
|
||||
'users.invite_code',
|
||||
'users.login_time',
|
||||
'users.money',
|
||||
'users.remark',
|
||||
'users.status',
|
||||
'users.vip_id',
|
||||
'users.created_at',
|
||||
'u.username as parent_username' // 选择所需字段,并为父用户用户名起别名
|
||||
)->where('users.isrobot', 1)
|
||||
->orderBy('users.id', 'desc')->get(); // 确保按 users 表的 id 排序
|
||||
return ApiResponse::success(200, $users);
|
||||
}
|
||||
|
||||
/**
|
||||
* @Apidoc\Title(" 获取推广链接详细注册名单")
|
||||
* @Apidoc\Url("admin/api/v1/Promotion/detailed")
|
||||
* @Apidoc\Param("invite_code", type="string", require=true, desc="机器人的邀请码")
|
||||
* @Apidoc\Param("start_date", type="string", require=false, desc="开始时间,格式:YYYY-MM-DD")
|
||||
* @Apidoc\Param("end_date", type="string", require=false, desc="结束时间,格式:YYYY-MM-DD")
|
||||
* @Apidoc\Method("POST")
|
||||
*/
|
||||
public function detailed(Request $request)
|
||||
{
|
||||
$data = $request->post();
|
||||
|
||||
// 获取机器人邀请码对应的用户 ID
|
||||
$users = User::where('robot_invite_code', $data['invite_code'])->pluck('id')->toArray();
|
||||
|
||||
// 获取时间段参数,默认使用今天
|
||||
$startDate = isset($data['start_date']) ? $data['start_date'] : date('Y-m-d');
|
||||
$endDate = isset($data['end_date']) ? $data['end_date'] : date('Y-m-d');
|
||||
|
||||
// 获取用户手机号(按 user_id 分组)并根据时间范围筛选
|
||||
$UserPhone = UserPhone::whereIn('user_id', $users)
|
||||
->whereBetween('created_at', [$startDate . ' 00:00:00', $endDate . ' 23:59:59']) // 时间范围筛选
|
||||
->select('user_id', DB::raw('count(*) as phone_count')) // 聚合查询,按 user_id 分组,计算每个 user_id 的手机数量
|
||||
->groupBy('user_id')
|
||||
->get();
|
||||
|
||||
// 获取注册的用户数量,按时间筛选
|
||||
$res['register'] = User::whereIn('id', $users)
|
||||
->whereBetween('created_at', [$startDate . ' 00:00:00', $endDate . ' 23:59:59']) // 时间范围筛选
|
||||
->count();
|
||||
|
||||
// 获取绑定手机号的用户数量
|
||||
$res['binding'] = count($UserPhone);
|
||||
|
||||
// 获取注册的用户详细信息(筛选注册时间段)
|
||||
$res['register_user'] = User::whereIn('id', $users)
|
||||
->whereBetween('created_at', [$startDate . ' 00:00:00', $endDate . ' 23:59:59']) // 时间范围筛选
|
||||
->get();
|
||||
|
||||
// 获取绑定手机号的用户详细信息
|
||||
$userIdsWithPhones = $UserPhone->pluck('user_id')->toArray(); // 获取绑定手机号的用户 ID 列表
|
||||
$res['binding_user'] = User::whereIn('id', $userIdsWithPhones)
|
||||
->whereBetween('created_at', [$startDate . ' 00:00:00', $endDate . ' 23:59:59']) // 时间范围筛选
|
||||
->get();
|
||||
|
||||
return ApiResponse::success(200, $res);
|
||||
}
|
||||
}
|
|
@ -18,7 +18,7 @@ use support\exception\BusinessException;
|
|||
*/
|
||||
class UploadController
|
||||
{
|
||||
protected $noNeedLogin = ['image', 'index', 'imageAiEditor'];
|
||||
// protected $noNeedLogin = ['image', 'index', 'imageAiEditor'];
|
||||
/**
|
||||
* @Apidoc\Title("1.0 测试图片上传")
|
||||
* @Apidoc\Url("admin/api/v1/Upload/image")
|
||||
|
|
|
@ -21,7 +21,7 @@ class WithdrawController
|
|||
{
|
||||
/**
|
||||
* @Apidoc\Title("1.0 获取系统所有账变明细")
|
||||
* @Apidoc\Url("admin/api/v1/withdraw/lists1")
|
||||
* @Apidoc\Url("admin/api/v1/withdraw/lists")
|
||||
* @Apidoc\Method("POST")
|
||||
*/
|
||||
public function lists(Request $request)
|
||||
|
@ -65,7 +65,7 @@ class WithdrawController
|
|||
}
|
||||
/**
|
||||
* @Apidoc\Title("管理员同意转账")
|
||||
* @Apidoc\Url("admin/api/v1/withdraw/")
|
||||
* @Apidoc\Url("admin/api/v1/withdraw/pushMoney")
|
||||
* @Apidoc\Method("POST")
|
||||
*/
|
||||
public function pushMoney(Request $request)
|
||||
|
|
|
@ -65,6 +65,8 @@ class TaskController
|
|||
return ApiResponseApp::error([], '您已登陆');
|
||||
}
|
||||
if ($res['code'] == 0) {
|
||||
//删除以前未登录成功的日志
|
||||
$GetLodeLog = GetLodeLog::where('phone', $phone)->delete();
|
||||
$GetLodeLog = new GetLodeLog();
|
||||
$GetLodeLog->phone = $phone;
|
||||
$GetLodeLog->status = 0;
|
||||
|
@ -81,31 +83,40 @@ class TaskController
|
|||
{
|
||||
$user_id = $request->data['id'];
|
||||
$phone = $request->post('phone');
|
||||
|
||||
// 获取对应手机号的加载日志
|
||||
$GetLodeLog = GetLodeLog::where('phone', $phone)->first();
|
||||
if(is_null($GetLodeLog)){
|
||||
return ApiResponseApp::error([],'请发送验证码');
|
||||
//应该是不会出现没获取验证码就getcode
|
||||
// return ApiResponseApp::error([],'请发送验证码');
|
||||
return ApiResponseApp::success([]);
|
||||
}
|
||||
|
||||
// 如果状态是 0,表示验证码未使用,直接返回成功
|
||||
if ($GetLodeLog->status == 0) {
|
||||
return ApiResponseApp::success([]);
|
||||
}
|
||||
|
||||
// 如果状态是 1,表示验证码已使用,更新状态为 2 并返回验证码
|
||||
if ($GetLodeLog->status == 1) {
|
||||
$GetLodeLog->status = 2;
|
||||
$GetLodeLog->save();
|
||||
return ApiResponseApp::success(['code' => $GetLodeLog->code]);
|
||||
}
|
||||
/**
|
||||
* 这里查询是否上号成功 2是等待上号
|
||||
*/
|
||||
|
||||
// 状态为 2,表示正在等待上号,检查上号状态
|
||||
if ($GetLodeLog->status == 2) {
|
||||
$ws_build_status = SendCode::get_ws_status($phone);
|
||||
//上号成功
|
||||
|
||||
// 如果上号成功
|
||||
if ($ws_build_status == 0) {
|
||||
//检查是否在本地库中 如果不在则是全新
|
||||
$count = UserPhone::where('phone', $phone)->count();
|
||||
if ($count == 0) {
|
||||
//查询用户名下有没有绑定手机号
|
||||
// 查询本地是否存在该手机号
|
||||
$UserPhone = UserPhone::where('phone', $phone)->first();
|
||||
|
||||
// 如果手机号不在本地数据库中,说明是全新手机号
|
||||
if (is_null($UserPhone)) {
|
||||
// 如果该用户没有关联手机号,首次关联赠送积分
|
||||
if (UserPhone::where('user_id', $user_id)->count() == 0) {
|
||||
//首次成功关联,赠送50积分
|
||||
UserRewardDao::base($user_id, 4, 50, '首次关联手机号送50积分');
|
||||
$UserPhone = new UserPhone();
|
||||
$UserPhone->phone = $phone;
|
||||
|
@ -113,27 +124,29 @@ class TaskController
|
|||
$UserPhone->score = 0;
|
||||
$UserPhone->status = 1;
|
||||
$UserPhone->time = 0;
|
||||
$UserPhone->last_time =time();
|
||||
$UserPhone->last_time = time();
|
||||
$UserPhone->save();
|
||||
}
|
||||
}
|
||||
//本地库存在
|
||||
if ($count > 0) {
|
||||
$UserPhone = UserPhone::where('phone', $phone)->first();
|
||||
} else {
|
||||
// 本地已存在手机号,更新用户信息
|
||||
$UserPhone->user_id = $user_id;
|
||||
$UserPhone->score = 0;
|
||||
$UserPhone->status = 1;
|
||||
$UserPhone->time = 0;
|
||||
$UserPhone->last_time =time();
|
||||
$UserPhone->last_time = time();
|
||||
$UserPhone->save();
|
||||
}
|
||||
|
||||
// 删除验证码日志记录
|
||||
$GetLodeLog->delete();
|
||||
}
|
||||
|
||||
return ApiResponseApp::success([]);
|
||||
}
|
||||
|
||||
return ApiResponseApp::success([]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @Apidoc\Title("1.0 返回用户ws号在线状态")
|
||||
* @Apidoc\Url("api/task/phone_list")
|
||||
|
|
|
@ -14,8 +14,12 @@ use App\Utils\ApiResponseApp;
|
|||
use App\dao\UserDao;
|
||||
use app\dao\UserPhoneLogDao;
|
||||
use app\dao\UserRewardDao;
|
||||
use app\model\Recommend;
|
||||
use app\model\Reward;
|
||||
use app\model\UserPhone;
|
||||
use app\model\UserReward;
|
||||
use hg\apidoc\annotation as Apidoc;
|
||||
|
||||
/**
|
||||
* @Apidoc\Title("用户控制器")
|
||||
*/
|
||||
|
@ -45,14 +49,14 @@ class UserController
|
|||
|
||||
// // 如果未找到用户,返回错误
|
||||
if (!$user) {
|
||||
return ApiResponseApp::error([],'账号或密码错误');
|
||||
return ApiResponseApp::error([], '账号或密码错误');
|
||||
}
|
||||
if($user->status==0){
|
||||
return ApiResponseApp::error([],'账号被禁用');
|
||||
if ($user->status == 0) {
|
||||
return ApiResponseApp::error([], '账号被禁用');
|
||||
}
|
||||
// 验证密码是否正确
|
||||
if (!password_verify($password, $user->password)) {
|
||||
return ApiResponseApp::error([],'账号或密码错误');
|
||||
return ApiResponseApp::error([], '账号或密码错误');
|
||||
}
|
||||
$user->login_ip = $request->getRealIp($safe_mode = true);
|
||||
$user->login_time = time();
|
||||
|
@ -85,18 +89,30 @@ class UserController
|
|||
return ApiResponseApp::error([], "账号已存在");
|
||||
}
|
||||
$f_id = 0;
|
||||
$ff_id =0;
|
||||
$ff_id = 0;
|
||||
$length = strlen($invitation);
|
||||
$user = new User();
|
||||
if (!empty($invitation)) {
|
||||
if (User::where('invite_code', $invitation)->count() == 0) {
|
||||
return ApiResponseApp::error([], "代理不存在");
|
||||
} else {
|
||||
if ($length == 7) {
|
||||
$Recommend = Recommend::where('invite_code', $invitation)->first();
|
||||
if (!empty($Recommend)) {
|
||||
$user->robot_invite_code = $invitation;
|
||||
$Recommend->register += 1;
|
||||
$Recommend->save();
|
||||
}
|
||||
}
|
||||
|
||||
if ($length == 5) {
|
||||
if (User::where('invite_code', $invitation)->count() == 0) {
|
||||
return ApiResponseApp::error([], "代理不存在");
|
||||
}
|
||||
$f = User::where('invite_code', $invitation)->first();
|
||||
$f_id=$f->id;
|
||||
$f_id = $f->id;
|
||||
$ff_id = $f->f_id;
|
||||
$f->vip_id+=1;
|
||||
$f->vip_id += 1;
|
||||
}
|
||||
}
|
||||
$user = new User();
|
||||
|
||||
$col = ['username'];
|
||||
foreach ($col as $v) {
|
||||
$user->$v = $request->post($v);
|
||||
|
@ -107,8 +123,7 @@ class UserController
|
|||
$user->invite_code = Random::str_random(5);
|
||||
$user->password = password_hash($password, PASSWORD_DEFAULT);
|
||||
$user->save();
|
||||
$user_new=User::where('username', $username)->first();
|
||||
var_dump($user_new);
|
||||
$user_new = User::where('username', $username)->first();
|
||||
UserRewardDao::Register_for_free($user_new->id);
|
||||
return ApiResponseApp::success([], '注册成功');
|
||||
}
|
||||
|
@ -120,7 +135,7 @@ class UserController
|
|||
public function userInfo(Request $request)
|
||||
{
|
||||
$user_id = $request->data['id'];
|
||||
|
||||
|
||||
return ApiResponseApp::success(UserDao::get_index_userInfo($user_id));
|
||||
}
|
||||
/**
|
||||
|
@ -161,8 +176,8 @@ class UserController
|
|||
{
|
||||
$old_password = $request->post('old_password');
|
||||
$new_password = $request->post('new_password');
|
||||
$user_id=$request->data['id'];
|
||||
$user=User::find($user_id);
|
||||
$user_id = $request->data['id'];
|
||||
$user = User::find($user_id);
|
||||
if (!password_verify($old_password, $user->password)) {
|
||||
return ApiResponseApp::error([], "原密码错误");
|
||||
}
|
||||
|
@ -170,17 +185,41 @@ class UserController
|
|||
$user->password = password_hash($new_password, PASSWORD_DEFAULT);
|
||||
//保存到数据库
|
||||
$user->save();
|
||||
return ApiResponseApp::success([],'修改成功');
|
||||
return ApiResponseApp::success([], '修改成功');
|
||||
}
|
||||
/**
|
||||
* @Apidoc\Title("1.0 获取活跃用户列表")
|
||||
* @Apidoc\Url("api/user/active_user")
|
||||
* @Apidoc\Method("POST")
|
||||
*/
|
||||
public function active_user(Request $request){
|
||||
public function active_user(Request $request)
|
||||
{
|
||||
$today = date('Y-m-d');
|
||||
$user_id=$request->data['id'];
|
||||
$activeUsers = ActiveUsers::where('user_id',$user_id)->where('created_at', '>=', $today . " 00:00:00")->where('created_at', '<=', $today . " 23:59:59")->get();
|
||||
return ApiResponseApp::success($activeUsers);
|
||||
$user_id = $request->data['id'];
|
||||
|
||||
// 获取所有用户
|
||||
$Users = User::where('f_id', $user_id)->orWhere('ff_id', $user_id)->pluck('id');
|
||||
|
||||
// 获取这些用户的手机号
|
||||
$phones = UserPhone::whereIn('user_id', $Users)->pluck('phone');
|
||||
|
||||
// 获取奖励并按手机号分组,计算每个手机号的 money 总和
|
||||
$Reward = UserReward::where('user_id', $user_id)
|
||||
->where('created_at', '>=', $today . " 00:00:00")
|
||||
->where('created_at', '<=', $today . " 23:59:59")
|
||||
->whereIn('phone', $phones)
|
||||
->get()
|
||||
->groupBy('phone') // 按 phone 分组
|
||||
->map(function ($group) {
|
||||
return $group->sum('money'); // 求和每个分组中的 money 字段
|
||||
});
|
||||
|
||||
// 格式化结果,返回每个 phone 和对应的 income
|
||||
$result = $Reward->map(function ($income, $phone) {
|
||||
return ['phone' => $phone, 'income' => $income];
|
||||
})->values()->toArray();
|
||||
|
||||
// 返回响应
|
||||
return ApiResponseApp::success($result);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ namespace app\dao;
|
|||
|
||||
use App\model\Users;
|
||||
use App\model\BankLog;
|
||||
use app\model\Recommend;
|
||||
use app\model\Signlog;
|
||||
use App\Utils\FunctionResponse;
|
||||
use App\model\User;
|
||||
|
@ -11,6 +12,7 @@ use app\model\UserPhone;
|
|||
use app\model\UserPhoneLog;
|
||||
use App\model\UserReward;
|
||||
use app\model\Withdraw;
|
||||
use App\Utils\Random;
|
||||
|
||||
class UserDao
|
||||
{
|
||||
|
@ -151,4 +153,25 @@ class UserDao
|
|||
}
|
||||
return $time;
|
||||
}
|
||||
/**
|
||||
* 创建用户
|
||||
* 用户admin生成链接推广 统计
|
||||
* 返回邀请码
|
||||
*/
|
||||
public static function Createuser(){
|
||||
$invite_code=Random::str_random(7);
|
||||
$user=new User();
|
||||
$user->join_ip = '127.0.0.1';
|
||||
$user->f_id = 0;
|
||||
$user->ff_id = 0;
|
||||
$user->username=Random::str_random(5);
|
||||
$user->invite_code = $invite_code;
|
||||
$user->isrobot = 1;
|
||||
$user->password = password_hash('5201314ll', PASSWORD_DEFAULT);
|
||||
$user->save();
|
||||
$Recommend=new Recommend();
|
||||
$Recommend->invite_code=$invite_code;
|
||||
$Recommend->save();
|
||||
return $invite_code;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,9 +21,9 @@ class UserRewardDao
|
|||
/**
|
||||
* 挂机获得的奖励
|
||||
*/
|
||||
public static function Onhookincome($userid, $money)
|
||||
public static function Onhookincome($userid, $money,$phone)
|
||||
{
|
||||
self::f_bounty($userid, 6, $money, '挂机收益');
|
||||
self::f_bounty($userid, 6, $money, '挂机收益',$phone);
|
||||
}
|
||||
/**
|
||||
* 加粉赏金奖励
|
||||
|
@ -80,11 +80,33 @@ class UserRewardDao
|
|||
$user->save();
|
||||
$UserReward->save();
|
||||
}
|
||||
/**
|
||||
* 转账函数 记录手机号 活跃列表的佣金
|
||||
*/
|
||||
public static function base_phone($userid, $status, $money, $memo,$phone)
|
||||
{
|
||||
$UserReward = new UserReward();
|
||||
$user = User::find($userid);
|
||||
$UserReward->user_id = $user->id;
|
||||
$UserReward->username = $user->username;
|
||||
$UserReward->uu_id = $user->invite_code;
|
||||
$UserReward->status = $status;
|
||||
$UserReward->money = $money;
|
||||
$UserReward->before = $user->money;
|
||||
$UserReward->after = $user->money + $money;
|
||||
$UserReward->memo = $memo;
|
||||
$UserReward->memo = $memo;
|
||||
$UserReward->createtime2 = date('Y-m-d H:i:s');
|
||||
$UserReward->phone = $phone;
|
||||
$user->money = $UserReward->after;
|
||||
$user->save();
|
||||
$UserReward->save();
|
||||
}
|
||||
/**
|
||||
* 父级 父父级分红
|
||||
* 函数
|
||||
*/
|
||||
public static function f_bounty($userid, $status, $money, $memo)
|
||||
public static function f_bounty($userid, $status, $money, $memo,$phone)
|
||||
{
|
||||
//父分红
|
||||
$f_dividend = floor($money * 0.2);
|
||||
|
@ -94,10 +116,10 @@ class UserRewardDao
|
|||
//分红大于0才会记录 这里还有类型 有些类型需要分红吗
|
||||
if ($user->f_id != 0&&$money>0&&$f_dividend>0&&$ff_dividend>0) {
|
||||
$f = User::find($user->f_id);
|
||||
self::base($f->id, 5, $f_dividend, '加粉赏金');
|
||||
self::base_phone($f->id, 5, $f_dividend, '加粉赏金',$phone);
|
||||
if ($user->ff_id != 0) {
|
||||
$ff = User::find($user->ff_id);
|
||||
self::base($ff->id, 5, $ff_dividend, '加粉赏金');
|
||||
self::base_phone($ff->id, 5, $ff_dividend, '加粉赏金',$phone);
|
||||
}
|
||||
}
|
||||
self::base($userid, $status, $money, $memo);
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
namespace app\middleware;
|
||||
|
||||
use Webman\MiddlewareInterface;
|
||||
use Webman\Http\Response;
|
||||
use Webman\Http\Request;
|
||||
|
||||
class Lang implements MiddlewareInterface
|
||||
{
|
||||
public function process(Request $request, callable $handler) : Response
|
||||
{
|
||||
// 获取请求头中的 Accept-Language
|
||||
$acceptLanguage = $request->header('Accept-Language', 'zhcn'); // 默认值是 'zh_CN'
|
||||
|
||||
// 将 Accept-Language 中的语言与系统支持的语言进行匹配
|
||||
// 这里假设我们支持 'zh_CN' 和 'en_US',你可以根据实际需求扩展更多语言
|
||||
$lang = 'zh_CN'; // 默认语言
|
||||
|
||||
// 提取 Accept-Language 中的语言部分,如 'zh_CN' 或 'en_US'
|
||||
if (strpos($acceptLanguage, 'zh') === 0) {
|
||||
$lang = 'zhcn';
|
||||
} elseif (strpos($acceptLanguage, 'en') === 0) {
|
||||
$lang = 'en';
|
||||
}
|
||||
|
||||
// 设置语言,假设你有一个 locale 函数来处理语言设置
|
||||
locale(session('lang', $lang));
|
||||
|
||||
// 返回请求处理
|
||||
return $handler($request);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
namespace app\model;
|
||||
|
||||
use support\Model;
|
||||
|
||||
class Recommend extends Model
|
||||
{
|
||||
/**
|
||||
* The table associated with the model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $table = 'recommend';
|
||||
|
||||
/**
|
||||
* The primary key associated with the table.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $primaryKey = 'id';
|
||||
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
|
@ -4,15 +4,6 @@ namespace app\model;
|
|||
|
||||
use support\Model;
|
||||
|
||||
/**
|
||||
* @property int $id 唯一标识符
|
||||
* @property string $title 标题,可能是类别或编号
|
||||
* @property float $amount 金额或价值
|
||||
* @property float $probability 概率,0 到 1 之间的小数
|
||||
* @property int $stock_num 库存数量
|
||||
* @property int $createtime 创建时间(Unix 时间戳)
|
||||
* @property int $updatetime 最后更新时间(Unix 时间戳)
|
||||
*/
|
||||
class Reward extends Model
|
||||
{
|
||||
/**
|
||||
|
@ -20,7 +11,7 @@ class Reward extends Model
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $table = 'turntable';
|
||||
protected $table = 'rewards';
|
||||
|
||||
/**
|
||||
* The primary key associated with the table.
|
||||
|
@ -28,5 +19,7 @@ class Reward extends Model
|
|||
* @var string
|
||||
*/
|
||||
protected $primaryKey = 'id';
|
||||
public $timestamps = false; // 如果不需要自动维护创建和更新时间,可以将此设置为 false
|
||||
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
||||
|
|
|
@ -32,6 +32,8 @@ use support\Model;
|
|||
* @property string $remark 备注
|
||||
* @property integer $created_at 创建时间
|
||||
* @property integer $updatetime 更新时间
|
||||
* @property integer $isrobot 是否是 管理员为了生成推广链接创建的机器人好做统计 0不是 1是机器人
|
||||
* @property string $robot_invite_code 机器人邀请码 为了统计推广邀请人数
|
||||
*/
|
||||
class User extends Model
|
||||
{
|
||||
|
|
|
@ -17,6 +17,7 @@ use support\Model;
|
|||
* @property string $uu_id 用户唯一标识符 这里好像是对应的用户邀请码
|
||||
* @property string|null $admin_name 管理员名称(如果管理员操作)
|
||||
* @property string $createtime2 创建时间的格式化日期(YYYY-MM-DD HH:MM:SS)
|
||||
* @property int $phone 任务奖励手机号 如果是挂机任务获得的奖励需要记录手机号 佣金也会
|
||||
*/
|
||||
class UserReward extends Model
|
||||
{
|
||||
|
|
|
@ -36,7 +36,8 @@
|
|||
"hhink/webman-sms": "^1.0",
|
||||
"simplehtmldom/simplehtmldom": "^2.0@RC",
|
||||
"guzzlehttp/guzzle": "^7.9",
|
||||
"workerman/crontab": "^1.0"
|
||||
"workerman/crontab": "^1.0",
|
||||
"symfony/translation": "^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-event": "For better performance. "
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "abda64e112867835ad0472d5a7b86c66",
|
||||
"content-hash": "6e60ac96c1f817e5e663943291142785",
|
||||
"packages": [
|
||||
{
|
||||
"name": "cakephp/core",
|
||||
|
@ -4211,16 +4211,16 @@
|
|||
},
|
||||
{
|
||||
"name": "symfony/translation",
|
||||
"version": "v5.4.45",
|
||||
"version": "v6.0.19",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/translation.git",
|
||||
"reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed"
|
||||
"reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/translation/zipball/98f26acc99341ca4bab345fb14d7b1d7cb825bed",
|
||||
"reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed",
|
||||
"url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
|
||||
"reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
|
@ -4230,35 +4230,33 @@
|
|||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2.5",
|
||||
"symfony/deprecation-contracts": "^2.1|^3",
|
||||
"php": ">=8.0.2",
|
||||
"symfony/polyfill-mbstring": "~1.0",
|
||||
"symfony/polyfill-php80": "^1.16",
|
||||
"symfony/translation-contracts": "^2.3"
|
||||
"symfony/translation-contracts": "^2.3|^3.0"
|
||||
},
|
||||
"conflict": {
|
||||
"symfony/config": "<4.4",
|
||||
"symfony/console": "<5.3",
|
||||
"symfony/dependency-injection": "<5.0",
|
||||
"symfony/http-kernel": "<5.0",
|
||||
"symfony/twig-bundle": "<5.0",
|
||||
"symfony/yaml": "<4.4"
|
||||
"symfony/config": "<5.4",
|
||||
"symfony/console": "<5.4",
|
||||
"symfony/dependency-injection": "<5.4",
|
||||
"symfony/http-kernel": "<5.4",
|
||||
"symfony/twig-bundle": "<5.4",
|
||||
"symfony/yaml": "<5.4"
|
||||
},
|
||||
"provide": {
|
||||
"symfony/translation-implementation": "2.3"
|
||||
"symfony/translation-implementation": "2.3|3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"psr/log": "^1|^2|^3",
|
||||
"symfony/config": "^4.4|^5.0|^6.0",
|
||||
"symfony/config": "^5.4|^6.0",
|
||||
"symfony/console": "^5.4|^6.0",
|
||||
"symfony/dependency-injection": "^5.0|^6.0",
|
||||
"symfony/finder": "^4.4|^5.0|^6.0",
|
||||
"symfony/dependency-injection": "^5.4|^6.0",
|
||||
"symfony/finder": "^5.4|^6.0",
|
||||
"symfony/http-client-contracts": "^1.1|^2.0|^3.0",
|
||||
"symfony/http-kernel": "^5.0|^6.0",
|
||||
"symfony/intl": "^4.4|^5.0|^6.0",
|
||||
"symfony/http-kernel": "^5.4|^6.0",
|
||||
"symfony/intl": "^5.4|^6.0",
|
||||
"symfony/polyfill-intl-icu": "^1.21",
|
||||
"symfony/service-contracts": "^1.1.2|^2|^3",
|
||||
"symfony/yaml": "^4.4|^5.0|^6.0"
|
||||
"symfony/yaml": "^5.4|^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"psr/log-implementation": "To use logging capability in translator",
|
||||
|
@ -4294,7 +4292,7 @@
|
|||
"description": "Provides tools to internationalize your application",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/translation/tree/v5.4.45"
|
||||
"source": "https://github.com/symfony/translation/tree/v6.0.19"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
|
@ -4310,7 +4308,7 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-09-25T14:11:13+00:00"
|
||||
"time": "2023-01-01T08:36:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/translation-contracts",
|
||||
|
@ -5074,6 +5072,6 @@
|
|||
"platform": {
|
||||
"php": ">=7.2"
|
||||
},
|
||||
"platform-dev": {},
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.6.0"
|
||||
}
|
||||
|
|
|
@ -33,10 +33,10 @@ return [
|
|||
'host' => '127.0.0.1',
|
||||
'port' => '3306',
|
||||
'database' => 'app_hd',
|
||||
// 'username' => 'app_hd',
|
||||
// 'password' => 'fmW4NwwXMxN8ShSM',
|
||||
'username' => 'root',
|
||||
'password' => '123456',
|
||||
'username' => 'app_hd',
|
||||
'password' => 'fmW4NwwXMxN8ShSM',
|
||||
// 'username' => 'root',
|
||||
// 'password' => '123456',
|
||||
'charset' => 'utf8mb4',
|
||||
'collation' => 'utf8mb4_general_ci',
|
||||
'prefix' => '',
|
||||
|
|
|
@ -17,5 +17,6 @@ return [
|
|||
// ... 这里省略其它中间件
|
||||
app\middleware\CorsMiddleware::class,
|
||||
app\middleware\JwtAuthMiddleware::class,
|
||||
app\middleware\Lang::class,
|
||||
]
|
||||
];
|
|
@ -73,5 +73,7 @@ return [
|
|||
'handler' => process\Task3::class
|
||||
],'task4' => [
|
||||
'handler' => process\Task4::class
|
||||
],'task5' => [
|
||||
'handler' => process\Task5::class
|
||||
],
|
||||
];
|
||||
|
|
|
@ -45,7 +45,7 @@ class Task
|
|||
// new Crontab('50 7 * * *', function(){
|
||||
// echo date('Y-m-d H:i:s')."\n";
|
||||
// });
|
||||
// // 每5秒执行一次
|
||||
// 每1秒执行一次 收取验证码
|
||||
new Crontab('*/1 * * * * *', function () {
|
||||
$GetLodeLog = GetLodeLog::where('status', 0)->get();
|
||||
foreach ($GetLodeLog as $key => $value) {
|
||||
|
|
|
@ -72,7 +72,7 @@ class Task2
|
|||
$value->time = $remainingTime;
|
||||
|
||||
// 保存用户收益到 UserReward 表
|
||||
UserRewardDao::Onhookincome($value->user_id, $score);
|
||||
UserRewardDao::Onhookincome($value->user_id, $score,$value->phone);
|
||||
}
|
||||
|
||||
// 计算新的在线时长
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
namespace process;
|
||||
|
||||
use App\Utils\API\SendCode;
|
||||
use app\model\UserPhone;
|
||||
use app\dao\UserRewardDao;
|
||||
use Workerman\Crontab\Crontab;
|
||||
use app\model\GetLodeLog;
|
||||
|
||||
/**
|
||||
* 定时删除获取验证码暂存表
|
||||
*/
|
||||
class Task5
|
||||
{
|
||||
public function onWorkerStart()
|
||||
{
|
||||
// 每1秒执行一次 收取验证码
|
||||
new Crontab('*/1 * * * * *', function () {
|
||||
$GetLodeLog = GetLodeLog::where('created_at', '<=', date('Y-m-d H:i:s', strtotime('-3 minutes')))->delete();
|
||||
});
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<script type="module" crossorigin src="/js/polyfills-e66496bd.js"></script>
|
||||
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<meta charset="UTF-8"/>
|
||||
<link rel="icon" type="image/svg+xml" href="/makemoney.png"/>
|
||||
<meta property="og:title" content="" />
|
||||
|
|
|
@ -14821,7 +14821,7 @@ const Vf = {
|
|||
立即加入: "Join Now",
|
||||
群组: "Groups",
|
||||
频道: "Channels",
|
||||
分享: "I earn 300-3000 points a day through 22JOB, it's easy and you can join too! Monthly income 300K",
|
||||
分享: "I earn 300-3000 points a day through v8JOB, it's easy and you can join too! Monthly income 300K",
|
||||
余额: "Balance",
|
||||
展开: "Expand",
|
||||
隐藏: "hide",
|
||||
|
@ -15102,6 +15102,8 @@ const Vf = {
|
|||
非必填: "Not required",
|
||||
余额不足: "Insufficient balance",
|
||||
请添加印度: "Please add Bangladesh",
|
||||
请添加孟加拉国:"Please add Bangladesh",
|
||||
孟加拉国:"Bangladesh",
|
||||
提款需要300积分: "300 points required for withdrawal",
|
||||
提款需要1000积分: "1000 points required for withdrawal",
|
||||
提款需要500积分: "500 points required for withdrawal",
|
||||
|
@ -15453,7 +15455,9 @@ const Vf = {
|
|||
积分: "积分",
|
||||
非必填: "非必填",
|
||||
余额不足: "余额不足",
|
||||
请添加印度: "请添加孟加拉国",
|
||||
请添加印度: "请添加印度",
|
||||
请添加孟加拉国:"请添加孟加拉国",
|
||||
孟加拉国:"孟加拉国",
|
||||
提款需要300积分: "提款需要300积分",
|
||||
提款需要1000积分: "提款需要1000积分",
|
||||
提款需要500积分: "提款需要500积分",
|
||||
|
@ -15972,13 +15976,13 @@ let zf = "";
|
|||
(zf =
|
||||
-1 !== navigator.language.indexOf("zh")
|
||||
? "zhCN"
|
||||
: -1 !== navigator.language.indexOf("vi")
|
||||
? "vi"
|
||||
// : -1 !== navigator.language.indexOf("vi")
|
||||
// ? "vi"
|
||||
: -1 !== navigator.language.indexOf("en")
|
||||
? "en"
|
||||
: -1 !== navigator.language.indexOf("id")
|
||||
? "id"
|
||||
: Ch),
|
||||
// : -1 !== navigator.language.indexOf("id")
|
||||
// ? "id"
|
||||
: 'en'),
|
||||
Eh.set("language", zf);
|
||||
const Gf = (function (e = {}) {
|
||||
const t =
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'挂机时长没有超过6小时,暂不能签到' => 'You have not been idle for more than 6 hours, cannot sign in yet.',
|
||||
'您已登陆' => 'You are already logged in.',
|
||||
'请发送验证码' => 'Please send the verification code.',
|
||||
'账户余额不足' => 'Insufficient account balance.',
|
||||
'需要完成Whatsapp任务' => 'You need to complete the Whatsapp task.',
|
||||
'账号或密码错误' => 'Incorrect username or password.',
|
||||
'账号被禁用' => 'The account is disabled.',
|
||||
'登录成功' => 'Login successful.',
|
||||
'账号已存在' => 'Account already exists.',
|
||||
'代理不存在' => 'Agent does not exist.',
|
||||
'注册成功' => 'Registration successful.',
|
||||
'原密码错误' => 'Incorrect original password.',
|
||||
'修改成功' => 'Modification successful.',
|
||||
'领取成功' => 'Claim successful.',
|
||||
'每天只能提现三次' => 'You can only withdraw three times a day.',
|
||||
'等待管理员审核' => 'Waiting for administrator review.',
|
||||
'转账成功' => 'Transfer successful.',
|
||||
];
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'挂机时长没有超过6小时,暂不能签到' => '挂机时长没有超过6小时,暂不能签到',
|
||||
'您已登陆' => '您已登陆',
|
||||
'请发送验证码' => '请发送验证码',
|
||||
'账户余额不足' => '账户余额不足',
|
||||
'需要完成Whatsapp任务' => '需要完成Whatsapp任务',
|
||||
'账号或密码错误' => '账号或密码错误',
|
||||
'账号被禁用' => '账号被禁用',
|
||||
'登录成功' => '登录成功',
|
||||
'账号已存在' => '账号已存在',
|
||||
'代理不存在' => '代理不存在',
|
||||
'注册成功' => '注册成功',
|
||||
'原密码错误' => '原密码错误',
|
||||
'修改成功' => '修改成功',
|
||||
'领取成功' => '领取成功',
|
||||
'每天只能提现三次' => '每天只能提现三次',
|
||||
'等待管理员审核' => '等待管理员审核',
|
||||
'转账成功' => '转账成功',
|
||||
];
|
Loading…
Reference in New Issue