Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 1 | #!/usr/bin/env perl |
| 2 | use Mojolicious::Lite; |
| 3 | use Mojo::ByteStream 'b'; |
| 4 | use Mojo::Date; |
| 5 | use Mojo::JSON qw/true false encode_json decode_json/; |
| 6 | use strict; |
| 7 | use warnings; |
| 8 | use Mojo::JWT; |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 9 | use Mojo::File qw/path/; |
| 10 | use Mojo::Util qw/slugify/; |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 11 | |
| 12 | # This is an API fake server with fixtures |
| 13 | |
| 14 | my $secret = 's3cr3t'; |
Akron | 73f3608 | 2018-10-25 15:34:59 +0200 | [diff] [blame] | 15 | my $fixture_path = path(Mojo::File->new(__FILE__)->dirname)->child('..', 'fixtures'); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 16 | |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 17 | our %tokens = ( |
Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 18 | 'access_token' => "4dcf8784ccfd26fac9bdb82778fe60e2", |
| 19 | 'refresh_token' => "hlWci75xb8atDiq3924NUSvOdtAh7Nlf9z", |
| 20 | 'access_token_2' => "abcde", |
| 21 | 'refresh_token_2' => "fghijk", |
| 22 | 'new_client_id' => 'fCBbQkA2NDA3MzM1Yw==', |
| 23 | 'new_client_secret' => 'KUMaFxs6R1WGud4HM22w3HbmYKHMnNHIiLJ2ihaWtB4N5JxGzZgyqs5GTLutrORj', |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 24 | ); |
| 25 | |
| 26 | helper get_token => sub { |
| 27 | my ($c, $token) = @_; |
| 28 | return $tokens{$token} |
| 29 | }; |
| 30 | |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 31 | # Legacy: |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 32 | helper jwt_encode => sub { |
| 33 | shift; |
| 34 | return Mojo::JWT->new( |
| 35 | secret => $secret, |
| 36 | token_type => 'api_token', |
| 37 | expires => time + (3 * 34 * 60 * 60), |
| 38 | claims => { @_ } |
| 39 | ); |
| 40 | }; |
| 41 | |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 42 | # Legacy; |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 43 | helper jwt_decode => sub { |
| 44 | my ($c, $auth) = @_; |
| 45 | $auth =~ s/\s*api_token\s+//; |
| 46 | return Mojo::JWT->new(secret => $secret)->decode($auth); |
| 47 | }; |
| 48 | |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 49 | # Expiration helper |
| 50 | helper expired => sub { |
| 51 | my ($c, $auth, $set) = @_; |
| 52 | |
| 53 | |
| 54 | $auth =~ s/^[^ ]+? //; |
| 55 | if ($set) { |
| 56 | $c->app->log->debug("Set $auth for expiration"); |
| 57 | $c->app->defaults('auth_' . $auth => 1); |
| 58 | return 1; |
| 59 | }; |
| 60 | |
| 61 | $c->app->log->debug("Check $auth for expiration: " . ( |
| 62 | $c->app->defaults('auth_' . $auth) // '0' |
| 63 | )); |
| 64 | |
| 65 | return $c->app->defaults('auth_' . $auth); |
| 66 | }; |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 67 | |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 68 | # Load fixture responses |
| 69 | helper 'load_response' => sub { |
| 70 | my $c = shift; |
| 71 | my $q_name = shift; |
| 72 | my $file = $fixture_path->child("response_$q_name.json"); |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 73 | $c->app->log->debug("Load response from $file"); |
| 74 | |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 75 | unless (-f $file) { |
| 76 | return { |
| 77 | status => 500, |
| 78 | json => { |
| 79 | errors => [[0, 'Unable to load query response from ' . $file]] |
| 80 | } |
| 81 | } |
| 82 | }; |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 83 | |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 84 | my $response = $file->slurp; |
Akron | a3c353c | 2019-02-14 23:50:00 +0100 | [diff] [blame] | 85 | my $decode = decode_json($response); |
| 86 | unless ($decode) { |
| 87 | return { |
| 88 | status => 500, |
| 89 | json => { |
| 90 | errors => [[0, 'Unable to parse JSON']] |
| 91 | } |
| 92 | } |
| 93 | }; |
| 94 | |
| 95 | return $decode; |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 99 | # Base page |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 100 | get '/v1.0/' => sub { |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 101 | shift->render(text => 'Fake server available'); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 102 | }; |
| 103 | |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 104 | |
Akron | d00b427 | 2020-02-05 17:00:33 +0100 | [diff] [blame] | 105 | get '/v1.0/redirect-target-a' => sub { |
| 106 | shift->render(text => 'Redirect Target!'); |
| 107 | } => 'redirect-target'; |
| 108 | |
| 109 | |
| 110 | # Base page |
| 111 | get '/v1.0/redirect' => sub { |
| 112 | my $c = shift; |
| 113 | $c->res->code(308); |
| 114 | $c->res->headers->location($c->url_for('redirect-target')->to_abs); |
| 115 | return $c->render(text => ''); |
| 116 | }; |
| 117 | |
| 118 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 119 | # Search fixtures |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 120 | get '/v1.0/search' => sub { |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 121 | my $c = shift; |
| 122 | my $v = $c->validation; |
| 123 | $v->optional('q'); |
| 124 | $v->optional('page'); |
| 125 | $v->optional('ql'); |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 126 | $v->optional('cq'); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 127 | $v->optional('count'); |
| 128 | $v->optional('context'); |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 129 | $v->optional('offset'); |
| 130 | $v->optional('cutoff')->in(qw/true false/); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 131 | |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 132 | $c->app->log->debug('Receive request'); |
| 133 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 134 | # Response q=x&ql=cosmas3 |
| 135 | if ($v->param('ql') && $v->param('ql') eq 'cosmas3') { |
| 136 | return $c->render( |
| 137 | status => 400, |
| 138 | json => { |
| 139 | "\@context" => "http://korap.ids-mannheim.de/ns/koral/0.3/context.jsonld", |
| 140 | "errors" => [[307,"cosmas3 is not a supported query language!"]] |
| 141 | }); |
| 142 | }; |
| 143 | |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 144 | if (!$v->param('q')) { |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 145 | return $c->render(%{$c->load_response('query_no_query')}); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 146 | }; |
| 147 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 148 | my @slug_base = ($v->param('q')); |
| 149 | push @slug_base, 'o' . $v->param('offset') if defined $v->param('offset'); |
| 150 | push @slug_base, 'c' . $v->param('count') if defined $v->param('count'); |
| 151 | push @slug_base, 'co' . $v->param('cutoff') if defined $v->param('cutoff'); |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 152 | push @slug_base, 'cq' if defined $v->param('cq'); |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 153 | |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 154 | # Get response based on query parameter |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 155 | my $response = $c->load_response('query_' . slugify(join('_', @slug_base))); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 156 | |
| 157 | # Check authentification |
| 158 | if (my $auth = $c->req->headers->header('Authorization')) { |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 159 | |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 160 | $c->app->log->debug("There is an authorization header $auth"); |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 161 | my $jwt; |
| 162 | if ($auth =~ /^Bearer/) { |
| 163 | # Username unknown in OAuth2 |
| 164 | $response->{json}->{meta}->{authorized} = 'yes'; |
| 165 | } |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 166 | elsif ($auth =~ /^api_token/ && ($jwt = $c->jwt_decode($auth))) { |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 167 | $response->{json}->{meta}->{authorized} = $jwt->{username} if $jwt->{username}; |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 168 | }; |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 169 | |
| 170 | # Code is expired |
| 171 | if ($c->expired($auth)) { |
| 172 | |
| 173 | $c->app->log->debug("The access token has expired"); |
| 174 | |
| 175 | return $c->render( |
| 176 | status => 401, |
| 177 | json => { |
| 178 | errors => [[2003, 'Access token is expired']] |
| 179 | } |
| 180 | ); |
| 181 | } |
| 182 | |
| 183 | # Auth token is invalid |
| 184 | if ($auth =~ /^Bearer inv4lid/) { |
| 185 | $c->app->log->debug("The access token is invalid"); |
| 186 | |
| 187 | return $c->render( |
| 188 | status => 401, |
| 189 | json => { |
| 190 | errors => [[2011, 'Access token is invalid']] |
| 191 | } |
| 192 | ); |
| 193 | } |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 194 | }; |
| 195 | |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 196 | # Set page parameter |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 197 | if ($v->param('page')) { |
Akron | 6d49c1f | 2018-10-11 14:22:21 +0200 | [diff] [blame] | 198 | $response->{json}->{meta}->{startIndex} = $v->param("startIndex"); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 199 | }; |
| 200 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 201 | # Simple search fixture |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 202 | $c->render(%$response); |
| 203 | |
| 204 | $c->app->log->debug('Rendered result'); |
| 205 | |
| 206 | return 1; |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 207 | }; |
| 208 | |
Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 209 | # Textinfo fixtures |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 210 | get '/v1.0/corpus/:corpusId/:docId/:textId' => sub { |
Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 211 | my $c = shift; |
| 212 | |
| 213 | my $file = join('_', ( |
| 214 | 'textinfo', |
| 215 | $c->stash('corpusId'), |
| 216 | $c->stash('docId'), |
| 217 | $c->stash('textId') |
| 218 | )); |
| 219 | |
| 220 | my $slug = slugify($file); |
| 221 | |
| 222 | # Get response based on query parameter |
| 223 | my $response = $c->load_response($slug); |
| 224 | return $c->render(%$response); |
| 225 | }; |
| 226 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 227 | |
Akron | b80341d | 2018-10-15 19:46:23 +0200 | [diff] [blame] | 228 | # Matchinfo fixtures |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 229 | get '/v1.0/corpus/:corpusId/:docId/:textId/:matchId/matchInfo' => sub { |
Akron | b80341d | 2018-10-15 19:46:23 +0200 | [diff] [blame] | 230 | my $c = shift; |
| 231 | |
| 232 | my $file = join('_', ( |
| 233 | 'matchinfo', |
| 234 | $c->stash('corpusId'), |
| 235 | $c->stash('docId'), |
| 236 | $c->stash('textId'), |
| 237 | $c->stash('matchId') |
| 238 | )); |
| 239 | |
Akron | b8d0b40 | 2018-10-18 23:51:52 +0200 | [diff] [blame] | 240 | my $slug = slugify($file); |
| 241 | |
Akron | b80341d | 2018-10-15 19:46:23 +0200 | [diff] [blame] | 242 | # Get response based on query parameter |
Akron | b8d0b40 | 2018-10-18 23:51:52 +0200 | [diff] [blame] | 243 | my $response = $c->load_response($slug); |
Akron | b80341d | 2018-10-15 19:46:23 +0200 | [diff] [blame] | 244 | return $c->render(%$response); |
| 245 | }; |
| 246 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 247 | |
Akron | be61f4c | 2018-10-20 00:52:58 +0200 | [diff] [blame] | 248 | # Statistics endpoint |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 249 | get '/v1.0/statistics' => sub { |
Akron | be61f4c | 2018-10-20 00:52:58 +0200 | [diff] [blame] | 250 | my $c = shift; |
| 251 | my $v = $c->validation; |
Akron | 5fa61e9 | 2019-07-15 11:56:11 +0200 | [diff] [blame] | 252 | $v->optional('cq'); |
Akron | be61f4c | 2018-10-20 00:52:58 +0200 | [diff] [blame] | 253 | |
| 254 | my @list = 'corpusinfo'; |
Akron | 5fa61e9 | 2019-07-15 11:56:11 +0200 | [diff] [blame] | 255 | if ($v->param('cq')) { |
| 256 | push @list, $v->param('cq'); |
Akron | be61f4c | 2018-10-20 00:52:58 +0200 | [diff] [blame] | 257 | }; |
| 258 | my $slug = slugify(join('_', @list)); |
| 259 | |
| 260 | # Get response based on query parameter |
| 261 | my $response = $c->load_response($slug); |
| 262 | return $c->render(%$response); |
| 263 | }; |
| 264 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 265 | ############ |
| 266 | # Auth API # |
| 267 | ############ |
| 268 | |
| 269 | # Request API token |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 270 | get '/v1.0/auth/logout' => sub { |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 271 | my $c = shift; |
| 272 | |
| 273 | if (my $auth = $c->req->headers->header('Authorization')) { |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 274 | |
| 275 | if ($auth =~ /^Bearer/) { |
| 276 | $c->app->log->debug('Server-Logout: ' . $auth); |
| 277 | return $c->render(json => { msg => [[0, 'Fine!']]}); |
| 278 | } |
| 279 | |
| 280 | elsif (my $jwt = $c->jwt_decode($auth)) { |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 281 | my $user = $jwt->{username} if $jwt->{username}; |
| 282 | |
| 283 | $c->app->log->debug('Server-Logout: ' . $user); |
| 284 | return $c->render(json => { msg => [[0, 'Fine!']]}); |
| 285 | }; |
| 286 | }; |
| 287 | |
| 288 | return $c->render(status => 400, json => { error => [[0, 'No!']]}); |
| 289 | }; |
| 290 | |
| 291 | |
| 292 | # Request API token |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 293 | get '/v1.0/auth/apiToken' => sub { |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 294 | my $c = shift; |
| 295 | |
| 296 | # Get auth header |
| 297 | my $auth = $c->req->headers->authorization; |
| 298 | |
| 299 | # Authorization missing or not basic |
| 300 | if (!$auth || $auth !~ s/\s*Basic\s+//gi) { |
| 301 | return $c->render( |
| 302 | json => { |
| 303 | error => [[2, 'x']] |
| 304 | } |
| 305 | ); |
| 306 | }; |
| 307 | |
| 308 | # Decode header |
| 309 | my ($username, $pwd) = @{b($auth)->b64_decode->split(':')->to_array}; |
| 310 | |
| 311 | # the password is 'pass' |
| 312 | if ($pwd) { |
| 313 | |
| 314 | # the password is 'pass' |
| 315 | if ($pwd eq 'pass') { |
| 316 | |
| 317 | # Render info with token |
| 318 | my $jwt = $c->jwt_encode(username => $username); |
| 319 | |
| 320 | # Render in the Kustvakt fashion: |
| 321 | return $c->render( |
| 322 | format => 'html', |
| 323 | text => encode_json({ |
| 324 | %{$jwt->claims}, |
| 325 | expires => $jwt->expires, |
| 326 | token => $jwt->encode, |
| 327 | token_type => 'api_token' |
| 328 | }) |
| 329 | ); |
Akron | 3d67306 | 2019-01-29 15:54:16 +0100 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | elsif ($pwd eq 'ldaperr') { |
| 333 | return $c->render( |
| 334 | format => 'html', |
| 335 | status => 401, |
| 336 | json => { |
| 337 | "errors" => [[2022,"LDAP Authentication failed due to unknown user or password!"]] |
| 338 | } |
| 339 | ); |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 340 | }; |
| 341 | |
| 342 | return $c->render( |
| 343 | json => { |
| 344 | error => [[2004, undef]] |
| 345 | } |
| 346 | ); |
| 347 | }; |
| 348 | |
| 349 | return $c->render( |
| 350 | json => { |
| 351 | error => [[2004, undef]] |
| 352 | } |
| 353 | ); |
| 354 | }; |
| 355 | |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 356 | |
| 357 | # Request API token |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 358 | post '/v1.0/oauth2/token' => sub { |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 359 | my $c = shift; |
| 360 | |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 361 | my $grant_type = $c->param('grant_type') // 'undefined'; |
| 362 | |
| 363 | if ($grant_type eq 'password') { |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 364 | |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 365 | # Check for wrong client id |
| 366 | if ($c->param('client_id') ne '2') { |
| 367 | return $c->render( |
| 368 | json => { |
| 369 | "error_description" => "Unknown client with " . $_->{client_id}, |
| 370 | "error" => "invalid_client" |
| 371 | }, |
| 372 | status => 401 |
| 373 | ); |
| 374 | } |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 375 | |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 376 | # Check for wrong client secret |
| 377 | elsif ($c->param('client_secret') ne 'k414m4r-s3cr3t') { |
| 378 | return $c->render( |
| 379 | json => { |
| 380 | "error_description" => "Invalid client credentials", |
| 381 | "error" => "invalid_client" |
| 382 | }, |
| 383 | status => 401 |
| 384 | ); |
| 385 | } |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 386 | |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 387 | # Check for wrong user name |
| 388 | elsif ($c->param('username') ne 'test') { |
| 389 | return $c->render(json => { |
| 390 | error => [[2004, undef]] |
| 391 | }); |
| 392 | } |
| 393 | |
| 394 | # Check for ldap error |
| 395 | elsif ($c->param('password') eq 'ldaperr') { |
| 396 | return $c->render( |
| 397 | format => 'html', |
| 398 | status => 401, |
| 399 | json => { |
| 400 | "errors" => [ |
| 401 | [ |
| 402 | 2022, |
| 403 | "LDAP Authentication failed due to unknown user or password!" |
| 404 | ] |
| 405 | ] |
| 406 | } |
| 407 | ); |
| 408 | } |
| 409 | |
| 410 | # Check for wrong password |
| 411 | elsif ($c->param('password') ne 'pass') { |
| 412 | return $c->render(json => { |
| 413 | format => 'html', |
| 414 | status => 401, |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 415 | "errors" => [[2022,"LDAP Authentication failed due to unknown user or password!"]] |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 416 | }); |
| 417 | } |
| 418 | |
| 419 | # Return fine access |
| 420 | return $c->render( |
| 421 | json => { |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 422 | "access_token" => $c->get_token('access_token'), |
| 423 | "refresh_token" => $c->get_token('refresh_token'), |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 424 | "scope" => "all", |
| 425 | "token_type" => "Bearer", |
| 426 | "expires_in" => 86400 |
| 427 | }); |
| 428 | } |
| 429 | |
| 430 | # Refresh token |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 431 | elsif ($grant_type eq 'refresh_token') { |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 432 | |
| 433 | if ($c->param('refresh_token') eq 'inv4lid') { |
| 434 | return $c->render( |
| 435 | status => 400, |
| 436 | json => { |
| 437 | "error_description" => "Refresh token is expired", |
| 438 | "error" => "invalid_grant" |
| 439 | } |
| 440 | ); |
| 441 | }; |
| 442 | |
| 443 | $c->app->log->debug("Refresh the token in the mock server!"); |
| 444 | |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 445 | return $c->render( |
| 446 | status => 200, |
| 447 | json => { |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 448 | "access_token" => $c->get_token("access_token_2"), |
| 449 | "refresh_token" => $c->get_token("refresh_token_2"), |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 450 | "token_type" => "Bearer", |
| 451 | "expires_in" => 86400 |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 452 | } |
| 453 | ); |
| 454 | } |
| 455 | |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 456 | # Unknown token grant |
| 457 | else { |
| 458 | return $c->render( |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 459 | status => 400, |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 460 | json => { |
| 461 | "errors" => [ |
| 462 | [ |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 463 | 0, "Grant Type unknown", $grant_type |
Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 464 | ] |
| 465 | ] |
| 466 | } |
| 467 | ) |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 468 | } |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 469 | }; |
| 470 | |
Akron | 4cefe1f | 2019-09-04 10:11:28 +0200 | [diff] [blame] | 471 | # Revoke API token |
| 472 | post '/v1.0/oauth2/revoke' => sub { |
| 473 | my $c = shift; |
| 474 | |
| 475 | my $refresh_token = $c->param('token'); |
| 476 | |
| 477 | if ($c->param('client_secret') ne 'k414m4r-s3cr3t') { |
| 478 | return $c->render( |
| 479 | json => { |
| 480 | "error_description" => "Invalid client credentials", |
| 481 | "error" => "invalid_client" |
| 482 | }, |
| 483 | status => 401 |
| 484 | ); |
| 485 | }; |
| 486 | |
| 487 | return $c->render( |
| 488 | text => '' |
| 489 | ) |
| 490 | }; |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 491 | |
Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 492 | # Register a client |
| 493 | post '/v1.0/oauth2/client/register' => sub { |
| 494 | my $c = shift; |
| 495 | my $json = $c->req->json; |
| 496 | |
| 497 | my $name = $json->{name}; |
| 498 | my $desc = $json->{desc}; |
| 499 | my $type = $json->{type}; |
| 500 | my $url = $json->{url}; |
| 501 | my $redirect_url = $json->{redirectURI}; |
| 502 | |
| 503 | # Confidential server application |
| 504 | if ($type eq 'CONFIDENTIAL') { |
| 505 | return $c->render(json => { |
| 506 | client_id => $tokens{new_client_id}, |
| 507 | client_secret => $tokens{new_client_secret} |
| 508 | }); |
| 509 | }; |
| 510 | |
| 511 | # Desktop application |
| 512 | return $c->render(json => { |
| 513 | client_id => $tokens{new_client_id} |
| 514 | }); |
| 515 | }; |
| 516 | |
Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 517 | |
Akron | 0f1b93b | 2020-03-17 11:37:19 +0100 | [diff] [blame] | 518 | # Register a client |
| 519 | post '/v1.0/oauth2/client/list' => sub { |
| 520 | my $c = shift; |
| 521 | |
| 522 | # $c->param('client_secret'); |
| 523 | return $c->render( |
| 524 | json => [ |
| 525 | { |
| 526 | "clientId" => "9aHsGW6QflV13ixNpez", |
| 527 | "clientName" => "R statistical computing tool", |
| 528 | "description" => "R is a free software environment for statistical computing and graphics.", |
| 529 | "url" => "https://www.r-project.org/" |
| 530 | }, |
| 531 | { |
| 532 | "clientId" => "8bIDtZnH6NvRkW2Fq", |
| 533 | "clientName" => "EasyPDF Exporter", |
| 534 | "description" => "EasyPDF is a tool for exporting data to PDF.", |
| 535 | "url" => "https://www.easypdf.org/" |
| 536 | } |
| 537 | ], |
| 538 | status => 200 |
| 539 | ); |
| 540 | }; |
| 541 | |
| 542 | |
| 543 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 544 | app->start; |
| 545 | |
| 546 | |
| 547 | __END__ |
| 548 | |
| 549 | |
| 550 | # Temporary: |
| 551 | my $collection_query = { |
| 552 | '@type' => "koral:docGroup", |
| 553 | "operation" => "operation:or", |
| 554 | "operands" => [ |
| 555 | { |
| 556 | '@type' => "koral:docGroup", |
| 557 | "operation" => "operation:and", |
| 558 | "operands" => [ |
| 559 | { |
| 560 | '@type' => "koral:doc", |
| 561 | "key" => "title", |
| 562 | "match" => "match:eq", |
| 563 | "value" => "Der Birnbaum", |
| 564 | "type" => "type:string" |
| 565 | }, |
| 566 | { |
| 567 | '@type' => "koral:doc", |
| 568 | "key" => "pubPlace", |
| 569 | "match" => "match:eq", |
| 570 | "value" => "Mannheim", |
| 571 | "type" => "type:string" |
| 572 | }, |
| 573 | { |
| 574 | '@type' => "koral:docGroup", |
| 575 | "operation" => "operation:or", |
| 576 | "operands" => [ |
| 577 | { |
| 578 | '@type' => "koral:doc", |
| 579 | "key" => "subTitle", |
| 580 | "match" => "match:eq", |
| 581 | "value" => "Aufzucht oder Pflege", |
| 582 | "type" => "type:string" |
| 583 | }, |
| 584 | { |
| 585 | '@type' => "koral:doc", |
| 586 | "key" => "subTitle", |
| 587 | "match" => "match:eq", |
| 588 | "value" => "Gedichte", |
| 589 | "type" => "type:string" |
| 590 | } |
| 591 | ] |
| 592 | } |
| 593 | ] |
| 594 | }, |
| 595 | { |
| 596 | '@type' => "koral:doc", |
| 597 | "key" => "pubDate", |
| 598 | "match" => "match:geq", |
| 599 | "value" => "2015-03-05", |
| 600 | "type" => "type:date" |
| 601 | } |
| 602 | ] |
| 603 | }; |