PluginProbe
JSON API Auth / 1.6
JSON API Auth v1.6
3.1.2 3.1.1 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0 2.7.0 2.7.1 2.8.0 2.9.0 2.9.1 3.0.0 3.1.0 trunk 0.1 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 All 33 releases
← All changes | controllers/Auth.php +55 -14 1.01.6 View file →
@@ -1,61 +1,95 @@
1 1 <?php
2 +
2 3 /*
3 4 Controller Name: Auth
4 5 Controller Description: Authentication add-on controller for the Wordpress JSON API plugin
5 -Controller Author: Matt Berg
6 -Controller Author Twitter: @mattberg
6 +Controller Author: Matt Berg, Ali Qureshi
7 +Controller Author Twitter: @parorrey
7 8 */
8 9
10 +
11 +
12 +
13 +
14 +
15 +
9 16 class JSON_API_Auth_Controller {
10 17
18 +
11 19 public function validate_auth_cookie() {
20 +
12 21 global $json_api;
13 22
14 23 if (!$json_api->query->cookie) {
24 +
15 25 $json_api->error("You must include a 'cookie' authentication cookie. Use the `create_auth_cookie` Auth API method.");
26 +
16 27 }
17 28
18 29 $valid = wp_validate_auth_cookie($json_api->query->cookie, 'logged_in') ? true : false;
19 30
20 31 return array(
32 +
21 33 "valid" => $valid
34 +
22 35 );
36 +
37 +
23 38 }
24 39
25 40 public function generate_auth_cookie() {
41 +
26 42 global $json_api;
27 43
44 + /*
28 45 $nonce_id = $json_api->get_nonce_id('auth', 'generate_auth_cookie');
46 +
29 47 if (!wp_verify_nonce($json_api->query->nonce, $nonce_id)) {
48 +
30 49 $json_api->error("Your 'nonce' value was incorrect. Use the 'get_nonce' API method.");
31 - }
50 + }*/
32 51
52 +
33 53 if (!$json_api->query->username) {
54 +
34 55 $json_api->error("You must include a 'username' var in your request.");
56 +
35 57 }
36 -
58 +
59 +
37 60 if (!$json_api->query->password) {
61 +
38 62 $json_api->error("You must include a 'password' var in your request.");
39 - }
40 63
64 + }
65 +
66 + if ($json_api->query->seconds) $seconds = (int) $json_api->query->seconds;
67 +
68 + else $seconds = 1209600;//14 days
69 +
70 +
71 +
41 72 $user = wp_authenticate($json_api->query->username, $json_api->query->password);
73 +
42 74 if (is_wp_error($user)) {
75 +
43 76 $json_api->error("Invalid username and/or password.", 'error', '401');
77 +
44 78 remove_action('wp_login_failed', $json_api->query->username);
79 +
45 80 }
46 81
47 - $expiration = time() + apply_filters('auth_cookie_expiration', 1209600, $user->ID, true);
48 82
83 + $expiration = time() + apply_filters('auth_cookie_expiration', $seconds, $user->ID, true);
84 +
49 85 $cookie = wp_generate_auth_cookie($user->ID, $expiration, 'logged_in');
50 86
87 + preg_match('|src="(.+?)"|', get_avatar( $user->ID, 32 ), $avatar);
51 88
52 - preg_match('|src="(.+?)"|', get_avatar( $user->ID, 32 ), $avatar);
53 -
54 -
55 -
56 89 return array(
57 90 "cookie" => $cookie,
91 + "cookie_name" => LOGGED_IN_COOKIE,
58 92 "user" => array(
59 93 "id" => $user->ID,
60 94 "username" => $user->user_login,
61 95 "nicename" => $user->user_nicename,
@@ -68,20 +102,24 @@
68 102 "nickname" => $user->nickname,
69 103 "description" => $user->user_description,
70 104 "capabilities" => $user->wp_capabilities,
71 105 "avatar" => $avatar[1]
106 +
72 107 ),
73 108 );
74 109 }
75 -
110 +
111 +
76 112 public function get_currentuserinfo() {
77 113 global $json_api;
78 114
79 115 if (!$json_api->query->cookie) {
80 116 $json_api->error("You must include a 'cookie' var in your request. Use the `generate_auth_cookie` Auth API method.");
81 - }
82 117
118 + }
119 +
83 120 $user_id = wp_validate_auth_cookie($json_api->query->cookie, 'logged_in');
121 +
84 122 if (!$user_id) {
85 123 $json_api->error("Invalid authentication cookie. Use the `generate_auth_cookie` Auth API method.");
86 124 }
87 125
@@ -86,9 +124,9 @@
86 124 }
87 125
88 126 $user = get_userdata($user_id);
89 127 preg_match('|src="(.+?)"|', get_avatar( $user->ID, 32 ), $avatar);
90 -
128 +
91 129 return array(
92 130 "user" => array(
93 131 "id" => $user->ID,
94 132 "username" => $user->user_login,
@@ -101,10 +139,13 @@
101 139 "lastname" => $user->last_name,
102 140 "nickname" => $user->nickname,
103 141 "description" => $user->user_description,
104 142 "capabilities" => $user->wp_capabilities,
143 +
105 144 "avatar" => $avatar[1]
145 +
106 146 )
147 +
107 148 );
149 +
108 150 }
109 -
110 151 }