1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace PHPHub\Http\ApiControllers; |
4
|
|
|
|
5
|
|
|
use Auth; |
6
|
|
|
use Dingo\Api\Exception\UpdateResourceFailedException; |
7
|
|
|
use Gate; |
8
|
|
|
use PHPHub\Repositories\UserRepositoryInterface; |
9
|
|
|
use Illuminate\Http\Request; |
10
|
|
|
use PHPHub\Transformers\UserTransformer; |
11
|
|
|
use PHPHub\User; |
12
|
|
|
use Prettus\Validator\Exceptions\ValidatorException; |
13
|
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; |
14
|
|
|
|
15
|
|
|
class UsersController extends Controller |
16
|
|
|
{ |
17
|
|
|
/** |
18
|
|
|
* @var UserRepositoryInterface |
19
|
|
|
*/ |
20
|
|
|
private $users; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* TopicController constructor. |
24
|
|
|
* |
25
|
|
|
* @param UserRepositoryInterface $repository |
26
|
|
|
*/ |
27
|
|
|
public function __construct(UserRepositoryInterface $repository) |
28
|
|
|
{ |
29
|
|
|
$this->users = $repository; |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* 获取当前用户资料. |
34
|
|
|
*/ |
35
|
|
|
public function me() |
36
|
|
|
{ |
37
|
|
|
return $this->show(Auth::id()); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* 获取指定用户的资料. |
42
|
|
|
* |
43
|
|
|
* @param int $id |
44
|
|
|
* |
45
|
|
|
* @return \Illuminate\Http\Response |
46
|
|
|
*/ |
47
|
|
|
public function show($id) |
48
|
|
|
{ |
49
|
|
|
$user = $this->users |
50
|
|
|
->autoWithRootColumns(User::$includable) |
51
|
|
|
->find($id); |
52
|
|
|
|
53
|
|
|
// 在 Transformer 中返回 links |
54
|
|
|
$user->links = true; |
55
|
|
|
|
56
|
|
|
return $this->response()->item($user, new UserTransformer()); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* 更新指定用户的资料. |
61
|
|
|
* |
62
|
|
|
* @param \Illuminate\Http\Request $request |
63
|
|
|
* @param int $id |
64
|
|
|
* |
65
|
|
|
* @return \Illuminate\Http\Response |
66
|
|
|
*/ |
67
|
|
|
public function update(Request $request, $id) |
68
|
|
|
{ |
69
|
|
|
$user = $this->users->find($id); |
70
|
|
|
|
71
|
|
|
if (Gate::denies('update', $user)) { |
72
|
|
|
throw new AccessDeniedHttpException(); |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
try { |
76
|
|
|
$user = $this->users->update($request->all(), $id); |
77
|
|
|
|
78
|
|
|
return $this->response()->item($user, new UserTransformer()); |
79
|
|
|
} catch (ValidatorException $e) { |
80
|
|
|
throw new UpdateResourceFailedException('Could not update user.', $e->getMessageBag()->all()); |
81
|
|
|
} |
82
|
|
|
} |
83
|
|
|
} |
84
|
|
|
|