File size: 31,146 Bytes
7b715bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 | /*
Copyright 2017 Google Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
using Google.Apis.Auth.OAuth2.Requests;
using Google.Apis.Auth.OAuth2.Responses;
using Google.Apis.Logging;
using Google.Apis.Util;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Google.Apis.Auth.OAuth2
{
/// <summary>
/// OAuth 2.0 verification code receiver that runs a local server on a free port and waits for a call with the
/// authorization verification code.
/// </summary>
public class LocalServerCodeReceiver : ICodeReceiver
{
/// <summary>
/// Describes the different strategies for the selection of the callback URI.
/// 127.0.0.1 is recommended, but can't be done in non-admin Windows 7 and 8 at least.
/// </summary>
public enum CallbackUriChooserStrategy
{
/// <summary>
/// Use heuristics to attempt to connect to the recommended URI 127.0.0.1
/// but use localhost if that fails.
/// </summary>
Default,
/// <summary>
/// Force 127.0.0.1 as the callback URI. No checks are performed.
/// </summary>
ForceLoopbackIp,
/// <summary>
/// Force localhost as the callback URI. No checks are performed.
/// </summary>
ForceLocalhost
}
private static readonly ILogger Logger = ApplicationContext.Logger.ForType<LocalServerCodeReceiver>();
/// <summary>The call back request path.</summary>
internal const string LoopbackCallbackPath = "/authorize/";
/// <summary>Close HTML tag to return the browser so it will close itself.</summary>
internal const string DefaultClosePageResponse =
@"<html>
<head><title>OAuth 2.0 Authentication Token Received</title></head>
<body>
Received verification code. You may now close this window.
</body>
</html>";
/// <summary>
/// Create an instance of <see cref="LocalServerCodeReceiver"/>.
/// </summary>
public LocalServerCodeReceiver() : this(DefaultClosePageResponse, CallbackUriChooserStrategy.Default) { }
/// <summary>
/// Create an instance of <see cref="LocalServerCodeReceiver"/>.
/// </summary>
/// <param name="closePageResponse">Custom close page response for this instance</param>
public LocalServerCodeReceiver(string closePageResponse) :
this(closePageResponse, CallbackUriChooserStrategy.Default) { }
/// <summary>
/// Create an instance of <see cref="LocalServerCodeReceiver"/>.
/// </summary>
/// <param name="closePageResponse">Custom close page response for this instance</param>
/// <param name="strategy">The strategy to use to determine the callback URI</param>
public LocalServerCodeReceiver(string closePageResponse, CallbackUriChooserStrategy strategy)
{
_closePageResponse = closePageResponse;
// Set the instance field of which callback URI to use.
// An instance field is used to ensure any one instance of this class
// uses a consistent callback URI.
_callbackUriTemplate = CallbackUriChooser.Default.GetUriTemplate(strategy);
}
// Callback URI used for this instance.
private string _callbackUriTemplate;
// Close page response for this instance.
private readonly string _closePageResponse;
// Not required in NET45, but present for testing.
/// <summary>
/// An extremely limited HTTP server that can only do exactly what is required
/// for this use-case.
/// It can only serve localhost; receive a single GET request; read only the query paremters;
/// send back a fixed response. Nothing else.
/// </summary>
internal class LimitedLocalhostHttpServer : IDisposable
{
// RFC7230 recommends supporting a request-line length of at least 8,000 octets
// https://tools.ietf.org/html/rfc7230#section-3.1.1
private const int MaxRequestLineLength = 16 * 1024;
private const int MaxHeadersLength = 64 * 1024;
private const int NetworkReadBufferSize = 1024;
private static ILogger Logger = ApplicationContext.Logger.ForType<LimitedLocalhostHttpServer>();
public class ServerException : Exception
{
public ServerException(string msg) : base(msg) { }
}
public static LimitedLocalhostHttpServer Start(string url, string closePageResponse)
{
var uri = new Uri(url);
if (!uri.IsLoopback)
{
throw new ArgumentException($"Url must be loopback, but given: '{url}'", nameof(url));
}
var listener = new TcpListener(IPAddress.Loopback, uri.Port);
return new LimitedLocalhostHttpServer(listener, closePageResponse);
}
private LimitedLocalhostHttpServer(TcpListener listener, string closePageResponse)
{
_listener = listener;
_closePageResponse = closePageResponse;
_cts = new CancellationTokenSource();
_listener.Start();
Port = ((IPEndPoint)_listener.LocalEndpoint).Port;
}
private readonly TcpListener _listener;
private readonly CancellationTokenSource _cts;
// Close page response for this instance.
private readonly string _closePageResponse;
public int Port { get; }
public async Task<Dictionary<string, string>> GetQueryParamsAsync(CancellationToken cancellationToken = default(CancellationToken))
{
using (var cts = CancellationTokenSource.CreateLinkedTokenSource(_cts.Token, cancellationToken))
using (cts.Token.Register(_listener.Stop))
{
try
{
using (TcpClient client = await _listener.AcceptTcpClientAsync().ConfigureAwait(false))
{
try
{
return await GetQueryParamsFromClientAsync(client, cts.Token).ConfigureAwait(false);
}
catch (ServerException e)
{
Logger.Warning("{0}", e.Message);
throw;
}
}
}
// Cancellation during the `AcceptTcpClientAsync()` call results in an `ObjectDisposedException`.
// Translate it to the expected cancellation exception.
catch (ObjectDisposedException) when (cts.IsCancellationRequested)
{
cts.Token.ThrowIfCancellationRequested();
// Will never get here, but required to satisfy compiler.
throw;
}
}
}
private async Task<Dictionary<string, string>> GetQueryParamsFromClientAsync(TcpClient client, CancellationToken cancellationToken)
{
var stream = client.GetStream();
// NetworkStream.ReadAsync() doesn't honour the cancellation-token (on all platforms),
// so use workaround
using (cancellationToken.Register(() => stream.Dispose()))
{
var buffer = new byte[NetworkReadBufferSize];
int bufferOfs = 0;
int bufferSize = 0;
Func<Task<char?>> getChar = async () =>
{
if (bufferOfs == bufferSize)
{
try
{
bufferSize = await stream.ReadAsync(buffer, 0, buffer.Length).ConfigureAwait(false);
}
// netcoreapp2.x throws an IOException on stream disposal; others throw ObjectDispoesdException
catch (Exception e) when (e is ObjectDisposedException || e is IOException)
{
throw new OperationCanceledException(cancellationToken);
}
// netcoreapp2.0 on Linux sometimes doesn't throw an exception on stream disposal in ReadAsync,
// so check for cancellation afterwards
cancellationToken.ThrowIfCancellationRequested();
if (bufferSize == 0)
{
// End of stream
return null;
}
bufferOfs = 0;
}
byte b = buffer[bufferOfs++];
// HTTP headers are generally ASCII, but historically allowed ISO-8859-1.
// Non-ASCII bytes should be treated opaquely, not further processed (e.g. as UTF8).
return (char)b;
};
string requestLine = await ReadRequestLine(getChar).ConfigureAwait(false);
var requestParams = ValidateAndGetRequestParams(requestLine);
await WaitForAllHeaders(getChar).ConfigureAwait(false);
await WriteResponse(stream, cancellationToken).ConfigureAwait(false);
return requestParams;
}
}
private async Task<string> ReadRequestLine(Func<Task<char?>> getChar)
{
var requestLine = new StringBuilder(MaxRequestLineLength);
do
{
if (requestLine.Length >= MaxRequestLineLength)
{
throw new ServerException($"Request line too long: > {MaxRequestLineLength} bytes.");
}
char? c = await getChar().ConfigureAwait(false);
if (c == null)
{
throw new ServerException("Unexpected end of network stream reading request line.");
}
requestLine.Append(c);
} while (requestLine.Length < 2 || requestLine[requestLine.Length - 2] != '\r' || requestLine[requestLine.Length - 1] != '\n');
requestLine.Length -= 2; // Remove \r\n
return requestLine.ToString();
}
private Dictionary<string, string> ValidateAndGetRequestParams(string requestLine)
{
var requestLineParts = requestLine.Split(' ');
if (requestLineParts.Length != 3)
{
throw new ServerException("Request line ill-formatted. Should be '<request-method> <request-path> HTTP/1.1'");
}
string requestVerb = requestLineParts[0];
if (requestVerb != "GET")
{
throw new ServerException($"Expected 'GET' request, got '{requestVerb}'");
}
string requestPath = requestLineParts[1];
if (!requestPath.StartsWith(LoopbackCallbackPath, StringComparison.Ordinal))
{
throw new ServerException($"Expected request path to start '{LoopbackCallbackPath}', got '{requestPath}'");
}
var pathParts = requestPath.Split('?');
if (pathParts.Length == 1)
{
return new Dictionary<string, string>();
}
if (pathParts.Length != 2)
{
throw new ServerException($"Expected a single '?' in request path, got '{requestPath}'");
}
var queryParams = pathParts[1];
var result = queryParams.Split(new[] { '&' }, StringSplitOptions.RemoveEmptyEntries).Select(param =>
{
var keyValue = param.Split('=');
if (keyValue.Length > 2)
{
throw new ServerException($"Invalid query parameter: '{param}'");
}
var key = WebUtility.UrlDecode(keyValue[0]);
var value = keyValue.Length == 2 ? WebUtility.UrlDecode(keyValue[1]) : "";
return new { key, value };
}).ToDictionary(x => x.key, x => x.value);
return result;
}
private async Task WaitForAllHeaders(Func<Task<char?>> getChar)
{
// Looking for an empty line, terminated by \r\n
int byteCount = 0;
int lineLength = 0;
char c0 = '\0';
char c1 = '\0';
while (true)
{
if (byteCount > MaxHeadersLength)
{
throw new ServerException($"Headers too long: > {MaxHeadersLength} bytes.");
}
char? c = await getChar().ConfigureAwait(false);
if (c == null)
{
throw new ServerException("Unexpected end of network stream waiting for headers.");
}
c0 = c1;
c1 = (char)c;
lineLength += 1;
byteCount += 1;
if (c0 == '\r' && c1 == '\n')
{
// End of line
if (lineLength == 2)
{
return;
}
lineLength = 0;
}
}
}
private async Task WriteResponse(NetworkStream stream, CancellationToken cancellationToken)
{
string fullResponse = $"HTTP/1.1 200 OK\r\n\r\n{_closePageResponse}";
var response = Encoding.ASCII.GetBytes(fullResponse);
await stream.WriteAsync(response, 0, response.Length, cancellationToken).ConfigureAwait(false);
await stream.FlushAsync(cancellationToken).ConfigureAwait(false);
}
public void Dispose()
{
_cts.Cancel();
_listener.Stop();
}
}
// There is a race condition on the port used for the loopback callback.
// This is not good, but is now difficult to change due to RedirectUri and ReceiveCodeAsync
// being public methods.
private string redirectUri;
/// <inheritdoc />
public string RedirectUri
{
get
{
if (string.IsNullOrEmpty(redirectUri))
{
redirectUri = string.Format(_callbackUriTemplate, GetRandomUnusedPort());
}
return redirectUri;
}
}
/// <inheritdoc />
public async Task<AuthorizationCodeResponseUrl> ReceiveCodeAsync(AuthorizationCodeRequestUrl url,
CancellationToken taskCancellationToken)
{
var authorizationUrl = url.Build().AbsoluteUri;
// The listener type depends on platform:
// * .NET desktop: System.Net.HttpListener
// * .NET Core: LimitedLocalhostHttpServer (above, HttpListener is not available in any version of netstandard)
using var listener = StartListener();
Logger.Debug("Open a browser with \"{0}\" URL", authorizationUrl);
bool browserOpenedOk;
try
{
browserOpenedOk = OpenBrowser(authorizationUrl);
}
catch (Exception e)
{
Logger.Error(e, "Failed to launch browser with \"{0}\" for authorization", authorizationUrl);
throw new NotSupportedException(
$"Failed to launch browser with \"{authorizationUrl}\" for authorization. See inner exception for details.", e);
}
if (!browserOpenedOk)
{
Logger.Error("Failed to launch browser with \"{0}\" for authorization; platform not supported.", authorizationUrl);
throw new NotSupportedException(
$"Failed to launch browser with \"{authorizationUrl}\" for authorization; platform not supported.");
}
var ret = await GetResponseFromListener(listener, taskCancellationToken).ConfigureAwait(false);
return ret;
}
/// <summary>Returns a random, unused port.</summary>
private static int GetRandomUnusedPort()
{
var listener = new TcpListener(IPAddress.Loopback, 0);
try
{
listener.Start();
return ((IPEndPoint)listener.LocalEndpoint).Port;
}
finally
{
listener.Stop();
}
}
private HttpListener StartListener()
{
try
{
var listener = new HttpListener();
listener.Prefixes.Add(RedirectUri);
listener.Start();
return listener;
}
catch
{
CallbackUriChooser.Default.ReportFailure(_callbackUriTemplate);
throw;
}
}
private async Task<AuthorizationCodeResponseUrl> GetResponseFromListener(HttpListener listener, CancellationToken ct)
{
HttpListenerContext context;
// Set up cancellation. HttpListener.GetContextAsync() doesn't accept a cancellation token,
// the HttpListener needs to be stopped which immediately aborts the GetContextAsync() call.
using (ct.Register(listener.Stop))
{
// Wait to get the authorization code response.
try
{
context = await listener.GetContextAsync().ConfigureAwait(false);
}
catch (Exception) when (ct.IsCancellationRequested)
{
ct.ThrowIfCancellationRequested();
// Next line will never be reached because cancellation will always have been requested in this catch block.
// But it's required to satisfy compiler.
throw new InvalidOperationException();
}
catch
{
CallbackUriChooser.Default.ReportFailure(_callbackUriTemplate);
throw;
}
CallbackUriChooser.Default.ReportSuccess(_callbackUriTemplate);
}
NameValueCollection coll = context.Request.QueryString;
// Write a "close" response.
var bytes = Encoding.UTF8.GetBytes(_closePageResponse);
context.Response.ContentLength64 = bytes.Length;
context.Response.SendChunked = false;
context.Response.KeepAlive = false;
var output = context.Response.OutputStream;
await output.WriteAsync(bytes, 0, bytes.Length).ConfigureAwait(false);
await output.FlushAsync().ConfigureAwait(false);
output.Close();
context.Response.Close();
// Create a new response URL with a dictionary that contains all the response query parameters.
return new AuthorizationCodeResponseUrl(coll.AllKeys.ToDictionary(k => k, k => coll[k]));
}
/// <summary>
/// Open a browser and navigate to a URL.
/// </summary>
/// <param name="url">URL to navigate to</param>
/// <returns>true if browser was launched successfully, false otherwise</returns>
#if NETSTANDARD2_0 || NET6_0_OR_GREATER
protected virtual bool OpenBrowser(string url)
{
// See https://github.com/dotnet/corefx/issues/10361
// This is best-effort only, but should work most of the time.
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
// See https://stackoverflow.com/a/6040946/44360 for why this is required
url = System.Text.RegularExpressions.Regex.Replace(url, @"(\\*)" + "\"", @"$1$1\" + "\"");
url = System.Text.RegularExpressions.Regex.Replace(url, @"(\\+)$", @"$1$1");
Process.Start(new ProcessStartInfo("cmd", $"/c start \"\" \"{url}\"") { CreateNoWindow = true });
return true;
}
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
Process.Start("xdg-open", url);
return true;
}
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
Process.Start("open", url);
return true;
}
return false;
}
#elif NET462_OR_GREATER
protected virtual bool OpenBrowser(string url)
{
Process.Start(url);
return true;
}
#else
#error Unsupported target
#endif
internal class CallbackUriChooser
{
/// <summary>Localhost callback URI, expects a port parameter.</summary>
internal static readonly string CallbackUriTemplateLocalhost = $"http://localhost:{{0}}{LoopbackCallbackPath}";
/// <summary>127.0.0.1 callback URI, expects a port parameter.</summary>
internal static readonly string CallbackUriTemplate127001 = $"http://127.0.0.1:{{0}}{LoopbackCallbackPath}";
private readonly IClock _clock;
// TODO: Consider allowing user code to configure this timeout value.
private readonly TimeSpan _timeout;
private readonly Func<string, bool> _listenerFailsFor;
private readonly object _lock = new object();
// TODO: Consider using a dictionary here. But we only have two templates.
private UriStatistics _loopbackIp;
private UriStatistics _localhost;
public static CallbackUriChooser Default { get; } = new CallbackUriChooser();
public CallbackUriChooser():
this(SystemClock.Default, TimeSpan.FromMinutes(1), FailsHttpListener)
{ }
internal CallbackUriChooser(IClock clock, TimeSpan timeout, Func<string, bool> listenerFailsFor)
{
_clock = clock;
_timeout = timeout;
_listenerFailsFor = listenerFailsFor;
}
internal string GetUriTemplate(CallbackUriChooserStrategy strategy)
{
lock (_lock)
{
if (strategy == CallbackUriChooserStrategy.ForceLoopbackIp)
{
// We still want to know what happens, we just won't do the initial check.
InitUriStatisticsIfNeeded(ref _loopbackIp, CallbackUriTemplate127001, false);
return _loopbackIp.Uri;
}
if (strategy == CallbackUriChooserStrategy.ForceLocalhost)
{
// We still want to know what happens, we just won't do the initial check.
InitUriStatisticsIfNeeded(ref _localhost, CallbackUriTemplateLocalhost, false);
return _localhost.Uri;
}
// Listening on 127.0.0.1 is recommended, but can't be done in non-admin Windows 7 & 8 at least.
// So use some tests/heuristics to maybe listen on localhost instead.
// If this is the first time that we are called, try with the recommended IP.
InitUriStatisticsIfNeeded(ref _loopbackIp, CallbackUriTemplate127001, true);
// We now know something about the loopback IP for sure. Let's see if we can use it. If so,
// let's return it.
if (_loopbackIp.CanBeUsed)
{
return _loopbackIp.Uri;
}
// If we are here, we know we can't use the loopback IP, either because it failed or because it
// timed out.
// Let's try with localhost.
InitUriStatisticsIfNeeded(ref _localhost, CallbackUriTemplateLocalhost, true);
// We now know something about localhost for sure. Let's see if we can use it. If so,
// let's return it.
if (_localhost.CanBeUsed)
{
return _localhost.Uri;
}
// If we are here then we haven't been able to use loopback IP or localhost, either
// because of failure, or timeout.
// This is probably bad, but we can still recover if
// a) Timeouts were because of user inaction.
// b) Failures were transient.
// Let's try our best.
UriStatistics retriable = _loopbackIp.TotalResets switch
{
// We always prefer the one with less resets.
var loopbackResets when loopbackResets < _localhost.TotalResets => _loopbackIp,
var loopbackResets when loopbackResets > _localhost.TotalResets => _localhost,
// If they have the same amount of resets, then we prefer the one that has timed out
// and we prefer loopback if both have timed out.
_ when _loopbackIp.IsTimedOut => _loopbackIp,
_ when _localhost.IsTimedOut => _localhost,
// If they have the same amount of resets and none has timed out (they have failed), then we prefer loopback.
_ => _loopbackIp
};
retriable.Reset();
return retriable.Uri;
}
void InitUriStatisticsIfNeeded(ref UriStatistics statistics, string uri, bool checkListener)
{
if (statistics == null)
{
statistics = new UriStatistics(uri, _timeout, _clock);
// If possible, preemptively check that the uri works on this environment.
// For instance, the loopback IP fails at least on Windows 7 and 8, for non-admin users.
if (checkListener && _listenerFailsFor(statistics.Uri))
{
statistics.Failed();
}
}
}
}
public void ReportSuccess(string uri) => GetStatisticsFor(uri).Succeeded();
public void ReportFailure(string uri) => GetStatisticsFor(uri).Failed();
private UriStatistics GetStatisticsFor(string uri) =>
uri == CallbackUriTemplate127001 ? _loopbackIp :
uri == CallbackUriTemplateLocalhost ? _localhost :
throw new ArgumentOutOfRangeException(nameof(uri));
private static bool FailsHttpListener(string uri)
{
try
{
// This listener isn't used for anything except to check if it can listen on the given URI.
// Hence it is disposed immediately.
using var listener = new HttpListener();
listener.Prefixes.Add(string.Format(uri, GetRandomUnusedPort()));
listener.Start();
}
catch (HttpListenerException e) when (e.ErrorCode == 5) // 5: Access denied
{
// Access denied for the given URI, report failure.
return true;
}
catch
{
// Ignore any errors here, they will re-occur later.
}
return false;
}
private class UriStatistics
{
private readonly TimeSpan _timeouts;
private readonly IClock _clock;
public string Uri { get; }
public DateTimeOffset FirstServedAt { get; private set; }
public bool IsKnownToSucceed { get; private set; }
public bool IsKnownToFail { get; private set; }
public int TotalResets { get; private set; }
public bool IsTimedOut =>
// If we know of success or failure it is not timed out.
!IsKnownToSucceed && !IsKnownToFail &&
FirstServedAt.Add(_timeouts) <= _clock.UtcNow;
public bool CanBeUsed =>
// If it's known to succeed, even if it has failed, it can be used.
IsKnownToSucceed ||
(!IsKnownToFail && !IsTimedOut);
public UriStatistics(string uri, TimeSpan timeoutsAfter, IClock clock)
{
_timeouts = timeoutsAfter;
_clock = clock;
Uri = uri;
FirstServedAt = new DateTimeOffset(_clock.UtcNow);
IsKnownToSucceed = false;
IsKnownToFail = false;
TotalResets = 0;
}
public void Succeeded() => IsKnownToSucceed = true;
public void Failed() => IsKnownToFail = true;
public void Reset()
{
TotalResets++;
FirstServedAt = new DateTimeOffset(_clock.UtcNow);
IsKnownToFail = false;
}
}
}
}
}
|