diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-01 21:26:10 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-01 21:26:10 -0800 |
commit | 74b6b4efd2be2680e3067f716829b0c9385ceebe (patch) | |
tree | 5f241db63080c6547d9cc635b0bf36dd587b5354 /samples/OAuth2ProtectedWebApi/App_Start | |
parent | 798fa1c5f55058eb241f257d15e2dd630eb3d4fd (diff) | |
download | DotNetOpenAuth-74b6b4efd2be2680e3067f716829b0c9385ceebe.zip DotNetOpenAuth-74b6b4efd2be2680e3067f716829b0c9385ceebe.tar.gz DotNetOpenAuth-74b6b4efd2be2680e3067f716829b0c9385ceebe.tar.bz2 |
Adds a WebAPI sample that is its own authorization server and resource server.
Diffstat (limited to 'samples/OAuth2ProtectedWebApi/App_Start')
4 files changed, 90 insertions, 0 deletions
diff --git a/samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs b/samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs new file mode 100644 index 0000000..6524cf6 --- /dev/null +++ b/samples/OAuth2ProtectedWebApi/App_Start/BundleConfig.cs @@ -0,0 +1,40 @@ +using System.Web; +using System.Web.Optimization; + +namespace OAuth2ProtectedWebApi { + public class BundleConfig { + // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725 + public static void RegisterBundles(BundleCollection bundles) { + bundles.Add(new ScriptBundle("~/bundles/jquery").Include( + "~/Scripts/jquery-{version}.js")); + + bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include( + "~/Scripts/jquery-ui-{version}.js")); + + bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( + "~/Scripts/jquery.unobtrusive*", + "~/Scripts/jquery.validate*")); + + // Use the development version of Modernizr to develop with and learn from. Then, when you're + // ready for production, use the build tool at http://modernizr.com to pick only the tests you need. + bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( + "~/Scripts/modernizr-*")); + + bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css")); + + bundles.Add(new StyleBundle("~/Content/themes/base/css").Include( + "~/Content/themes/base/jquery.ui.core.css", + "~/Content/themes/base/jquery.ui.resizable.css", + "~/Content/themes/base/jquery.ui.selectable.css", + "~/Content/themes/base/jquery.ui.accordion.css", + "~/Content/themes/base/jquery.ui.autocomplete.css", + "~/Content/themes/base/jquery.ui.button.css", + "~/Content/themes/base/jquery.ui.dialog.css", + "~/Content/themes/base/jquery.ui.slider.css", + "~/Content/themes/base/jquery.ui.tabs.css", + "~/Content/themes/base/jquery.ui.datepicker.css", + "~/Content/themes/base/jquery.ui.progressbar.css", + "~/Content/themes/base/jquery.ui.theme.css")); + } + } +}
\ No newline at end of file diff --git a/samples/OAuth2ProtectedWebApi/App_Start/FilterConfig.cs b/samples/OAuth2ProtectedWebApi/App_Start/FilterConfig.cs new file mode 100644 index 0000000..a482091 --- /dev/null +++ b/samples/OAuth2ProtectedWebApi/App_Start/FilterConfig.cs @@ -0,0 +1,10 @@ +using System.Web; +using System.Web.Mvc; + +namespace OAuth2ProtectedWebApi { + public class FilterConfig { + public static void RegisterGlobalFilters(GlobalFilterCollection filters) { + filters.Add(new HandleErrorAttribute()); + } + } +}
\ No newline at end of file diff --git a/samples/OAuth2ProtectedWebApi/App_Start/RouteConfig.cs b/samples/OAuth2ProtectedWebApi/App_Start/RouteConfig.cs new file mode 100644 index 0000000..d64e426 --- /dev/null +++ b/samples/OAuth2ProtectedWebApi/App_Start/RouteConfig.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; +using System.Web.Routing; + +namespace OAuth2ProtectedWebApi { + public class RouteConfig { + public static void RegisterRoutes(RouteCollection routes) { + routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); + + routes.MapRoute( + name: "Default", + url: "{controller}/{action}/{id}", + defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } + ); + } + } +}
\ No newline at end of file diff --git a/samples/OAuth2ProtectedWebApi/App_Start/WebApiConfig.cs b/samples/OAuth2ProtectedWebApi/App_Start/WebApiConfig.cs new file mode 100644 index 0000000..d783d13 --- /dev/null +++ b/samples/OAuth2ProtectedWebApi/App_Start/WebApiConfig.cs @@ -0,0 +1,20 @@ +namespace OAuth2ProtectedWebApi { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Web.Http; + + using OAuth2ProtectedWebApi.Code; + + public static class WebApiConfig { + public static void Register(HttpConfiguration config) { + config.Routes.MapHttpRoute( + name: "DefaultApi", + routeTemplate: "api/{controller}/{id}", + defaults: new { id = RouteParameter.Optional } + ); + + config.MessageHandlers.Add(new BearerTokenHandler()); + } + } +} |