Shannon
|
19715ef45f
|
Fixes build, updated BackgroundTaskRunner to get an ILogger injected
|
2015-04-09 17:12:52 +10:00 |
|
Shannon
|
a1c7352da1
|
Merge branch 'dev-v7' into 7.3.0
Conflicts:
src/Umbraco.Core/Umbraco.Core.csproj
src/Umbraco.Tests/Integration/GetCultureTests.cs
src/Umbraco.Tests/Models/ContentTests.cs
src/Umbraco.Tests/Models/ContentTypeTests.cs
src/Umbraco.Tests/Persistence/Repositories/ContentTypeRepositoryTest.cs
src/Umbraco.Tests/Routing/DomainsAndCulturesTests.cs
src/Umbraco.Tests/Scheduling/BackgroundTaskRunnerTests.cs
src/Umbraco.Tests/Services/ContentTypeServiceTests.cs
src/Umbraco.Web/Models/ContentExtensions.cs
src/Umbraco.Web/Mvc/SurfaceController.cs
|
2015-04-09 16:50:07 +10:00 |
|
Shannon
|
c525be3e44
|
Completes: U4-6474 Update to latest examine v0.1.62
|
2015-04-09 15:33:58 +10:00 |
|
Shannon
|
cc804bd3bd
|
removes duplicate test
|
2015-04-08 17:57:00 +10:00 |
|
Shannon
|
24dc8309f1
|
sets ConfigureAwait(false) for XmlCacheFilePersister await calls and BackgroundTaskRunner await calls since these are always on background threads, no synchronizing with any context.
|
2015-04-08 17:15:21 +10:00 |
|
Shannon
|
147cc92ac5
|
Updates BackgroundTaskRunner & tests: removes the need for most Thread.Sleep which is error prone, this is done by updating the GetAwaiter() method to be a custom awaiter so we can await the entire background task running operations. We then add a property called CurrentThraedingTask which then allows awaiting the current Task instance. Adds error handling to all event handlers for the task runner. Changes events to be TypedEventHandlers
|
2015-04-08 16:28:42 +10:00 |
|
Shannon
|
d5e735ac14
|
Fixes singleton accessors and adds ctor which would allow unit testability.
|
2015-04-07 12:07:54 +10:00 |
|
Shannon Deminick
|
8d841d3537
|
Merge pull request #667 from AndyButland/u4-1733
U4-1733 - Added overloads to RedirectToUmbracoPage methods to allow passing of a querystring
|
2015-04-07 11:05:05 +10:00 |
|
Sebastiaan Janssen
|
5f175874b2
|
Fixes tests and adds a few
|
2015-04-02 17:52:59 +02:00 |
|
Sebastiaan Janssen
|
fa053426c3
|
Don't disableFindContentByIdPath when in preview mode
|
2015-04-02 17:16:56 +02:00 |
|
Shannon
|
a321d4d1b8
|
Allows the ability to use external logins to login to authorize upgrades, this means being able to add reserved paths at startup dynamically which is now built in as part of the AuthenticationOptionsExtensions for registering external logins for the back office.
|
2015-04-02 14:46:53 +11:00 |
|
AndyButland
|
437e7f0ffc
|
Removed unused usings from previous commit
|
2015-04-01 23:29:43 +02:00 |
|
AndyButland
|
afa6c35bb5
|
Added overloads to RedirectToUmbracoPage methods to allow passing of a querystring
|
2015-04-01 23:27:20 +02:00 |
|
Stephan
|
22ac571c7d
|
U4-6479 - fix GetCulture for unpublished content + add tests
|
2015-04-01 15:40:34 +02:00 |
|
Stephan
|
cd26a1ad21
|
U4-6479 - fix GetCulture for unpublished content + add tests
|
2015-04-01 12:59:01 +02:00 |
|
Shannon
|
437ab4aaf1
|
Fixes installer permission steps - this cannot just arbitrarily write to the umbraco xml cache file
|
2015-04-01 17:44:27 +11:00 |
|
Shannon
|
2a6d5846d1
|
Fixes installer permission steps - this cannot just arbitrarily write to the umbraco xml cache file
|
2015-04-01 16:57:32 +11:00 |
|
Shannon
|
a43847bc8b
|
Adds IsUpgrading method to ApplicationContext and fixes AppBuilderExtensions checks since we need a user manager when upgrading
|
2015-04-01 16:12:32 +11:00 |
|
Shannon
|
df6bb36876
|
moves notification logic to umbnotifications.directive instead of in main (not sure why it was there). Updates the AuthorizeUpgrade screen to be able to show YSOD or alert messages when there are server errors. Adds htmlhelper extensions to share between Default.cshtml and AuthorizeUpgrade.cshtml. Adds null check for BackOfficeUserManager.
|
2015-04-01 16:04:19 +11:00 |
|
Shannon
|
d185f93c35
|
Fixes unit tests
|
2015-04-01 14:29:35 +11:00 |
|
Shannon
|
5e90e74969
|
Merge branch '7.3.0' of https://github.com/umbraco/Umbraco-CMS into 7.3.0
Conflicts:
src/Umbraco.Core/Persistence/Migrations/Initial/DatabaseSchemaCreation.cs
|
2015-04-01 14:03:05 +11:00 |
|
Shannon
|
924ee5c413
|
fixes merge
|
2015-04-01 14:02:14 +11:00 |
|
Shannon
|
bceed10bd8
|
Merge branch 'dev-v7-distcache' into 7.3.0
|
2015-04-01 14:00:13 +11:00 |
|
Shannon
|
f019900619
|
oops, not sure how the LICENSE got deleted, removed AD identity nuspec since that is in a diff repo now. Removes commented out code in umb module for auth - this is done by cookie middleware now.
|
2015-04-01 13:55:33 +11:00 |
|
Shannon
|
1de9dbf18c
|
Updates build process to include building a nuget Identity package to provide extensibility points in Umbraco.
|
2015-04-01 13:42:36 +11:00 |
|
Shannon
|
394cab5ab4
|
Updates the owin startup classes - we now have a default one shipped as a DLL which will always execute based on the appSettings, then we can ship with 2 optional ones that people can learn and use from which just requires them to update the appSetting. Now to decide on how to ship these .cs files
|
2015-04-01 13:42:34 +11:00 |
|
Shannon
|
6efd14eff3
|
Updates the startup auth code extension methods to better support extensibility so people could override the default user store or manager in order to implement some interfaces that we currently don't.
|
2015-04-01 13:42:31 +11:00 |
|
Shannon
|
e468492064
|
Updates back office ext methods to include the CallbackPath which is key to make multi-tenanted work and ensures that the back office providers are linked with the umbraco back office external cookie provider. Adds some docs about it too. Updates the web.config templates to ensure the correct assembly redirects.
|
2015-04-01 13:42:29 +11:00 |
|
Shannon
|
140d3c0268
|
Update to latest Identity. Moves startup code to App_Start like VS templates have, this will be better for our nuget packages (like i do in UmbracoIdentity which works for both web apps and websites). Updates web.config to explicitly declare the owin startup otherwise we'll end up with conflicts (YSODs) and now people can configure it properly.
|
2015-04-01 13:42:26 +11:00 |
|
Shannon
|
349cb91e3a
|
updates expires logic
|
2015-04-01 13:42:24 +11:00 |
|
Shannon
|
abf70cd302
|
filters external login providers in the back office to only show the ones configured for umbraco back office
|
2015-04-01 13:42:21 +11:00 |
|
Shannon
|
880c9cf679
|
Updates back office extensions to use AuthenticationDescriptionOptionsExtension to configure the options for umb back office
|
2015-04-01 13:42:19 +11:00 |
|
Shannon
|
bf59510c68
|
Removes setting the default sign in auth type - this is a user setting, we cannot modify that.
|
2015-04-01 13:42:16 +11:00 |
|
Shannon
|
86833aa8bf
|
Updates the back office external cookie name to be consistently cased with the other back office cookie names
|
2015-04-01 13:42:11 +11:00 |
|
Shannon
|
4dcc4807ed
|
Implements IUserSecurityStore and ensures there is a security stamp token in place, have updated the repository layer to manual update this if ASPNet Identity APIs are not used to update users.
|
2015-04-01 13:42:09 +11:00 |
|
Shannon
|
90b562a0a1
|
Update the PostLogin method to write the auth ticket the way that webapi is supposed to, not sure how this was actually working before because writing cookies directly with HttpContext and then also using WebApi normally doesn't work (maybe in very specific circumstances), so now the cookie writing is done consistently and it is working, prior to this i was getting lots of issues with the xsrf tokens. Updated some user model mappings for convenience and update naming conventions for some properties of the BackOfficeIdentityUser for consistency.
|
2015-04-01 13:42:07 +11:00 |
|
Shannon
|
5a88ff774c
|
adds overload to specify custom backoffice user store for custom implementations (i.e. 2 factor auth, etc...)
|
2015-04-01 13:41:57 +11:00 |
|
Shannon
|
b269760b21
|
removes the BackOfficeRoleManager since we don't use roles in the back office (sections i suppose) and we can't dynamically just create them, that doesn't make sense.
|
2015-04-01 13:41:55 +11:00 |
|
Shannon
|
2d72a66879
|
Updates OwinStartup and split the methods into an extension methods file complete with documentation on how to implement the providers. Tested the microsoft provider. Now to clean things up: remove the 3rd party package installs to be ready for shipping, ensure that the user parts are extensible enough for people to plugin their own interfaces.
|
2015-04-01 13:41:50 +11:00 |
|
Shannon
|
7dc50fda26
|
moves NaiveSessionCache to web proj
|
2015-04-01 13:41:48 +11:00 |
|
Shannon
|
ff602da0fa
|
Updates owin packages and updates the web.config tempate for owin redirects
|
2015-04-01 13:41:45 +11:00 |
|
Shannon
|
4b156ba27e
|
Starts stubbing out role manager code
|
2015-04-01 13:41:43 +11:00 |
|
Shannon
|
d9cf9cee88
|
Includes nice social buttons, updates styling on login and user panel, updates logic to un-link accounts
|
2015-04-01 13:41:40 +11:00 |
|
Shannon
|
afa4c7b697
|
open id connect is working with azure ad
|
2015-04-01 13:41:38 +11:00 |
|
Shannon
|
a2a8c8fbd7
|
updated to latest owin
|
2015-04-01 13:41:36 +11:00 |
|
Shannon
|
52c4d80cfc
|
more identity awesome
|
2015-04-01 13:41:33 +11:00 |
|
Shannon
|
5d4d209030
|
Gets external cookies working with a custom auth type (so we don't interfere with the 'default')
|
2015-04-01 13:41:31 +11:00 |
|
Shannon
|
d9f453d860
|
Gets the user store up to date with the correct queries.
|
2015-04-01 13:41:28 +11:00 |
|
Shannon
|
8c51e8bad8
|
Implements IExternalLoginService and the db table, implements more logic to start enabling this to work in the back office, need to implement the rest of the userstore and then implement a way once logged in to the back office to allow users to link their accounts with external logins. Currently if an external login is detected during startup and it has not been linked we'll throw an exception. Very very close to making this all work nicely.
|
2015-04-01 13:41:26 +11:00 |
|
Shannon
|
d4b21243ca
|
Allows external logins to be listed on login page, updates BackOfficeController with actions for invoking them.
|
2015-04-01 13:41:24 +11:00 |
|