133 lines
3.8 KiB
C#
133 lines
3.8 KiB
C#
using System;
|
|
using System.Web;
|
|
using System.Web.Http;
|
|
using Microsoft.Owin;
|
|
using Umbraco.Core;
|
|
using Umbraco.Core.Logging;
|
|
using Umbraco.Core.Services;
|
|
using Umbraco.Web.Security;
|
|
|
|
namespace Umbraco.Web.WebApi
|
|
{
|
|
/// <summary>
|
|
/// The base class for API controllers that expose Umbraco services - THESE ARE NOT AUTO ROUTED
|
|
/// </summary>
|
|
public abstract class UmbracoApiControllerBase : ApiController
|
|
{
|
|
protected UmbracoApiControllerBase()
|
|
: this(UmbracoContext.Current)
|
|
{
|
|
|
|
}
|
|
|
|
protected UmbracoApiControllerBase(UmbracoContext umbracoContext)
|
|
{
|
|
if (umbracoContext == null) throw new ArgumentNullException("umbracoContext");
|
|
UmbracoContext = umbracoContext;
|
|
InstanceId = Guid.NewGuid();
|
|
}
|
|
|
|
protected UmbracoApiControllerBase(UmbracoContext umbracoContext, UmbracoHelper umbracoHelper)
|
|
{
|
|
if (umbracoContext == null) throw new ArgumentNullException("umbracoContext");
|
|
if (umbracoHelper == null) throw new ArgumentNullException("umbracoHelper");
|
|
UmbracoContext = umbracoContext;
|
|
InstanceId = Guid.NewGuid();
|
|
_umbraco = umbracoHelper;
|
|
}
|
|
|
|
private UmbracoHelper _umbraco;
|
|
|
|
/// <summary>
|
|
/// Tries to retrieve the current HttpContext if one exists.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected Attempt<HttpContextBase> TryGetHttpContext()
|
|
{
|
|
return Request.TryGetHttpContext();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tries to retrieve the current HttpContext if one exists.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected Attempt<IOwinContext> TryGetOwinContext()
|
|
{
|
|
return Request.TryGetOwinContext();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns an ILogger
|
|
/// </summary>
|
|
public ILogger Logger
|
|
{
|
|
get { return ProfilingLogger.Logger; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a ProfilingLogger
|
|
/// </summary>
|
|
public virtual ProfilingLogger ProfilingLogger
|
|
{
|
|
get { return UmbracoContext.Application.ProfilingLogger; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the current ApplicationContext
|
|
/// </summary>
|
|
public virtual ApplicationContext ApplicationContext
|
|
{
|
|
get { return UmbracoContext.Application; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a ServiceContext
|
|
/// </summary>
|
|
public ServiceContext Services
|
|
{
|
|
get { return ApplicationContext.Services; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a DatabaseContext
|
|
/// </summary>
|
|
public DatabaseContext DatabaseContext
|
|
{
|
|
get { return ApplicationContext.DatabaseContext; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns an UmbracoHelper object
|
|
/// </summary>
|
|
public virtual UmbracoHelper Umbraco
|
|
{
|
|
get { return _umbraco ?? (_umbraco = new UmbracoHelper(UmbracoContext)); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the current UmbracoContext
|
|
/// </summary>
|
|
public virtual UmbracoContext UmbracoContext { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Returns the WebSecurity instance
|
|
/// </summary>
|
|
public WebSecurity Security
|
|
{
|
|
get { return UmbracoContext.Security; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the MemberHelper instance
|
|
/// </summary>
|
|
public MembershipHelper Members
|
|
{
|
|
get { return Umbraco.MembershipHelper; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Useful for debugging
|
|
/// </summary>
|
|
internal Guid InstanceId { get; private set; }
|
|
}
|
|
} |