mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 21:39:34 +02:00
First crack the API
This commit is contained in:
28
NzbDrone.Api/Helpers/HttpRequestExtensions.cs
Normal file
28
NzbDrone.Api/Helpers/HttpRequestExtensions.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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];
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user