Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 utils; | 5 library utils; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:convert'; | 8 import 'dart:convert'; |
| 9 import 'dart:io'; | 9 import 'dart:io'; |
| 10 | 10 |
| 11 Future<int> getStatusCode(int port, | 11 Future<int> getStatusCode(int port, |
| 12 String path, | 12 String path, |
| 13 {String host, | 13 {String host, |
| 14 bool secure: false, | 14 bool secure: false, |
| 15 DateTime ifModifiedSince, | 15 DateTime ifModifiedSince, |
| 16 bool rawPath: false}) { | 16 bool rawPath: false}) { |
| 17 var uri; | 17 Uri uri; |
|
Siggi Cherem (dart-lang)
2014/01/06 17:40:23
note that we prefer 'var' for local variables. Was
kevmoo
2014/01/06 18:11:33
I'm a big fan of being explicit w/ the local var t
| |
| 18 if (rawPath) { | 18 if (rawPath) { |
| 19 uri = new Uri(scheme: secure ? 'https' : 'http', | 19 uri = new Uri(scheme: secure ? 'https' : 'http', |
| 20 host: 'localhost', | 20 host: 'localhost', |
| 21 port: port, | 21 port: port, |
| 22 path: path); | 22 path: path); |
| 23 } else { | 23 } else { |
| 24 uri = (secure ? | 24 uri = (secure ? |
| 25 new Uri.https('localhost:$port', path) : | 25 new Uri.https('localhost:$port', path) : |
| 26 new Uri.http('localhost:$port', path)); | 26 new Uri.http('localhost:$port', path)); |
| 27 } | 27 } |
| 28 | |
| 28 return new HttpClient().getUrl(uri) | 29 return new HttpClient().getUrl(uri) |
| 29 .then((request) { | 30 .then((request) { |
| 30 if (host != null) request.headers.host = host; | 31 if (host != null) request.headers.host = host; |
| 31 if (ifModifiedSince != null) { | 32 if (ifModifiedSince != null) { |
| 32 request.headers.ifModifiedSince = ifModifiedSince; | 33 request.headers.ifModifiedSince = ifModifiedSince; |
| 33 } | 34 } |
| 34 return request.close(); | 35 return request.close(); |
| 35 }) | 36 }) |
| 36 .then((response) => response.drain().then( | 37 .then((response) => response.drain().then( |
| 37 (_) => response.statusCode)); | 38 (_) => response.statusCode)); |
| 38 } | 39 } |
| 39 | 40 |
| 40 | 41 |
| 41 Future<HttpHeaders> getHeaders(int port, String path) { | 42 Future<HttpHeaders> getHeaders(int port, String path) => |
| 42 return new HttpClient().get('localhost', port, path) | 43 new HttpClient() |
| 44 .get('localhost', port, path) | |
| 43 .then((request) => request.close()) | 45 .then((request) => request.close()) |
| 44 .then((response) => response.drain().then( | 46 .then((response) => response.drain().then( |
| 45 (_) => response.headers)); | 47 (_) => response.headers)); |
| 46 } | |
| 47 | 48 |
| 48 | 49 |
| 49 Future<String> getAsString(int port, String path) { | 50 |
| 50 return new HttpClient().get('localhost', port, path) | 51 Future<String> getAsString(int port, String path) => |
| 52 new HttpClient() | |
| 53 .get('localhost', port, path) | |
| 51 .then((request) => request.close()) | 54 .then((request) => request.close()) |
| 52 .then((response) => UTF8.decodeStream(response)); | 55 .then((response) => UTF8.decodeStream(response)); |
| 53 } | |
| 54 | 56 |
| 55 | 57 |
| 56 const CERTIFICATE = "localhost_cert"; | 58 const CERTIFICATE = "localhost_cert"; |
| 57 | 59 |
| 58 | 60 |
| 59 setupSecure() { | 61 void setupSecure() { |
| 60 String certificateDatabase = Platform.script.resolve('pkcert').toFilePath(); | 62 String certificateDatabase = Platform.script.resolve('pkcert').toFilePath(); |
| 61 SecureSocket.initialize(database: certificateDatabase, | 63 SecureSocket.initialize(database: certificateDatabase, |
| 62 password: 'dartdart'); | 64 password: 'dartdart'); |
| 63 } | 65 } |
| OLD | NEW |