59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace app\controller\api\user;
|
|
|
|
|
|
use crmeb\basic\BaseController;
|
|
use app\common\repositories\user\UserSignRepository;
|
|
use think\App;
|
|
|
|
class UserSign extends BaseController
|
|
{
|
|
/**
|
|
* @var repository
|
|
*/
|
|
protected $repository;
|
|
|
|
/**
|
|
* UserSign constructor.
|
|
* @param App $app
|
|
* @param UserSignRepository $repository
|
|
*/
|
|
public function __construct(App $app, UserSignRepository $repository)
|
|
{
|
|
parent::__construct($app);
|
|
$this->repository = $repository;
|
|
}
|
|
|
|
public function lst()
|
|
{
|
|
[$page,$limit] = $this->getPage();
|
|
$where = ['uid' => $this->request->uid()];
|
|
$data = $this->repository->getList($where,$page,$limit);
|
|
return app('json')->success($data);
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
$uid = $this->request->uid();
|
|
$day = date('Y-m-d',time());
|
|
if($this->repository->getSign($uid,$day))
|
|
return app('json')->fail('您今日已签到');
|
|
$data = $this->repository->create($uid);
|
|
return app('json')->success($data);
|
|
}
|
|
|
|
public function info()
|
|
{
|
|
$uid = $this->request->uid();
|
|
$data = $this->repository->info($uid);
|
|
return app('json')->success($data);
|
|
}
|
|
|
|
public function month()
|
|
{
|
|
$where = ['uid' => $this->request->uid()];
|
|
return app('json')->success($this->repository->month($where));
|
|
}
|
|
}
|