mirror of
https://github.com/bitwarden/server.git
synced 2024-11-26 12:55:17 +01:00
use png extension for CDN caching
This commit is contained in:
parent
ac901716cf
commit
4c3c594603
@ -26,20 +26,16 @@ namespace Bit.Icons.Controllers
|
||||
_iconsSettings = iconsSettings;
|
||||
}
|
||||
|
||||
[HttpGet("")]
|
||||
[ResponseCache(Duration = 86400 /*24 hours*/, VaryByQueryKeys = new string[] { "url" })]
|
||||
public async Task<IActionResult> Get([FromQuery]string url)
|
||||
[HttpGet("{hostname}/icon.png")]
|
||||
[ResponseCache(Duration = 86400 /*24 hours*/)]
|
||||
public async Task<IActionResult> Get(string hostname)
|
||||
{
|
||||
if(string.IsNullOrWhiteSpace(url))
|
||||
if(string.IsNullOrWhiteSpace(hostname) || !hostname.Contains("."))
|
||||
{
|
||||
return new BadRequestResult();
|
||||
}
|
||||
|
||||
if(!url.StartsWith("http://") && !url.StartsWith("https://"))
|
||||
{
|
||||
url = "http://" + url;
|
||||
}
|
||||
|
||||
var url = $"http://{hostname}";
|
||||
if(!Uri.TryCreate(url, UriKind.Absolute, out Uri uri))
|
||||
{
|
||||
return new BadRequestResult();
|
||||
|
Loading…
Reference in New Issue
Block a user