1 | <?php |
||
17 | class User |
||
18 | { |
||
19 | /** @var TwitchRequest */ |
||
20 | protected $request; |
||
21 | |||
22 | const URI_USER = 'users/'; |
||
23 | const URI_USER_AUTH = 'user'; |
||
24 | const URI_STREAMS_FOLLOWED_AUTH = 'streams/followed'; |
||
25 | const URI_VIDEOS_FOLLOWED_AUTH = 'videos/followed'; |
||
26 | |||
27 | public function __construct(TwitchRequest $request) |
||
31 | |||
32 | /** |
||
33 | * Get the specified user |
||
34 | * @see https://github.com/justintv/Twitch-API/blob/master/v3_resources/users.md#get-usersuser |
||
35 | * @param $username |
||
36 | * @return \stdClass |
||
37 | * @throws TwitchException |
||
38 | */ |
||
39 | public function getUser($username) |
||
45 | |||
46 | /** |
||
47 | * Get the authenticated user |
||
48 | * - requires scope 'user_read' |
||
49 | * @see https://github.com/justintv/Twitch-API/blob/master/v3_resources/users.md#get-user |
||
50 | * @param string |
||
51 | * @return \stdClass |
||
52 | * @throws TwitchException |
||
53 | */ |
||
54 | public function getUserAuth($queryString) |
||
60 | |||
61 | /** |
||
62 | * List the live streams that the authenticated user is following |
||
63 | * - requires scope 'user_read' |
||
64 | * @see https://github.com/justintv/Twitch-API/blob/master/v3_resources/users.md#get-streamsfollowed |
||
65 | * @param string $queryString |
||
66 | * @return \stdClass |
||
67 | * @throws TwitchException |
||
68 | */ |
||
69 | public function getFollowedStreams($queryString) |
||
75 | |||
76 | /** |
||
77 | * List of videos that the authenticated user is following |
||
78 | * - requires scope 'user_read' |
||
79 | * @see https://github.com/justintv/Twitch-API/blob/master/v3_resources/users.md#get-videosfollowed |
||
80 | * @param $queryString |
||
81 | * @return \stdClass |
||
82 | * @throws TwitchException |
||
83 | */ |
||
84 | public function getFollowedVideos($queryString) |
||
90 | } |
||
91 |