├── .gitattributes ├── .gitignore ├── Harisoft.IDP ├── Config.cs ├── Controllers │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── AccountService.cs │ │ ├── AdditionalAuthenticationFactorViewModel.cs │ │ ├── ExternalProvider.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ └── LogoutViewModel.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentService.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Grants │ │ ├── GrantsController.cs │ │ └── GrantsViewModel.cs │ ├── Home │ │ ├── ErrorViewModel.cs │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ ├── TestUsers.cs │ └── UserRegistration │ │ ├── RegisterUserViewModel.cs │ │ ├── RegistrationInputModel.cs │ │ └── UserRegistrationController.cs ├── Entities │ ├── ConfigurationDbContextExtensions.cs │ ├── MarvinUserContext.cs │ ├── MarvinUserContextExtensions.cs │ ├── User.cs │ ├── UserClaim.cs │ └── UserLogin.cs ├── Harisoft.IDP.csproj ├── IdentityBuilderExtensions.cs ├── Migrations │ ├── 20171031214349_InitialMarvinUserDBMigration.Designer.cs │ ├── 20171031214349_InitialMarvinUserDBMigration.cs │ ├── ConfigurationDb │ │ ├── 20171106190831_InitialIdentityServerConfigurationDBMigration.Designer.cs │ │ ├── 20171106190831_InitialIdentityServerConfigurationDBMigration.cs │ │ └── ConfigurationDbContextModelSnapshot.cs │ ├── MarvinUserContextModelSnapshot.cs │ └── PersistedGrantDb │ │ ├── 20171106204526_InitialIdentityServerOperationalDBMigration.Designer.cs │ │ ├── 20171106204526_InitialIdentityServerOperationalDBMigration.cs │ │ └── PersistedGrantDbContextModelSnapshot.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── CustomUserProfileService.cs │ ├── IMarvinUserRepository.cs │ ├── MarvinUserProfileService.cs │ └── MarvinUserRepository.cs ├── Startup.cs ├── Views │ ├── Account │ │ ├── AdditionalAuthenticationFactor.cshtml │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ └── Logout.cshtml │ ├── Consent │ │ ├── Index.cshtml │ │ └── _ScopeListItem.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationSummary.cshtml │ ├── UserRegistration │ │ └── RegisterUser.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── tempkey.rsa └── wwwroot │ ├── css │ ├── site.css │ ├── site.less │ └── site.min.css │ ├── favicon.ico │ ├── icon.jpg │ ├── icon.png │ ├── js │ └── signout-redirect.js │ └── lib │ ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── jquery │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── ImageGallery.API ├── Authorization │ ├── MustOwnImageHandler.cs │ └── MustOwnImageRequirement.cs ├── Controllers │ └── ImagesController.cs ├── Entities │ ├── GalleryContext.cs │ ├── GalleryContextExtensions.cs │ └── Image.cs ├── Helpers │ └── UnprocessableEntityResult.cs ├── ImageGallery.API.csproj ├── Migrations │ ├── GalleryContextModelSnapshot.cs │ ├── InitialMigration.Designer.cs │ └── InitialMigration.cs ├── Program.cs ├── Project_Readme.html ├── Properties │ └── launchSettings.json ├── Services │ ├── GalleryRepository.cs │ └── IGalleryRepository.cs ├── Startup.cs ├── appsettings.json ├── web.config └── wwwroot │ └── Images │ ├── 3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg │ ├── 43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg │ ├── 46194927-ccda-432f-bc95-4820318c08c7.jpg │ ├── 4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg │ ├── 5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg │ ├── 6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg │ ├── 7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg │ ├── 8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg │ ├── 94878996-e040-44ef-a668-0bf17d966062.jpg │ ├── b2894002-0b7c-4f05-896a-856283012c87.jpg │ ├── c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg │ ├── cc412f08-2a7b-4225-b659-07fdb168302d.jpg │ ├── cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg │ ├── dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg │ ├── e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg │ └── fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg ├── ImageGallery.Client ├── .bowerrc ├── Controllers │ ├── AuthorizationController.cs │ └── GalleryController.cs ├── ImageGallery.Client.csproj ├── Program.cs ├── Project_Readme.html ├── Properties │ └── launchSettings.json ├── Services │ ├── IImageGalleryHttpClient.cs │ └── ImageGalleryHttpClient.cs ├── Startup.cs ├── ViewModels │ ├── AddImageViewModel.cs │ ├── EditImageViewModel.cs │ ├── GalleryIndexViewModel.cs │ └── OrderFrameViewModel.cs ├── Views │ ├── Authorization │ │ └── AccessDenied.cshtml │ ├── Gallery │ │ ├── AddImage.cshtml │ │ ├── EditImage.cshtml │ │ ├── Index.cshtml │ │ ├── OrderFrame.cshtml │ │ └── OrderFrame.cshtml.cs │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── bower.json ├── bundleconfig.json ├── web.config └── wwwroot │ ├── _references.js │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── ImageGallery.Model ├── Image.cs ├── ImageForCreation.cs ├── ImageForUpdate.cs ├── ImageGallery.Model.csproj └── Properties │ └── AssemblyInfo.cs ├── OAuth2.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Harisoft.IDP/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Config.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/AccountController.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/AccountOptions.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/AccountService.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/AdditionalAuthenticationFactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/AdditionalAuthenticationFactorViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Consent/ConsentController.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Consent/ConsentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Consent/ConsentService.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Grants/GrantsController.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/Home/HomeController.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/TestUsers.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/UserRegistration/RegisterUserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/UserRegistration/RegisterUserViewModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/UserRegistration/RegistrationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/UserRegistration/RegistrationInputModel.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Controllers/UserRegistration/UserRegistrationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Controllers/UserRegistration/UserRegistrationController.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Entities/ConfigurationDbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Entities/ConfigurationDbContextExtensions.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Entities/MarvinUserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Entities/MarvinUserContext.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Entities/MarvinUserContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Entities/MarvinUserContextExtensions.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Entities/User.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Entities/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Entities/UserClaim.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Entities/UserLogin.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Harisoft.IDP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Harisoft.IDP.csproj -------------------------------------------------------------------------------- /Harisoft.IDP/IdentityBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/IdentityBuilderExtensions.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/20171031214349_InitialMarvinUserDBMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/20171031214349_InitialMarvinUserDBMigration.Designer.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/20171031214349_InitialMarvinUserDBMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/20171031214349_InitialMarvinUserDBMigration.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/ConfigurationDb/20171106190831_InitialIdentityServerConfigurationDBMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/ConfigurationDb/20171106190831_InitialIdentityServerConfigurationDBMigration.Designer.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/ConfigurationDb/20171106190831_InitialIdentityServerConfigurationDBMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/ConfigurationDb/20171106190831_InitialIdentityServerConfigurationDBMigration.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/MarvinUserContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/MarvinUserContextModelSnapshot.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/PersistedGrantDb/20171106204526_InitialIdentityServerOperationalDBMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/PersistedGrantDb/20171106204526_InitialIdentityServerOperationalDBMigration.Designer.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/PersistedGrantDb/20171106204526_InitialIdentityServerOperationalDBMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/PersistedGrantDb/20171106204526_InitialIdentityServerOperationalDBMigration.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Migrations/PersistedGrantDb/PersistedGrantDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Migrations/PersistedGrantDb/PersistedGrantDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Program.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Properties/launchSettings.json -------------------------------------------------------------------------------- /Harisoft.IDP/Services/CustomUserProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Services/CustomUserProfileService.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Services/IMarvinUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Services/IMarvinUserRepository.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Services/MarvinUserProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Services/MarvinUserProfileService.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Services/MarvinUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Services/MarvinUserRepository.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Startup.cs -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Account/AdditionalAuthenticationFactor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Account/AdditionalAuthenticationFactor.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/UserRegistration/RegisterUser.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/UserRegistration/RegisterUser.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Harisoft.IDP/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/appsettings.json -------------------------------------------------------------------------------- /Harisoft.IDP/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/tempkey.rsa -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/css/site.css -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/css/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/css/site.less -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/icon.jpg -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/icon.png -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /Harisoft.IDP/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/Harisoft.IDP/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /ImageGallery.API/Authorization/MustOwnImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Authorization/MustOwnImageHandler.cs -------------------------------------------------------------------------------- /ImageGallery.API/Authorization/MustOwnImageRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Authorization/MustOwnImageRequirement.cs -------------------------------------------------------------------------------- /ImageGallery.API/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /ImageGallery.API/Entities/GalleryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Entities/GalleryContext.cs -------------------------------------------------------------------------------- /ImageGallery.API/Entities/GalleryContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Entities/GalleryContextExtensions.cs -------------------------------------------------------------------------------- /ImageGallery.API/Entities/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Entities/Image.cs -------------------------------------------------------------------------------- /ImageGallery.API/Helpers/UnprocessableEntityResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Helpers/UnprocessableEntityResult.cs -------------------------------------------------------------------------------- /ImageGallery.API/ImageGallery.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/ImageGallery.API.csproj -------------------------------------------------------------------------------- /ImageGallery.API/Migrations/GalleryContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Migrations/GalleryContextModelSnapshot.cs -------------------------------------------------------------------------------- /ImageGallery.API/Migrations/InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Migrations/InitialMigration.Designer.cs -------------------------------------------------------------------------------- /ImageGallery.API/Migrations/InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Migrations/InitialMigration.cs -------------------------------------------------------------------------------- /ImageGallery.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Program.cs -------------------------------------------------------------------------------- /ImageGallery.API/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Project_Readme.html -------------------------------------------------------------------------------- /ImageGallery.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /ImageGallery.API/Services/GalleryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Services/GalleryRepository.cs -------------------------------------------------------------------------------- /ImageGallery.API/Services/IGalleryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Services/IGalleryRepository.cs -------------------------------------------------------------------------------- /ImageGallery.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/Startup.cs -------------------------------------------------------------------------------- /ImageGallery.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/appsettings.json -------------------------------------------------------------------------------- /ImageGallery.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/web.config -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/46194927-ccda-432f-bc95-4820318c08c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/46194927-ccda-432f-bc95-4820318c08c7.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/94878996-e040-44ef-a668-0bf17d966062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/94878996-e040-44ef-a668-0bf17d966062.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/b2894002-0b7c-4f05-896a-856283012c87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/b2894002-0b7c-4f05-896a-856283012c87.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/cc412f08-2a7b-4225-b659-07fdb168302d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/cc412f08-2a7b-4225-b659-07fdb168302d.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg -------------------------------------------------------------------------------- /ImageGallery.API/wwwroot/Images/fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.API/wwwroot/Images/fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg -------------------------------------------------------------------------------- /ImageGallery.Client/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ImageGallery.Client/Controllers/AuthorizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Controllers/AuthorizationController.cs -------------------------------------------------------------------------------- /ImageGallery.Client/Controllers/GalleryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Controllers/GalleryController.cs -------------------------------------------------------------------------------- /ImageGallery.Client/ImageGallery.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/ImageGallery.Client.csproj -------------------------------------------------------------------------------- /ImageGallery.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Program.cs -------------------------------------------------------------------------------- /ImageGallery.Client/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Project_Readme.html -------------------------------------------------------------------------------- /ImageGallery.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /ImageGallery.Client/Services/IImageGalleryHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Services/IImageGalleryHttpClient.cs -------------------------------------------------------------------------------- /ImageGallery.Client/Services/ImageGalleryHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Services/ImageGalleryHttpClient.cs -------------------------------------------------------------------------------- /ImageGallery.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Startup.cs -------------------------------------------------------------------------------- /ImageGallery.Client/ViewModels/AddImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/ViewModels/AddImageViewModel.cs -------------------------------------------------------------------------------- /ImageGallery.Client/ViewModels/EditImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/ViewModels/EditImageViewModel.cs -------------------------------------------------------------------------------- /ImageGallery.Client/ViewModels/GalleryIndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/ViewModels/GalleryIndexViewModel.cs -------------------------------------------------------------------------------- /ImageGallery.Client/ViewModels/OrderFrameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/ViewModels/OrderFrameViewModel.cs -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Authorization/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Authorization/AccessDenied.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Gallery/AddImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Gallery/AddImage.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Gallery/EditImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Gallery/EditImage.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Gallery/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Gallery/Index.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Gallery/OrderFrame.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Gallery/OrderFrame.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Gallery/OrderFrame.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Gallery/OrderFrame.cshtml.cs -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ImageGallery.Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/appsettings.json -------------------------------------------------------------------------------- /ImageGallery.Client/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/bower.json -------------------------------------------------------------------------------- /ImageGallery.Client/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/bundleconfig.json -------------------------------------------------------------------------------- /ImageGallery.Client/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/web.config -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/_references.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /ImageGallery.Model/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Model/Image.cs -------------------------------------------------------------------------------- /ImageGallery.Model/ImageForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Model/ImageForCreation.cs -------------------------------------------------------------------------------- /ImageGallery.Model/ImageForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Model/ImageForUpdate.cs -------------------------------------------------------------------------------- /ImageGallery.Model/ImageGallery.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Model/ImageGallery.Model.csproj -------------------------------------------------------------------------------- /ImageGallery.Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/ImageGallery.Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OAuth2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/OAuth2.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrn71/IdentityServer4Demo/HEAD/README.md --------------------------------------------------------------------------------