| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library handle_access_token_response; | 5 library handle_access_token_response; |
| 6 | 6 |
| 7 import 'dart:io'; | 7 import 'dart:io'; |
| 8 import 'dart:json' as JSON; | 8 import 'dart:json' as JSON; |
| 9 import 'dart:uri'; | 9 import 'dart:uri'; |
| 10 | 10 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 '"${parameters["error"]}"'); | 123 '"${parameters["error"]}"'); |
| 124 | 124 |
| 125 for (var name in ['error_description', 'error_uri']) { | 125 for (var name in ['error_description', 'error_uri']) { |
| 126 var value = parameters[name]; | 126 var value = parameters[name]; |
| 127 validate(value == null || value is String, | 127 validate(value == null || value is String, |
| 128 'parameter "$name" was not a string, was "$value"'); | 128 'parameter "$name" was not a string, was "$value"'); |
| 129 } | 129 } |
| 130 | 130 |
| 131 var description = parameters['error_description']; | 131 var description = parameters['error_description']; |
| 132 var uriString = parameters['error_uri']; | 132 var uriString = parameters['error_uri']; |
| 133 var uri = uriString == null ? null : new Uri.fromString(uriString); | 133 var uri = uriString == null ? null : Uri.parse(uriString); |
| 134 throw new AuthorizationException(parameters['error'], description, uri); | 134 throw new AuthorizationException(parameters['error'], description, uri); |
| 135 } | 135 } |
| 136 | 136 |
| 137 void _validate( | 137 void _validate( |
| 138 http.Response response, | 138 http.Response response, |
| 139 Uri tokenEndpoint, | 139 Uri tokenEndpoint, |
| 140 bool condition, | 140 bool condition, |
| 141 String message) { | 141 String message) { |
| 142 if (condition) return; | 142 if (condition) return; |
| 143 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": ' | 143 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": ' |
| 144 '$message.\n\n${response.body}'); | 144 '$message.\n\n${response.body}'); |
| 145 } | 145 } |
| OLD | NEW |