49 lines
1.6 KiB
C#
49 lines
1.6 KiB
C#
using Umbraco.Core;
|
|
using Umbraco.Core.Cache;
|
|
using Umbraco.Core.Configuration;
|
|
using Umbraco.Core.Hosting;
|
|
using Umbraco.Core.Logging;
|
|
using Umbraco.Core.Mapping;
|
|
using Umbraco.Core.Persistence;
|
|
using Umbraco.Core.Services;
|
|
using Umbraco.Core.Strings;
|
|
using Umbraco.Web.Editors;
|
|
using Umbraco.Web.Routing;
|
|
using Umbraco.Web.WebApi.Filters;
|
|
|
|
namespace Umbraco.Web.Profiling
|
|
{
|
|
/// <summary>
|
|
/// The API controller used to display the state of the web profiler
|
|
/// </summary>
|
|
[UmbracoApplicationAuthorize(Core.Constants.Applications.Settings)]
|
|
public class WebProfilingController : UmbracoAuthorizedJsonController
|
|
{
|
|
private readonly IHostingEnvironment _hosting;
|
|
|
|
public WebProfilingController(
|
|
IGlobalSettings globalSettings,
|
|
IUmbracoContextAccessor umbracoContextAccessor,
|
|
ISqlContext sqlContext,
|
|
ServiceContext services,
|
|
AppCaches appCaches,
|
|
IProfilingLogger logger,
|
|
IRuntimeState runtimeState,
|
|
IShortStringHelper shortStringHelper,
|
|
UmbracoMapper umbracoMapper,
|
|
IPublishedUrlProvider publishedUrlProvider,
|
|
IHostingEnvironment hosting)
|
|
: base(globalSettings, umbracoContextAccessor, sqlContext, services, appCaches, logger, runtimeState, shortStringHelper, umbracoMapper, publishedUrlProvider)
|
|
{
|
|
_hosting = hosting;
|
|
}
|
|
|
|
public object GetStatus()
|
|
{
|
|
return new
|
|
{
|
|
Enabled = _hosting.IsDebugMode
|
|
};
|
|
}
|
|
}}
|