mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Standardize '/version' endpoint on all services (#1755)
This commit is contained in:
parent
d3673cdc85
commit
2ec10cfd2a
@ -18,14 +18,6 @@ namespace Bit.Sso.Controllers
|
|||||||
_interaction = interaction;
|
_interaction = interaction;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
[AllowAnonymous]
|
|
||||||
public DateTime GetAlive()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
|
|
||||||
[Route("~/Error")]
|
[Route("~/Error")]
|
||||||
[Route("~/Home/Error")]
|
[Route("~/Home/Error")]
|
||||||
[AllowAnonymous]
|
[AllowAnonymous]
|
||||||
|
22
bitwarden_license/src/Sso/Controllers/InfoController.cs
Normal file
22
bitwarden_license/src/Sso/Controllers/InfoController.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Sso.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.Diagnostics;
|
||||||
using System.Diagnostics;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Bit.Admin.Models;
|
using Bit.Admin.Models;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
@ -30,13 +29,6 @@ namespace Bit.Admin.Controllers
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
public DateTime Get()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
|
|
||||||
public IActionResult Error()
|
public IActionResult Error()
|
||||||
{
|
{
|
||||||
return View(new ErrorViewModel
|
return View(new ErrorViewModel
|
||||||
|
22
src/Admin/Controllers/InfoController.cs
Normal file
22
src/Admin/Controllers/InfoController.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Admin.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
38
src/Api/Controllers/InfoController.cs
Normal file
38
src/Api/Controllers/InfoController.cs
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Api.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/ip")]
|
||||||
|
public JsonResult Ip()
|
||||||
|
{
|
||||||
|
var headerSet = new HashSet<string> { "x-forwarded-for", "cf-connecting-ip", "client-ip" };
|
||||||
|
var headers = HttpContext.Request?.Headers
|
||||||
|
.Where(h => headerSet.Contains(h.Key.ToLower()))
|
||||||
|
.ToDictionary(h => h.Key);
|
||||||
|
return new JsonResult(new
|
||||||
|
{
|
||||||
|
Ip = HttpContext.Connection?.RemoteIpAddress?.ToString(),
|
||||||
|
Headers = headers,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
using Bit.Core.Models.Api;
|
using Bit.Core.Models.Api;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.Core.Utilities;
|
using Bit.Core.Utilities;
|
||||||
@ -24,33 +23,6 @@ namespace Bit.Api.Controllers
|
|||||||
_globalSettings = globalSettings;
|
_globalSettings = globalSettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
public DateTime Get()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet("~/version")]
|
|
||||||
public VersionResponseModel Version()
|
|
||||||
{
|
|
||||||
return new VersionResponseModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet("~/ip")]
|
|
||||||
public JsonResult Ip()
|
|
||||||
{
|
|
||||||
var headerSet = new HashSet<string> { "x-forwarded-for", "cf-connecting-ip", "client-ip" };
|
|
||||||
var headers = HttpContext.Request?.Headers
|
|
||||||
.Where(h => headerSet.Contains(h.Key.ToLower()))
|
|
||||||
.ToDictionary(h => h.Key);
|
|
||||||
return new JsonResult(new
|
|
||||||
{
|
|
||||||
Ip = HttpContext.Connection?.RemoteIpAddress?.ToString(),
|
|
||||||
Headers = headers,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
[Authorize("Application")]
|
[Authorize("Application")]
|
||||||
[HttpPost("~/bitpay-invoice")]
|
[HttpPost("~/bitpay-invoice")]
|
||||||
[SelfHosted(NotSelfHostedOnly = true)]
|
[SelfHosted(NotSelfHostedOnly = true)]
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Microsoft.AspNetCore.Authorization;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
|
|
||||||
namespace Billing.Controllers
|
|
||||||
{
|
|
||||||
public class HomeController : Controller
|
|
||||||
{
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
[AllowAnonymous]
|
|
||||||
public DateTime GetAlive()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
[Authorize]
|
|
||||||
public IActionResult Index()
|
|
||||||
{
|
|
||||||
return View();
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
}
|
|
22
src/Billing/Controllers/InfoController.cs
Normal file
22
src/Billing/Controllers/InfoController.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Billing.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,16 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Bit.Core.Utilities;
|
|
||||||
|
|
||||||
namespace Bit.Core.Models.Api
|
|
||||||
{
|
|
||||||
public class VersionResponseModel : ResponseModel
|
|
||||||
{
|
|
||||||
public VersionResponseModel()
|
|
||||||
: base("version")
|
|
||||||
{
|
|
||||||
Version = CoreHelpers.GetVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
public string Version { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -32,14 +32,6 @@ namespace Bit.Events.Controllers
|
|||||||
_cipherRepository = cipherRepository;
|
_cipherRepository = cipherRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
[AllowAnonymous]
|
|
||||||
public DateTime GetAlive()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public async Task<IActionResult> Post([FromBody]IEnumerable<EventModel> model)
|
public async Task<IActionResult> Post([FromBody]IEnumerable<EventModel> model)
|
||||||
{
|
{
|
||||||
|
22
src/Events/Controllers/InfoController.cs
Normal file
22
src/Events/Controllers/InfoController.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Events.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -49,7 +49,12 @@ namespace Bit.EventsProcessor
|
|||||||
app.UseEndpoints(endpoints =>
|
app.UseEndpoints(endpoints =>
|
||||||
{
|
{
|
||||||
endpoints.MapGet("/alive",
|
endpoints.MapGet("/alive",
|
||||||
async context => await context.Response.WriteAsync(System.DateTime.UtcNow.ToString()));
|
async context => await context.Response.WriteAsJsonAsync(System.DateTime.UtcNow));
|
||||||
|
endpoints.MapGet("/now",
|
||||||
|
async context => await context.Response.WriteAsJsonAsync(System.DateTime.UtcNow));
|
||||||
|
endpoints.MapGet("/version",
|
||||||
|
async context => await context.Response.WriteAsJsonAsync(CoreHelpers.GetVersion()));
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -39,13 +39,6 @@ namespace Bit.Icons.Controllers
|
|||||||
_iconsSettings = iconsSettings;
|
_iconsSettings = iconsSettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
public DateTime GetAlive()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet("~/config")]
|
[HttpGet("~/config")]
|
||||||
public IActionResult GetConfig()
|
public IActionResult GetConfig()
|
||||||
{
|
{
|
||||||
|
22
src/Icons/Controllers/InfoController.cs
Normal file
22
src/Icons/Controllers/InfoController.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Icons.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
22
src/Identity/Controllers/InfoController.cs
Normal file
22
src/Identity/Controllers/InfoController.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Identity.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,17 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
|
|
||||||
namespace Bit.Identity.Controllers
|
|
||||||
{
|
|
||||||
public class MiscController : Controller
|
|
||||||
{
|
|
||||||
public MiscController() { }
|
|
||||||
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
public DateTime Get()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
22
src/Notifications/Controllers/InfoController.cs
Normal file
22
src/Notifications/Controllers/InfoController.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Bit.Core.Utilities;
|
||||||
|
|
||||||
|
namespace Bit.Notifications.Controllers
|
||||||
|
{
|
||||||
|
public class InfoController : Controller
|
||||||
|
{
|
||||||
|
[HttpGet("~/alive")]
|
||||||
|
[HttpGet("~/now")]
|
||||||
|
public DateTime GetAlive()
|
||||||
|
{
|
||||||
|
return DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("~/version")]
|
||||||
|
public JsonResult GetVersion()
|
||||||
|
{
|
||||||
|
return Json(CoreHelpers.GetVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.IO;
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.Core.Utilities;
|
using Bit.Core.Utilities;
|
||||||
@ -19,14 +18,6 @@ namespace Bit.Notifications
|
|||||||
_hubContext = hubContext;
|
_hubContext = hubContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("~/alive")]
|
|
||||||
[HttpGet("~/now")]
|
|
||||||
[AllowAnonymous]
|
|
||||||
public DateTime GetAlive()
|
|
||||||
{
|
|
||||||
return DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpPost("~/send")]
|
[HttpPost("~/send")]
|
||||||
[SelfHosted(SelfHostedOnly = true)]
|
[SelfHosted(SelfHostedOnly = true)]
|
||||||
public async Task PostSend()
|
public async Task PostSend()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user