You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
699 B
29 lines
699 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using ServiceStack.Common.Web;
|
|
using ServiceStack.ServiceHost;
|
|
|
|
namespace NzbDrone.Api.Helpers
|
|
{
|
|
public static class HttpRequestExtensions
|
|
{
|
|
public static string GetApiKey(this IHttpRequest httpReq)
|
|
{
|
|
var auth = httpReq.Headers[HttpHeaders.Authorization];
|
|
if (auth == null) return null;
|
|
|
|
var split = auth.Split(' ');
|
|
|
|
if (split.Count() != 2)
|
|
return null;
|
|
|
|
if (!split[0].Equals("APIKEY", StringComparison.InvariantCultureIgnoreCase))
|
|
return null;
|
|
|
|
return split[1];
|
|
}
|
|
}
|
|
}
|