├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── Aiursoft.Infrastructures.sln ├── BLACK_LIST ├── LICENSE ├── RELEASE.md ├── Readme.md ├── clean.sh ├── doc ├── Aiursoft Infrastructures │ └── API regulations.md ├── App Authentication │ └── What is app authentication.md ├── Integrated Website │ ├── Getting Started.md │ └── Image Mode.md ├── Object Storage │ └── What is OSS.md ├── Pylon │ └── What is Pylon.md ├── Readme.md ├── Stargate │ └── What is Stargate.md ├── User Authentication │ └── Aiursoft authentication.md ├── Welcome │ ├── About Aiursoft.md │ ├── Aiursoft Intern Project.md │ ├── Home.md │ └── How to contribute.md ├── overview.png └── structure.json ├── install.sh ├── ninja.yaml ├── nuget.config ├── seed.sql ├── src ├── Infrastructure │ ├── Directory.SDK │ │ ├── Aiursoft.Directory.SDK.csproj │ │ ├── Attributes │ │ │ └── IsAccessToken.cs │ │ ├── Configuration │ │ │ └── DirectoryConfiguration.cs │ │ ├── Extends.cs │ │ ├── Models │ │ │ ├── API │ │ │ │ ├── AccountAddressModels │ │ │ │ │ ├── AppRegisterAddressModel.cs │ │ │ │ │ ├── CodeToOpenIdAddressModel.cs │ │ │ │ │ ├── PasswordAuthAddressModel.cs │ │ │ │ │ └── UserInfoAddressModel.cs │ │ │ │ ├── AccountViewModels │ │ │ │ │ ├── CodeToOpenIdViewModel.cs │ │ │ │ │ └── UserInfoViewModel.cs │ │ │ │ ├── AiurThirdPartyAccount.cs │ │ │ │ ├── AiurUserEmail.cs │ │ │ │ ├── AppsAddressModels │ │ │ │ │ ├── AccessTokenAddressModel.cs │ │ │ │ │ ├── AccessTokenViewModel.cs │ │ │ │ │ ├── AllUserGrantedAddressModel.cs │ │ │ │ │ ├── AppInfoAddressModel.cs │ │ │ │ │ └── IsValidateAppAddressModel.cs │ │ │ │ ├── AppsViewModels │ │ │ │ │ └── AppInfoViewModel.cs │ │ │ │ ├── AuditLog.cs │ │ │ │ ├── Grant.cs │ │ │ │ ├── HomeViewModels │ │ │ │ │ └── DirectoryServerConfiguration.cs │ │ │ │ ├── OAuthAddressModels │ │ │ │ │ ├── AuthorizeAddressModel.cs │ │ │ │ │ └── UserSignoutAddressModel.cs │ │ │ │ ├── UserAddressModels │ │ │ │ │ ├── BindNewEmailAddressModel.cs │ │ │ │ │ ├── ChangePasswordViewModel.cs │ │ │ │ │ ├── ChangeProfileAddressModel.cs │ │ │ │ │ ├── DeleteEmailAddressModel.cs │ │ │ │ │ ├── DropGrantedAppsAddressModel.cs │ │ │ │ │ ├── SendConfirmationEmailAddressModel.cs │ │ │ │ │ ├── SetPhoneNumberAddressModel.cs │ │ │ │ │ ├── SetPrimaryEmailAddressModel.cs │ │ │ │ │ ├── TwoFAVerifyCodeAddressModel.cs │ │ │ │ │ ├── UnBindSocialAccountAddressModel.cs │ │ │ │ │ ├── UserOperationAddressModel.cs │ │ │ │ │ ├── ViewAllEmailsAddressModel.cs │ │ │ │ │ ├── ViewAuditLogAddressModel.cs │ │ │ │ │ └── ViewPhoneNumberAddressModel.cs │ │ │ │ └── UserViewModels │ │ │ │ │ ├── GetRecoveryCodesViewModel.cs │ │ │ │ │ └── View2FAKeyViewModel.cs │ │ │ ├── AiurUserBase.cs │ │ │ ├── AppToken.cs │ │ │ ├── DirectoryApp.cs │ │ │ ├── FinishAuthInfo.cs │ │ │ └── ForApps │ │ │ │ └── AddressModels │ │ │ │ └── AuthResultAddressModel.cs │ │ └── Services │ │ │ ├── AiursoftAppTokenValidator.cs │ │ │ ├── AppTokenRSAService.cs │ │ │ ├── DirectoryAppTokenService.cs │ │ │ ├── ServerPublicKeyAccess.cs │ │ │ ├── ToDirectoryServer │ │ │ ├── AccountService.cs │ │ │ ├── AppsService.cs │ │ │ └── UserService.cs │ │ │ └── UrlConverter.cs │ ├── Observer.SDK │ │ ├── Aiursoft.Observer.SDK.csproj │ │ ├── Configuration │ │ │ └── ObserverConfiguration.cs │ │ ├── Extends.cs │ │ ├── Models │ │ │ ├── ErrorLog.cs │ │ │ ├── EventAddressModels │ │ │ │ ├── DeleteAppAddressModel.cs │ │ │ │ ├── LogAddressModel.cs │ │ │ │ └── ViewAddressModel.cs │ │ │ ├── EventLevel.cs │ │ │ └── EventViewModels │ │ │ │ ├── LogCollection.cs │ │ │ │ └── ViewLogViewModel.cs │ │ └── Services │ │ │ └── ToObserverServer │ │ │ └── ObserverService.cs │ ├── Probe.SDK │ │ ├── Aiursoft.Probe.SDK.csproj │ │ ├── Configuration │ │ │ └── ProbeConfiguration.cs │ │ ├── Extends.cs │ │ ├── Models │ │ │ ├── DownloadAddressModels │ │ │ │ └── OpenAddressModel.cs │ │ │ ├── File.cs │ │ │ ├── FilesAddressModels │ │ │ │ ├── CopyFileAddressModel.cs │ │ │ │ ├── DeleteFileAddressModel.cs │ │ │ │ ├── RenameFileAddressModel.cs │ │ │ │ └── UploadFileAddressModel.cs │ │ │ ├── FilesViewModels │ │ │ │ └── UploadFileViewModel.cs │ │ │ ├── Folder.cs │ │ │ ├── FoldersAddressModels │ │ │ │ ├── CreateNewFolderAddressModel.cs │ │ │ │ ├── DeleteFolderAddressModel.cs │ │ │ │ ├── MoveFolderAddressModel.cs │ │ │ │ └── ViewContentAddressModel.cs │ │ │ ├── HomeViewModels │ │ │ │ └── ProbeDownloadPatternConfig.cs │ │ │ ├── ProbeApp.cs │ │ │ ├── Site.cs │ │ │ ├── SitesAddressModels │ │ │ │ ├── CreateNewSiteAddressModel.cs │ │ │ │ ├── DeleteAppAddressModel.cs │ │ │ │ ├── DeleteSiteAddressModel.cs │ │ │ │ ├── UpdateSiteInfoAddressModel.cs │ │ │ │ ├── ViewMySitesAddressModel.cs │ │ │ │ ├── ViewSiteDetailAddressModel.cs │ │ │ │ └── ViewSiteDetailViewModel.cs │ │ │ ├── SitesViewModels │ │ │ │ └── ViewMySitesViewModel.cs │ │ │ └── TokenAddressModels │ │ │ │ └── GetTokenAddressModel.cs │ │ └── Services │ │ │ ├── ProbeSettingsFetcher.cs │ │ │ ├── SaveFileOptions.cs │ │ │ └── ToProbeServer │ │ │ ├── FilesService.cs │ │ │ ├── FoldersService.cs │ │ │ ├── SitesService.cs │ │ │ └── TokenService.cs │ ├── Stargate.SDK │ │ ├── Aiursoft.Stargate.SDK.csproj │ │ ├── Configuration │ │ │ └── StargateConfiguration.cs │ │ ├── Extends.cs │ │ ├── Models │ │ │ ├── Channel.cs │ │ │ ├── ChannelAddressModels │ │ │ │ ├── CreateChannelAddressModel.cs │ │ │ │ ├── DeleteAppAddressModel.cs │ │ │ │ ├── DeleteChannelAddressModel.cs │ │ │ │ └── ViewMyChannelsAddressModel.cs │ │ │ ├── ChannelViewModels │ │ │ │ ├── CreateChannelViewModel.cs │ │ │ │ └── ViewMyChannelsViewModel.cs │ │ │ ├── ListenAddressModels │ │ │ │ └── ChannelAddressModel.cs │ │ │ ├── MessageAddressModels │ │ │ │ └── PushMessageAddressModel.cs │ │ │ └── StargateApp.cs │ │ └── Services │ │ │ └── ToStargateServer │ │ │ ├── ChannelService.cs │ │ │ └── PushMessageService.cs │ └── Warpgate.SDK │ │ ├── Aiursoft.Warpgate.SDK.csproj │ │ ├── Configuration │ │ └── WarpgateConfiguration.cs │ │ ├── Extends.cs │ │ ├── Models │ │ ├── AddressModels │ │ │ ├── CreateNewRecordAddressModel.cs │ │ │ ├── DeleteAppAddressModel.cs │ │ │ ├── DeleteRecordAddressModel.cs │ │ │ ├── UpdateRecordInfoAddressModel.cs │ │ │ ├── ViewMyRecordsAddressModel.cs │ │ │ └── WarpAddressModel.cs │ │ ├── ViewModels │ │ │ ├── ViewMyRecordsViewModel.cs │ │ │ └── WarpgatePatternConfig.cs │ │ ├── WarpRecord.cs │ │ └── WarpgateApp.cs │ │ └── Services │ │ ├── ToWarpgateServer │ │ └── RecordsService.cs │ │ └── WarpgateSettingsFetcher.cs ├── SDK │ ├── Identity │ │ ├── Aiursoft.Identity.csproj │ │ ├── Attributes │ │ │ └── AiurForceAuth.cs │ │ ├── AuthValues.cs │ │ ├── Extends.cs │ │ ├── Services │ │ │ ├── AiurEmailSender.cs │ │ │ ├── AuthService.cs │ │ │ ├── Authentication │ │ │ │ ├── IAuthProvider.cs │ │ │ │ ├── IUserDetail.cs │ │ │ │ ├── ToFaceBookServer │ │ │ │ │ ├── AccessTokenResponse.cs │ │ │ │ │ ├── FaceBookAccessTokenAddressModel.cs │ │ │ │ │ ├── FaceBookAuthAddressModel.cs │ │ │ │ │ ├── FaceBookService.cs │ │ │ │ │ └── FaceBookUserDetail.cs │ │ │ │ ├── ToGitHubServer │ │ │ │ │ ├── AccessTokenResponse.cs │ │ │ │ │ ├── GitHubAccessTokenAddressModel.cs │ │ │ │ │ ├── GitHubAuthAddressModel.cs │ │ │ │ │ ├── GitHubService.cs │ │ │ │ │ └── GitHubUserDetail.cs │ │ │ │ ├── ToGoogleServer │ │ │ │ │ ├── AccessTokenResponse.cs │ │ │ │ │ ├── GoogleAccessTokenAddressModel.cs │ │ │ │ │ ├── GoogleAuthAddressModel.cs │ │ │ │ │ ├── GoogleService.cs │ │ │ │ │ └── GoogleUserDetail.cs │ │ │ │ └── ToMicrosoftServer │ │ │ │ │ ├── AccessTokenResponse.cs │ │ │ │ │ ├── MicrosoftAccessTokenAddressModel.cs │ │ │ │ │ ├── MicrosoftAuthAddressModel.cs │ │ │ │ │ ├── MicrosoftService.cs │ │ │ │ │ └── MicrosoftUserDetail.cs │ │ │ └── UserImageGenerator.cs │ │ ├── Views │ │ │ └── Shared │ │ │ │ └── Components │ │ │ │ ├── AiurLogout │ │ │ │ ├── AiurLogout.cs │ │ │ │ └── Default.cshtml │ │ │ │ └── AiurUploader │ │ │ │ ├── AiurUploader.cs │ │ │ │ ├── AiurUploaderViewModel.cs │ │ │ │ └── Default.cshtml │ │ └── identity.png │ └── SDK │ │ ├── Aiursoft.SDK.csproj │ │ ├── Attributes │ │ ├── AiurNoCache.cs │ │ └── IAiurForceAuth.cs │ │ ├── Handlers.cs │ │ ├── Middlewares │ │ ├── HandleRobotsMiddleware.cs │ │ ├── ObserverExceptionUploader.cs │ │ ├── ProductionExceptionPageMiddleware.cs │ │ ├── SwitchLanguageMiddleware.cs │ │ ├── UserFriendlyBadRequestMiddleware.cs │ │ └── UserFriendlyNotFoundMiddleware.cs │ │ ├── MiddlewaresExtends.cs │ │ ├── Services │ │ ├── HttpService.cs │ │ ├── ProxyService.cs │ │ └── ServiceLocation.cs │ │ ├── ServicesExtends.cs │ │ ├── Values.cs │ │ └── Views │ │ └── Shared │ │ └── Components │ │ ├── AiurDashboardCSS │ │ ├── AiurDashboardCSS.cs │ │ └── Default.cshtml │ │ ├── AiurDashboardJS │ │ ├── AiurDashboardJS.cs │ │ └── Default.cshtml │ │ ├── AiurFooter │ │ ├── AiurFooter.cs │ │ ├── AiurFooterViewModel.cs │ │ └── Default.cshtml │ │ ├── AiurHeader │ │ ├── AiurHeader.cs │ │ └── Default.cshtml │ │ ├── AiurMarketCSS │ │ ├── AiurMarketCSS.cs │ │ └── Default.cshtml │ │ ├── AiurMarketJS │ │ ├── AiurMarketJS.cs │ │ └── Default.cshtml │ │ ├── ChinaRegister │ │ ├── ChinaRegister.cs │ │ ├── ChinaRegisterViewModel.cs │ │ └── Default.cshtml │ │ └── ScrollToTop │ │ ├── Default.cshtml │ │ └── ScrollToTopViewComponent.cs └── WebServices │ ├── Basic │ └── Directory │ │ ├── Aiursoft.Directory.csproj │ │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── AppsController.cs │ │ ├── HomeController.cs │ │ ├── LanguageController.cs │ │ ├── OAuthController.cs │ │ ├── PasswordController.cs │ │ ├── ThirdPartyController.cs │ │ └── UserController.cs │ │ ├── Data │ │ └── DirectoryDbContext.cs │ │ ├── Migrations │ │ ├── 20230527081619_Init.Designer.cs │ │ ├── 20230527081619_Init.cs │ │ ├── 20230612135029_AddDirectoryAppInDb.Designer.cs │ │ ├── 20230612135029_AddDirectoryAppInDb.cs │ │ ├── 20230612152436_RenameATable.Designer.cs │ │ ├── 20230612152436_RenameATable.cs │ │ └── DirectoryDbContextModelSnapshot.cs │ │ ├── Models │ │ ├── ApiViewModels │ │ │ └── SetlangViewModel.cs │ │ ├── AppGrant.cs │ │ ├── AuditLogLocal.cs │ │ ├── DirectoryAppInDb.cs │ │ ├── DirectoryUser.cs │ │ ├── OAuthPack.cs │ │ ├── OAuthViewModels │ │ │ ├── AuthorizeConfirmViewModel.cs │ │ │ ├── AuthorizeViewModel.cs │ │ │ ├── RecoveryCodeAuthViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ └── SecondAuthViewModel.cs │ │ ├── PasswordViewModels │ │ │ ├── EmailConfirmViewModel.cs │ │ │ ├── EnterSMSCodeViewModel.cs │ │ │ ├── ForgotPasswordForViewModel.cs │ │ │ ├── ForgotPasswordViaEmailViewModel.cs │ │ │ ├── MethodSelectionViewModel.cs │ │ │ └── ResetPasswordViewModel.cs │ │ ├── ThirdPartyAddressModels │ │ │ ├── BindAccountAddressModel.cs │ │ │ └── SignInAddressModel.cs │ │ └── ThirdPartyViewModels │ │ │ ├── BindAccountViewModel.cs │ │ │ └── SignInViewModel.cs │ │ ├── Program.cs │ │ ├── Resources │ │ ├── Controllers │ │ │ └── HomeController.zh.resx │ │ ├── Models │ │ │ └── OAuthViewModels │ │ │ │ └── AuthorizeViewModel.zh.resx │ │ └── Views │ │ │ ├── Api │ │ │ └── Setlang.zh.resx │ │ │ ├── Error │ │ │ ├── Code404.zh.resx │ │ │ └── ServerException.zh.resx │ │ │ ├── OAuth │ │ │ ├── Autherror.zh.resx │ │ │ ├── Authorize.zh.resx │ │ │ ├── AuthorizeConfirm.zh.resx │ │ │ └── Register.zh.resx │ │ │ ├── Shared │ │ │ ├── _Layout.zh.resx │ │ │ └── _ValidationScriptsPartial.zh.resx │ │ │ └── User │ │ │ ├── EmailConfirm.zh.resx │ │ │ ├── EnterSMSCode.zh.resx │ │ │ ├── ForgotPasswordFor.zh.resx │ │ │ ├── ForgotPasswordSent.zh.resx │ │ │ ├── ForgotPasswordViaEmail.zh.resx │ │ │ ├── ForgotPasswordViaSMS.zh.resx │ │ │ ├── MethodSelection.zh.resx │ │ │ ├── ResetPassword.zh.resx │ │ │ ├── ResetPasswordConfirmation.zh.resx │ │ │ └── SelectPasswordMethod.zh.resx │ │ ├── Services │ │ ├── APISMSSender.cs │ │ ├── AuthLogger.cs │ │ ├── ConfirmationEmailSender.cs │ │ ├── GrantChecker.cs │ │ ├── PrivateKeyStore.cs │ │ ├── RSASignService.cs │ │ ├── TimedCleaner.cs │ │ ├── TokenGenerator.cs │ │ ├── TwoFAHelper.cs │ │ └── UserAppAuthManager.cs │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Language │ │ │ └── Setlang.cshtml │ │ ├── OAuth │ │ │ ├── Autherror.cshtml │ │ │ ├── Authorize.cshtml │ │ │ ├── AuthorizeConfirm.cshtml │ │ │ ├── RecoveryCodeAuth.cshtml │ │ │ ├── Register.cshtml │ │ │ └── SecondAuth.cshtml │ │ ├── Password │ │ │ ├── Confirmation.cshtml │ │ │ ├── EmailConfirm.cshtml │ │ │ ├── EmailConfirmed.cshtml │ │ │ ├── EnterSMSCode.cshtml │ │ │ ├── ForgotPasswordFor.cshtml │ │ │ ├── ForgotPasswordSent.cshtml │ │ │ ├── MethodSelection.cshtml │ │ │ └── ResetPassword.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── ThirdParty │ │ │ ├── BindAccount.cshtml │ │ │ ├── BindFailed.cshtml │ │ │ └── SignIn.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ └── favicon.ico │ ├── Business │ ├── Account │ │ ├── Aiursoft.Account.csproj │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── AuthController.cs │ │ │ └── HomeController.cs │ │ ├── Data │ │ │ └── AccountDbContext.cs │ │ ├── Migrations │ │ │ ├── 20180703150838_Init.Designer.cs │ │ │ ├── 20180703150838_Init.cs │ │ │ ├── 20180925141809_RefactorImageStorageSystem.Designer.cs │ │ │ ├── 20180925141809_RefactorImageStorageSystem.cs │ │ │ ├── 20190801031851_AddUserIconPathBasedOnProbe.Designer.cs │ │ │ ├── 20190801031851_AddUserIconPathBasedOnProbe.cs │ │ │ ├── 20190810081443_DropOldUserIconId.Designer.cs │ │ │ ├── 20190810081443_DropOldUserIconId.cs │ │ │ └── AccountDbContextModelSnapshot.cs │ │ ├── Models │ │ │ ├── AccountUser.cs │ │ │ └── AccountViewModels │ │ │ │ ├── AccountViewModel.cs │ │ │ │ ├── ApplicationsViewModel.cs │ │ │ │ ├── AuditLogViewModel.cs │ │ │ │ ├── AvatarViewModel.cs │ │ │ │ ├── DisableTwoFAViewModel.cs │ │ │ │ ├── EmailViewModel.cs │ │ │ │ ├── EnterCodeViewModel.cs │ │ │ │ ├── GetRecoveryCodesViewModel.cs │ │ │ │ ├── IndexViewModel.cs │ │ │ │ ├── PhoneViewModel.cs │ │ │ │ ├── SecurityViewModel.cs │ │ │ │ ├── SocialViewModel.cs │ │ │ │ ├── TwoFactorAuthenticationViewModel.cs │ │ │ │ ├── VerifyTwoFACodeViewModel.cs │ │ │ │ └── View2FAKeyViewModel.cs │ │ ├── Program.cs │ │ ├── Resources │ │ │ ├── Controllers │ │ │ │ └── ApiController.zh.resx │ │ │ ├── Models │ │ │ │ ├── AccountUser.zh.resx │ │ │ │ └── AccountViewModels │ │ │ │ │ ├── AccountViewModel.zh.resx │ │ │ │ │ ├── ApplicationsViewModel.zh.resx │ │ │ │ │ ├── AvatarViewModel.zh.resx │ │ │ │ │ ├── EmailViewModel.zh.resx │ │ │ │ │ ├── EnterCodeViewModel.zh.resx │ │ │ │ │ ├── IndexViewModel.zh.resx │ │ │ │ │ ├── PhoneViewModel.zh.resx │ │ │ │ │ └── SecurityViewModel.zh.resx │ │ │ └── Views │ │ │ │ ├── Account │ │ │ │ ├── Applications.zh.resx │ │ │ │ ├── AuditLog.zh.resx │ │ │ │ ├── Avatar.zh.resx │ │ │ │ ├── DisableTwoFA.zh.resx │ │ │ │ ├── Email.zh.resx │ │ │ │ ├── EnterCode.zh.resx │ │ │ │ ├── GetRecoveryCodes.zh.resx │ │ │ │ ├── Index.zh.resx │ │ │ │ ├── Phone.zh.resx │ │ │ │ ├── Security.zh.resx │ │ │ │ ├── Social.zh.resx │ │ │ │ ├── TwoFactorAuthentication.zh.resx │ │ │ │ ├── VerifyTwoFACode.zh.resx │ │ │ │ ├── ViewTwoFAKey.zh.resx │ │ │ │ └── _Layout.zh.resx │ │ │ │ ├── Error │ │ │ │ ├── Code404.zh.resx │ │ │ │ └── ServerException.zh.resx │ │ │ │ ├── Home │ │ │ │ ├── Error.zh.resx │ │ │ │ └── Index.zh.resx │ │ │ │ └── Shared │ │ │ │ ├── _AccountLayout.zh.resx │ │ │ │ ├── _Layout.zh.resx │ │ │ │ ├── _ValidationScriptsPartial.zh.resx │ │ │ │ └── _footer.zh.resx │ │ ├── Services │ │ │ └── AccountSMSSender.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── Applications.cshtml │ │ │ │ ├── AuditLog.cshtml │ │ │ │ ├── Avatar.cshtml │ │ │ │ ├── DisableTwoFA.cshtml │ │ │ │ ├── Email.cshtml │ │ │ │ ├── EnterCode.cshtml │ │ │ │ ├── GetRecoveryCodes.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Phone.cshtml │ │ │ │ ├── Security.cshtml │ │ │ │ ├── Social.cshtml │ │ │ │ ├── TwoFactorAuthentication.cshtml │ │ │ │ ├── VerifyTwoFACode.cshtml │ │ │ │ ├── ViewTwoFAKey.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ └── security.jpg │ │ │ └── js │ │ │ └── site.js │ ├── EE │ │ ├── Aiursoft.EE.csproj │ │ ├── Controllers │ │ │ ├── AuthController.cs │ │ │ ├── CourseController.cs │ │ │ ├── HomeController.cs │ │ │ ├── ProfileController.cs │ │ │ └── SectionController.cs │ │ ├── Data │ │ │ └── EEDbContext.cs │ │ ├── Migrations │ │ │ ├── 20180703150923_Init.Designer.cs │ │ │ ├── 20180703150923_Init.cs │ │ │ ├── 20180714131952_CreateSection.Designer.cs │ │ │ ├── 20180714131952_CreateSection.cs │ │ │ ├── 20180714132141_CreateSectionName.Designer.cs │ │ │ ├── 20180714132141_CreateSectionName.cs │ │ │ ├── 20180714141928_ChangeSectionNameType.Designer.cs │ │ │ ├── 20180714141928_ChangeSectionNameType.cs │ │ │ ├── 20180716124412_CreateWhatYouWillLearn.Designer.cs │ │ │ ├── 20180716124412_CreateWhatYouWillLearn.cs │ │ │ ├── 20180716133845_CreateLongDescription.Designer.cs │ │ │ ├── 20180716133845_CreateLongDescription.cs │ │ │ ├── 20180925142238_RefactorImageStorageSystem.Designer.cs │ │ │ ├── 20180925142238_RefactorImageStorageSystem.cs │ │ │ ├── 20190801031907_AddUserIconPathBasedOnProbe.Designer.cs │ │ │ ├── 20190801031907_AddUserIconPathBasedOnProbe.cs │ │ │ ├── 20190810081710_DropOldUserIconId.Designer.cs │ │ │ ├── 20190810081710_DropOldUserIconId.cs │ │ │ └── EEDbContextModelSnapshot.cs │ │ ├── Models │ │ │ ├── Chapter.cs │ │ │ ├── ChapterViewModels │ │ │ │ └── CreateViewModel.cs │ │ │ ├── CommonViewModel.cs │ │ │ ├── Course.cs │ │ │ ├── CourseViewModels │ │ │ │ ├── CreateViewModel.cs │ │ │ │ ├── DetailViewModel.cs │ │ │ │ └── UploadViewModel.cs │ │ │ ├── EEUser.cs │ │ │ ├── Follow.cs │ │ │ ├── ProfileViewModels │ │ │ │ ├── CoursesViewModel.cs │ │ │ │ ├── EditDesViewModel.cs │ │ │ │ ├── FollowersViewModel.cs │ │ │ │ ├── FollowingsViewModel.cs │ │ │ │ ├── OverviewViewModel.cs │ │ │ │ ├── ProfileViewModelBase.cs │ │ │ │ └── SubscriptionsViewModel.cs │ │ │ ├── Section.cs │ │ │ ├── SectionViewModels │ │ │ │ └── CreateViewModel.cs │ │ │ └── Subscription.cs │ │ ├── Program.cs │ │ ├── Resources │ │ │ └── Views │ │ │ │ └── Home │ │ │ │ └── Index.zh.resx │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Course │ │ │ │ ├── Create.cshtml │ │ │ │ └── Detail.cshtml │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ └── Search.cshtml │ │ │ ├── Profile │ │ │ │ ├── Courses.cshtml │ │ │ │ ├── EditDes.cshtml │ │ │ │ ├── Followers.cshtml │ │ │ │ ├── Followings.cshtml │ │ │ │ ├── Overview.cshtml │ │ │ │ ├── Subscriptions.cshtml │ │ │ │ ├── _Left.cshtml │ │ │ │ └── _Up.cshtml │ │ │ ├── Section │ │ │ │ └── Create.cshtml │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── ee.css │ │ │ ├── favicon.ico │ │ │ └── js │ │ │ └── site.js │ ├── Portal │ │ ├── Aiursoft.Portal.csproj │ │ ├── Controllers │ │ │ ├── AuthController.cs │ │ │ ├── HomeController.cs │ │ │ └── PortalController.cs │ │ ├── Data │ │ │ └── DeveloperDbContext.cs │ │ ├── Models │ │ │ └── PortalUser.cs │ │ ├── Program.cs │ │ ├── Resources │ │ │ ├── Controllers │ │ │ │ └── HomeController.zh.resx │ │ │ ├── Models │ │ │ │ ├── AppsViewModels │ │ │ │ │ ├── AllAppsViewModel.zh.resx │ │ │ │ │ ├── AppLayoutModel.zh.resx │ │ │ │ │ ├── CreateAppViewModel.zh.resx │ │ │ │ │ ├── DeleteAppViewModel.zh.resx │ │ │ │ │ ├── IndexViewModel.zh.resx │ │ │ │ │ └── ViewAppViewModel.zh.resx │ │ │ │ ├── BucketViewModels │ │ │ │ │ ├── CreateBucketViewModel.zh.resx │ │ │ │ │ ├── DeleteBucketViewModel.zh.resx │ │ │ │ │ ├── EditBucketViewModel.zh.resx │ │ │ │ │ └── IndexViewModel.zh.resx │ │ │ │ └── FilesViewModels │ │ │ │ │ ├── DeleteFileViewModel.zh.resx │ │ │ │ │ ├── GenerateLinkViewModel.zh.resx │ │ │ │ │ ├── IndexViewModel.zh.resx │ │ │ │ │ ├── UploadFileViewModel.zh.resx │ │ │ │ │ └── ViewFilesViewModel.zh.resx │ │ │ └── Views │ │ │ │ ├── Apps │ │ │ │ ├── AllApps.zh.resx │ │ │ │ ├── CreateApp.zh.resx │ │ │ │ ├── DeleteApp.zh.resx │ │ │ │ ├── Index.zh.resx │ │ │ │ └── ViewApp.zh.resx │ │ │ │ ├── Bucket │ │ │ │ ├── CreateBucket.zh.resx │ │ │ │ ├── DeleteBucket.zh.resx │ │ │ │ ├── EditBucket.zh.resx │ │ │ │ └── Index.zh.resx │ │ │ │ ├── Error │ │ │ │ ├── Code404.zh.resx │ │ │ │ └── ServerException.zh.resx │ │ │ │ ├── Files │ │ │ │ ├── DeleteFile.zh.resx │ │ │ │ ├── GenerateLink.zh.resx │ │ │ │ ├── Index.zh.resx │ │ │ │ ├── UploadFile.zh.resx │ │ │ │ └── ViewFiles.zh.resx │ │ │ │ ├── Home │ │ │ │ ├── Docs.zh.resx │ │ │ │ ├── Index.zh.resx │ │ │ │ └── _Layout.zh.resx │ │ │ │ └── Shared │ │ │ │ ├── _AppLayout.zh.resx │ │ │ │ ├── _Layout.zh.resx │ │ │ │ └── _LoginPartial.zh.resx │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Portal │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Components │ │ │ │ │ └── GitContentRenderer │ │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ │ ├── GitContentRenderer.cs │ │ │ │ │ │ └── GitContentRendererViewModel.cs │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── web.Release.config │ ├── Status │ │ ├── Aiursoft.Status.csproj │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Data │ │ │ └── MonitorDataProvider.cs │ │ ├── Models │ │ │ ├── HomeViewModels │ │ │ │ └── IndexViewModel.cs │ │ │ └── MonitorRule.cs │ │ ├── Program.cs │ │ ├── Resources │ │ │ └── Views │ │ │ │ ├── Home │ │ │ │ └── Index.zh.resx │ │ │ │ └── Shared │ │ │ │ └── _Layout.zh.resx │ │ ├── Services │ │ │ └── TimedChecker.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _signup.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ └── img │ │ │ └── statusbg.jpg │ ├── WWW │ │ ├── Aiursoft.WWW.csproj │ │ ├── Controllers │ │ │ ├── AuthController.cs │ │ │ ├── DocsController.cs │ │ │ ├── HomeController.cs │ │ │ └── SearchController.cs │ │ ├── Data │ │ │ └── WWWDbContext.cs │ │ ├── Migrations │ │ │ ├── 20180703151019_Init.Designer.cs │ │ │ ├── 20180703151019_Init.cs │ │ │ ├── 20180925142411_RefactorImageStorageSystem.Designer.cs │ │ │ ├── 20180925142411_RefactorImageStorageSystem.cs │ │ │ ├── 20190801031920_AddUserIconPathBasedOnProbe.Designer.cs │ │ │ ├── 20190801031920_AddUserIconPathBasedOnProbe.cs │ │ │ ├── 20190810081723_DropOldUserIconId.Designer.cs │ │ │ ├── 20190810081723_DropOldUserIconId.cs │ │ │ ├── 20200419064033_SaveHistory.Designer.cs │ │ │ ├── 20200419064033_SaveHistory.cs │ │ │ └── WWWDbContextModelSnapshot.cs │ │ ├── Models │ │ │ ├── Navbar.cs │ │ │ ├── SearchHistory.cs │ │ │ └── WWWUser.cs │ │ ├── Program.cs │ │ ├── Resources │ │ │ └── Views │ │ │ │ ├── Home │ │ │ │ └── Index.zh.resx │ │ │ │ ├── Search │ │ │ │ └── DoSearch.zh.resx │ │ │ │ └── Shared │ │ │ │ └── _Layout.zh.resx │ │ ├── Services │ │ │ ├── BingModels │ │ │ │ ├── BingResponse.cs │ │ │ │ ├── DetectedLanguage.cs │ │ │ │ ├── Translation.cs │ │ │ │ └── TranslationsItem.cs │ │ │ ├── BingTranslator.cs │ │ │ ├── BlackListProvider.cs │ │ │ ├── Models │ │ │ │ └── BingSuggestion.cs │ │ │ ├── SearchService.cs │ │ │ └── TimedChecker.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Docs │ │ │ │ └── Terms.cshtml │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Search │ │ │ │ ├── DoSearch.cshtml │ │ │ │ └── OpenSearch.cshtml │ │ │ ├── Shared │ │ │ │ ├── Components │ │ │ │ │ ├── Entity │ │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ │ └── Entity.cs │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ │ └── Images.cs │ │ │ │ │ ├── NavbarControl │ │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ │ └── NavbarControl.cs │ │ │ │ │ ├── Related │ │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ │ └── Related.cs │ │ │ │ │ ├── Videos │ │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ │ └── Videos.cs │ │ │ │ │ └── WebPage │ │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ │ └── WebPage.cs │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _signup.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── img │ │ │ └── back.svg │ │ │ └── js │ │ │ └── site.js │ └── Wiki │ │ ├── Aiursoft.Wiki.csproj │ │ ├── Controllers │ │ ├── AuthController.cs │ │ └── HomeController.cs │ │ ├── Data │ │ └── WikiDbContext.cs │ │ ├── Migrations │ │ ├── 20180703151008_Init.Designer.cs │ │ ├── 20180703151008_Init.cs │ │ ├── 20180925142349_RefactorImageStorageSystem.Designer.cs │ │ ├── 20180925142349_RefactorImageStorageSystem.cs │ │ ├── 20181120040414_CreateDocAPIAddress.Designer.cs │ │ ├── 20181120040414_CreateDocAPIAddress.cs │ │ ├── 20181213043911_CreateArticleAddress.Designer.cs │ │ ├── 20181213043911_CreateArticleAddress.cs │ │ ├── 20190801031916_AddUserIconPathBasedOnProbe.Designer.cs │ │ ├── 20190801031916_AddUserIconPathBasedOnProbe.cs │ │ ├── 20190810081532_DropOldUserIconId.Designer.cs │ │ ├── 20190810081532_DropOldUserIconId.cs │ │ ├── 20191113065309_MarkIfAritlceBuiltByJson.Designer.cs │ │ ├── 20191113065309_MarkIfAritlceBuiltByJson.cs │ │ └── WikiDbContextModelSnapshot.cs │ │ ├── Models │ │ ├── HomeViewModels │ │ │ └── IndexViewModel.cs │ │ ├── WikiUser.cs │ │ └── WikiViewModel.cs │ │ ├── Program.cs │ │ ├── Services │ │ └── Seeder.cs │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ └── ReadDoc.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ └── favicon.ico │ └── Infrastructure │ ├── Configuration │ ├── Aiursoft.Configuration.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Data │ │ └── ConfigurationDbContext.cs │ ├── Program.cs │ ├── Startup.cs │ └── appsettings.json │ ├── Observer │ ├── Aiursoft.Observer.csproj │ ├── Controllers │ │ ├── EventController.cs │ │ └── HomeController.cs │ ├── Data │ │ └── ObserverDbContext.cs │ ├── Migrations │ │ ├── 20191005073331_Init.Designer.cs │ │ ├── 20191005073331_Init.cs │ │ ├── 20191005082735_AddMonitorRule.Designer.cs │ │ ├── 20191005082735_AddMonitorRule.cs │ │ ├── 20191005175313_AddCheckTIme.Designer.cs │ │ ├── 20191005175313_AddCheckTIme.cs │ │ ├── 20191008094549_AddModel.Designer.cs │ │ ├── 20191008094549_AddModel.cs │ │ ├── 20191009104151_AddErrorLog.Designer.cs │ │ ├── 20191009104151_AddErrorLog.cs │ │ ├── 20191214175009_AddPath.Designer.cs │ │ ├── 20191214175009_AddPath.cs │ │ ├── 20200522160431_SplitProjects.Designer.cs │ │ ├── 20200522160431_SplitProjects.cs │ │ ├── 20201204193619_DropApps.Designer.cs │ │ ├── 20201204193619_DropApps.cs │ │ └── StatusDbContextModelSnapshot.cs │ ├── Program.cs │ ├── Services │ │ └── TimedCleaner.cs │ ├── Startup.cs │ └── appsettings.json │ ├── Probe │ ├── Aiursoft.Probe.csproj │ ├── Controllers │ │ ├── DownloadController.cs │ │ ├── FilesController.cs │ │ ├── FoldersController.cs │ │ ├── HomeController.cs │ │ ├── SitesController.cs │ │ └── TokenController.cs │ ├── Data │ │ └── ProbeDbContext.cs │ ├── Migrations │ │ ├── 20190422105922_ReInit.Designer.cs │ │ ├── 20190422105922_ReInit.cs │ │ ├── 20190423092153_AddSiteName.Designer.cs │ │ ├── 20190423092153_AddSiteName.cs │ │ ├── 20190506105402_FixFileNameIsInt.Designer.cs │ │ ├── 20190506105402_FixFileNameIsInt.cs │ │ ├── 20190915163417_AddCreationTimeForProbeSIte.Designer.cs │ │ ├── 20190915163417_AddCreationTimeForProbeSIte.cs │ │ ├── 20190923071236_AddOpenToUploadPropertyForSite.Designer.cs │ │ ├── 20190923071236_AddOpenToUploadPropertyForSite.cs │ │ ├── 20191006094035_AddDownloadToken.Designer.cs │ │ ├── 20191006094035_AddDownloadToken.cs │ │ ├── 20191216054003_AddSize.Designer.cs │ │ ├── 20191216054003_AddSize.cs │ │ ├── 20200501065254_AddHardwareId.Designer.cs │ │ ├── 20200501065254_AddHardwareId.cs │ │ ├── 20200510074106_RenameColumn.Designer.cs │ │ ├── 20200510074106_RenameColumn.cs │ │ ├── 20210114060641_AddIndex.Designer.cs │ │ ├── 20210114060641_AddIndex.cs │ │ └── ProbeDbContextModelSnapshot.cs │ ├── Models │ │ └── Configuration │ │ │ └── DiskAccessConfig.cs │ ├── Program.cs │ ├── Repositories │ │ ├── AppRepo.cs │ │ ├── FileRepo.cs │ │ ├── FolderRepo.cs │ │ └── SiteRepo.cs │ ├── Services │ │ ├── DiskAccess.cs │ │ ├── FileDeleter.cs │ │ ├── FileService.cs │ │ ├── FolderLockDictionary.cs │ │ ├── FolderSplitter.cs │ │ ├── IStorageProvider.cs │ │ ├── ImageCompressor.cs │ │ ├── PBKeyPair.cs │ │ ├── PBRSAService.cs │ │ ├── ProbeTokenManager.cs │ │ ├── SizeCalculator.cs │ │ ├── TimedCleaner.cs │ │ └── TokenEnsurer.cs │ ├── Startup.cs │ ├── ViewModels │ │ └── DownloadViewModels │ │ │ └── PlayerViewModel.cs │ ├── Views │ │ ├── Download │ │ │ └── Player.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ └── web.Release.config │ ├── Stargate │ ├── Aiursoft.Stargate.csproj │ ├── Attributes │ │ └── AiurForceWebSocket.cs │ ├── Controllers │ │ ├── ChannelController.cs │ │ ├── HomeController.cs │ │ ├── ListenController.cs │ │ └── MessageController.cs │ ├── Data │ │ ├── StargateDbContext.cs │ │ └── StargateMemory.cs │ ├── Migrations │ │ ├── 20180703150952_Init.Designer.cs │ │ ├── 20180703150952_Init.cs │ │ ├── 20190315031324_DropLifeTime.Designer.cs │ │ ├── 20190315031324_DropLifeTime.cs │ │ ├── 20190315031416_AddLifeTime.Designer.cs │ │ ├── 20190315031416_AddLifeTime.cs │ │ ├── 20200110090219_DropLifeTimeAgain.Designer.cs │ │ ├── 20200110090219_DropLifeTimeAgain.cs │ │ ├── 20201018094659_DropChannels.Designer.cs │ │ ├── 20201018094659_DropChannels.cs │ │ └── StargateDbContextModelSnapshot.cs │ ├── Program.cs │ ├── Startup.cs │ ├── Views │ │ └── Home │ │ │ └── Test.cshtml │ └── appsettings.json │ └── Warpgate │ ├── Aiursoft.Warpgate.csproj │ ├── Controllers │ ├── HomeController.cs │ ├── RecordsController.cs │ └── WarpController.cs │ ├── Data │ └── WarpgateDbContext.cs │ ├── Migrations │ ├── 20210528160209_Init.Designer.cs │ ├── 20210528160209_Init.cs │ └── WarpgateDbContextModelSnapshot.cs │ ├── Models │ └── Configuration │ │ └── RedirectConfiguration.cs │ ├── Program.cs │ ├── Repositories │ ├── AppRepo.cs │ └── RecordRepo.cs │ ├── Startup.cs │ ├── Views │ └── Warp │ │ └── Iframe.cshtml │ └── appsettings.json ├── tests ├── SDK.Tests │ ├── Aiursoft.SDK.Tests.csproj │ └── Services │ │ ├── MockAcTokenValidator.cs │ │ └── MockDeveloperApiService.cs └── functionalTests │ ├── Aiursoft.Observer.Tests │ ├── Aiursoft.Observer.Tests.csproj │ ├── FunctionalTests │ │ └── EventTests.cs │ └── TestStartup.cs │ ├── Aiursoft.Probe.Tests │ ├── Aiursoft.Probe.Tests.csproj │ ├── FunctionalTests │ │ └── SiteTests.cs │ └── TestStartup.cs │ ├── Aiursoft.Stargate.Tests │ ├── Aiursoft.Stargate.Tests.csproj │ ├── BasicTest.cs │ ├── Services │ │ └── DebugMessageSender.cs │ └── TestStartup.cs │ └── Aiursoft.Warpgate.Tests │ ├── Aiursoft.Warpgate.Tests.csproj │ ├── BasicTest.cs │ └── TestStartup.cs └── upgrade.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Aiursoft.Infrastructures.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/Aiursoft.Infrastructures.sln -------------------------------------------------------------------------------- /BLACK_LIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/BLACK_LIST -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/LICENSE -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/Readme.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/clean.sh -------------------------------------------------------------------------------- /doc/Aiursoft Infrastructures/API regulations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Aiursoft Infrastructures/API regulations.md -------------------------------------------------------------------------------- /doc/App Authentication/What is app authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/App Authentication/What is app authentication.md -------------------------------------------------------------------------------- /doc/Integrated Website/Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Integrated Website/Getting Started.md -------------------------------------------------------------------------------- /doc/Integrated Website/Image Mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Integrated Website/Image Mode.md -------------------------------------------------------------------------------- /doc/Object Storage/What is OSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Object Storage/What is OSS.md -------------------------------------------------------------------------------- /doc/Pylon/What is Pylon.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Readme.md -------------------------------------------------------------------------------- /doc/Stargate/What is Stargate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Stargate/What is Stargate.md -------------------------------------------------------------------------------- /doc/User Authentication/Aiursoft authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/User Authentication/Aiursoft authentication.md -------------------------------------------------------------------------------- /doc/Welcome/About Aiursoft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Welcome/About Aiursoft.md -------------------------------------------------------------------------------- /doc/Welcome/Aiursoft Intern Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Welcome/Aiursoft Intern Project.md -------------------------------------------------------------------------------- /doc/Welcome/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Welcome/Home.md -------------------------------------------------------------------------------- /doc/Welcome/How to contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/Welcome/How to contribute.md -------------------------------------------------------------------------------- /doc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/overview.png -------------------------------------------------------------------------------- /doc/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/doc/structure.json -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/install.sh -------------------------------------------------------------------------------- /ninja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/ninja.yaml -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/nuget.config -------------------------------------------------------------------------------- /seed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/seed.sql -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Aiursoft.Directory.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Aiursoft.Directory.SDK.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Attributes/IsAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Attributes/IsAccessToken.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Configuration/DirectoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Configuration/DirectoryConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Extends.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AccountViewModels/CodeToOpenIdViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AccountViewModels/CodeToOpenIdViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AccountViewModels/UserInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AccountViewModels/UserInfoViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AiurThirdPartyAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AiurThirdPartyAccount.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AiurUserEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AiurUserEmail.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AppsAddressModels/AccessTokenViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AppsAddressModels/AccessTokenViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AppsAddressModels/AppInfoAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AppsAddressModels/AppInfoAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AppsViewModels/AppInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AppsViewModels/AppInfoViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/AuditLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/AuditLog.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/Grant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/Grant.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/OAuthAddressModels/AuthorizeAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/OAuthAddressModels/AuthorizeAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/UserViewModels/GetRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/UserViewModels/GetRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/API/UserViewModels/View2FAKeyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/API/UserViewModels/View2FAKeyViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/AiurUserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/AiurUserBase.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/AppToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/AppToken.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/DirectoryApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/DirectoryApp.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/FinishAuthInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/FinishAuthInfo.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Models/ForApps/AddressModels/AuthResultAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Models/ForApps/AddressModels/AuthResultAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/AiursoftAppTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/AiursoftAppTokenValidator.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/AppTokenRSAService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/AppTokenRSAService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/DirectoryAppTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/DirectoryAppTokenService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/ServerPublicKeyAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/ServerPublicKeyAccess.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/ToDirectoryServer/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/ToDirectoryServer/AccountService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/ToDirectoryServer/AppsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/ToDirectoryServer/AppsService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/ToDirectoryServer/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/ToDirectoryServer/UserService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Directory.SDK/Services/UrlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Directory.SDK/Services/UrlConverter.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Aiursoft.Observer.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Aiursoft.Observer.SDK.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Configuration/ObserverConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Configuration/ObserverConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Extends.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Models/ErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Models/ErrorLog.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Models/EventAddressModels/DeleteAppAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Models/EventAddressModels/DeleteAppAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Models/EventAddressModels/LogAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Models/EventAddressModels/LogAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Models/EventAddressModels/ViewAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Models/EventAddressModels/ViewAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Models/EventLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Models/EventLevel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Models/EventViewModels/LogCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Models/EventViewModels/LogCollection.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Models/EventViewModels/ViewLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Models/EventViewModels/ViewLogViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Observer.SDK/Services/ToObserverServer/ObserverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Observer.SDK/Services/ToObserverServer/ObserverService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Aiursoft.Probe.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Aiursoft.Probe.SDK.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Configuration/ProbeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Configuration/ProbeConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Extends.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/DownloadAddressModels/OpenAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/DownloadAddressModels/OpenAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/File.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FilesAddressModels/CopyFileAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FilesAddressModels/CopyFileAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FilesAddressModels/DeleteFileAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FilesAddressModels/DeleteFileAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FilesAddressModels/RenameFileAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FilesAddressModels/RenameFileAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FilesAddressModels/UploadFileAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FilesAddressModels/UploadFileAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FilesViewModels/UploadFileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FilesViewModels/UploadFileViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/Folder.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/CreateNewFolderAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/CreateNewFolderAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/DeleteFolderAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/DeleteFolderAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/MoveFolderAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/MoveFolderAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/ViewContentAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/FoldersAddressModels/ViewContentAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/HomeViewModels/ProbeDownloadPatternConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/HomeViewModels/ProbeDownloadPatternConfig.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/ProbeApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/ProbeApp.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/Site.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesAddressModels/CreateNewSiteAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesAddressModels/CreateNewSiteAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesAddressModels/DeleteAppAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesAddressModels/DeleteAppAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesAddressModels/DeleteSiteAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesAddressModels/DeleteSiteAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesAddressModels/UpdateSiteInfoAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesAddressModels/UpdateSiteInfoAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesAddressModels/ViewMySitesAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesAddressModels/ViewMySitesAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesAddressModels/ViewSiteDetailAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesAddressModels/ViewSiteDetailAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesAddressModels/ViewSiteDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesAddressModels/ViewSiteDetailViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/SitesViewModels/ViewMySitesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/SitesViewModels/ViewMySitesViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Models/TokenAddressModels/GetTokenAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Models/TokenAddressModels/GetTokenAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Services/ProbeSettingsFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Services/ProbeSettingsFetcher.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Services/SaveFileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Services/SaveFileOptions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Services/ToProbeServer/FilesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Services/ToProbeServer/FilesService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Services/ToProbeServer/FoldersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Services/ToProbeServer/FoldersService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Services/ToProbeServer/SitesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Services/ToProbeServer/SitesService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Probe.SDK/Services/ToProbeServer/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Probe.SDK/Services/ToProbeServer/TokenService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Aiursoft.Stargate.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Aiursoft.Stargate.SDK.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Configuration/StargateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Configuration/StargateConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Extends.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Models/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Models/Channel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Models/ChannelAddressModels/DeleteAppAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Models/ChannelAddressModels/DeleteAppAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Models/ChannelViewModels/CreateChannelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Models/ChannelViewModels/CreateChannelViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Models/ChannelViewModels/ViewMyChannelsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Models/ChannelViewModels/ViewMyChannelsViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Models/ListenAddressModels/ChannelAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Models/ListenAddressModels/ChannelAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Models/MessageAddressModels/PushMessageAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Models/MessageAddressModels/PushMessageAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Models/StargateApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Models/StargateApp.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Services/ToStargateServer/ChannelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Services/ToStargateServer/ChannelService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Stargate.SDK/Services/ToStargateServer/PushMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Stargate.SDK/Services/ToStargateServer/PushMessageService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Aiursoft.Warpgate.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Aiursoft.Warpgate.SDK.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Configuration/WarpgateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Configuration/WarpgateConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Extends.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/AddressModels/CreateNewRecordAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/AddressModels/CreateNewRecordAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/AddressModels/DeleteAppAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/AddressModels/DeleteAppAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/AddressModels/DeleteRecordAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/AddressModels/DeleteRecordAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/AddressModels/UpdateRecordInfoAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/AddressModels/UpdateRecordInfoAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/AddressModels/ViewMyRecordsAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/AddressModels/ViewMyRecordsAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/AddressModels/WarpAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/AddressModels/WarpAddressModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/ViewModels/ViewMyRecordsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/ViewModels/ViewMyRecordsViewModel.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/ViewModels/WarpgatePatternConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/ViewModels/WarpgatePatternConfig.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/WarpRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/WarpRecord.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Models/WarpgateApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Models/WarpgateApp.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Services/ToWarpgateServer/RecordsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Services/ToWarpgateServer/RecordsService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Warpgate.SDK/Services/WarpgateSettingsFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/Infrastructure/Warpgate.SDK/Services/WarpgateSettingsFetcher.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Aiursoft.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Aiursoft.Identity.csproj -------------------------------------------------------------------------------- /src/SDK/Identity/Attributes/AiurForceAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Attributes/AiurForceAuth.cs -------------------------------------------------------------------------------- /src/SDK/Identity/AuthValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/AuthValues.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Extends.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/AiurEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/AiurEmailSender.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/AuthService.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/IAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/IAuthProvider.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/IUserDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/IUserDetail.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToFaceBookServer/AccessTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToFaceBookServer/AccessTokenResponse.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToFaceBookServer/FaceBookAuthAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToFaceBookServer/FaceBookAuthAddressModel.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToFaceBookServer/FaceBookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToFaceBookServer/FaceBookService.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToFaceBookServer/FaceBookUserDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToFaceBookServer/FaceBookUserDetail.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGitHubServer/AccessTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGitHubServer/AccessTokenResponse.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGitHubServer/GitHubAuthAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGitHubServer/GitHubAuthAddressModel.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGitHubServer/GitHubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGitHubServer/GitHubService.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGitHubServer/GitHubUserDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGitHubServer/GitHubUserDetail.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGoogleServer/AccessTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGoogleServer/AccessTokenResponse.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGoogleServer/GoogleAuthAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGoogleServer/GoogleAuthAddressModel.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGoogleServer/GoogleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGoogleServer/GoogleService.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToGoogleServer/GoogleUserDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToGoogleServer/GoogleUserDetail.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToMicrosoftServer/AccessTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToMicrosoftServer/AccessTokenResponse.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToMicrosoftServer/MicrosoftAuthAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToMicrosoftServer/MicrosoftAuthAddressModel.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToMicrosoftServer/MicrosoftService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToMicrosoftServer/MicrosoftService.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/Authentication/ToMicrosoftServer/MicrosoftUserDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/Authentication/ToMicrosoftServer/MicrosoftUserDetail.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Services/UserImageGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Services/UserImageGenerator.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Views/Shared/Components/AiurLogout/AiurLogout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Views/Shared/Components/AiurLogout/AiurLogout.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Views/Shared/Components/AiurLogout/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Views/Shared/Components/AiurLogout/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/Identity/Views/Shared/Components/AiurUploader/AiurUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Views/Shared/Components/AiurUploader/AiurUploader.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Views/Shared/Components/AiurUploader/AiurUploaderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Views/Shared/Components/AiurUploader/AiurUploaderViewModel.cs -------------------------------------------------------------------------------- /src/SDK/Identity/Views/Shared/Components/AiurUploader/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/Views/Shared/Components/AiurUploader/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/Identity/identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/Identity/identity.png -------------------------------------------------------------------------------- /src/SDK/SDK/Aiursoft.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Aiursoft.SDK.csproj -------------------------------------------------------------------------------- /src/SDK/SDK/Attributes/AiurNoCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Attributes/AiurNoCache.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Attributes/IAiurForceAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Attributes/IAiurForceAuth.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Handlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Handlers.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Middlewares/HandleRobotsMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Middlewares/HandleRobotsMiddleware.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Middlewares/ObserverExceptionUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Middlewares/ObserverExceptionUploader.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Middlewares/ProductionExceptionPageMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Middlewares/ProductionExceptionPageMiddleware.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Middlewares/SwitchLanguageMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Middlewares/SwitchLanguageMiddleware.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Middlewares/UserFriendlyBadRequestMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Middlewares/UserFriendlyBadRequestMiddleware.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Middlewares/UserFriendlyNotFoundMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Middlewares/UserFriendlyNotFoundMiddleware.cs -------------------------------------------------------------------------------- /src/SDK/SDK/MiddlewaresExtends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/MiddlewaresExtends.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Services/HttpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Services/HttpService.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Services/ProxyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Services/ProxyService.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Services/ServiceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Services/ServiceLocation.cs -------------------------------------------------------------------------------- /src/SDK/SDK/ServicesExtends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/ServicesExtends.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Values.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurDashboardCSS/AiurDashboardCSS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurDashboardCSS/AiurDashboardCSS.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurDashboardCSS/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurDashboardCSS/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurDashboardJS/AiurDashboardJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurDashboardJS/AiurDashboardJS.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurDashboardJS/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurDashboardJS/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurFooter/AiurFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurFooter/AiurFooter.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurFooter/AiurFooterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurFooter/AiurFooterViewModel.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurFooter/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurFooter/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurHeader/AiurHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurHeader/AiurHeader.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurHeader/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurHeader/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurMarketCSS/AiurMarketCSS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurMarketCSS/AiurMarketCSS.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurMarketCSS/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurMarketCSS/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurMarketJS/AiurMarketJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurMarketJS/AiurMarketJS.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/AiurMarketJS/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/AiurMarketJS/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/ChinaRegister/ChinaRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/ChinaRegister/ChinaRegister.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/ChinaRegister/ChinaRegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/ChinaRegister/ChinaRegisterViewModel.cs -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/ChinaRegister/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/ChinaRegister/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/ScrollToTop/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/ScrollToTop/Default.cshtml -------------------------------------------------------------------------------- /src/SDK/SDK/Views/Shared/Components/ScrollToTop/ScrollToTopViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/SDK/SDK/Views/Shared/Components/ScrollToTop/ScrollToTopViewComponent.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Aiursoft.Directory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Aiursoft.Directory.csproj -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/AppsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/AppsController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/LanguageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/LanguageController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/OAuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/OAuthController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/PasswordController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/PasswordController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/ThirdPartyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/ThirdPartyController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Controllers/UserController.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Data/DirectoryDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Data/DirectoryDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Migrations/20230527081619_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Migrations/20230527081619_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Migrations/20230527081619_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Migrations/20230527081619_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Migrations/20230612135029_AddDirectoryAppInDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Migrations/20230612135029_AddDirectoryAppInDb.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Migrations/20230612152436_RenameATable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Migrations/20230612152436_RenameATable.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Migrations/20230612152436_RenameATable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Migrations/20230612152436_RenameATable.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Migrations/DirectoryDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Migrations/DirectoryDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/ApiViewModels/SetlangViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/ApiViewModels/SetlangViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/AppGrant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/AppGrant.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/AuditLogLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/AuditLogLocal.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/DirectoryAppInDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/DirectoryAppInDb.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/DirectoryUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/DirectoryUser.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/OAuthPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/OAuthPack.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/OAuthViewModels/AuthorizeConfirmViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/OAuthViewModels/AuthorizeConfirmViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/OAuthViewModels/AuthorizeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/OAuthViewModels/AuthorizeViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/OAuthViewModels/RecoveryCodeAuthViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/OAuthViewModels/RecoveryCodeAuthViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/OAuthViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/OAuthViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/OAuthViewModels/SecondAuthViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/OAuthViewModels/SecondAuthViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/PasswordViewModels/EmailConfirmViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/PasswordViewModels/EmailConfirmViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/PasswordViewModels/EnterSMSCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/PasswordViewModels/EnterSMSCodeViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/PasswordViewModels/ForgotPasswordForViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/PasswordViewModels/ForgotPasswordForViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/PasswordViewModels/MethodSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/PasswordViewModels/MethodSelectionViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/PasswordViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/PasswordViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/ThirdPartyAddressModels/SignInAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/ThirdPartyAddressModels/SignInAddressModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/ThirdPartyViewModels/BindAccountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/ThirdPartyViewModels/BindAccountViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Models/ThirdPartyViewModels/SignInViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Models/ThirdPartyViewModels/SignInViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Controllers/HomeController.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Controllers/HomeController.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/Api/Setlang.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/Api/Setlang.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/Error/Code404.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/Error/Code404.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/Error/ServerException.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/Error/ServerException.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/OAuth/Autherror.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/OAuth/Autherror.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/OAuth/Authorize.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/OAuth/Authorize.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/OAuth/AuthorizeConfirm.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/OAuth/AuthorizeConfirm.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/OAuth/Register.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/OAuth/Register.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/Shared/_Layout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/Shared/_Layout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/EmailConfirm.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/EmailConfirm.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/EnterSMSCode.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/EnterSMSCode.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordFor.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordFor.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordSent.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordSent.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordViaEmail.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordViaEmail.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordViaSMS.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/ForgotPasswordViaSMS.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/MethodSelection.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/MethodSelection.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/ResetPassword.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/ResetPassword.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/ResetPasswordConfirmation.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/ResetPasswordConfirmation.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Resources/Views/User/SelectPasswordMethod.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Resources/Views/User/SelectPasswordMethod.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/APISMSSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/APISMSSender.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/AuthLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/AuthLogger.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/ConfirmationEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/ConfirmationEmailSender.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/GrantChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/GrantChecker.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/PrivateKeyStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/PrivateKeyStore.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/RSASignService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/RSASignService.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/TimedCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/TimedCleaner.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/TokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/TokenGenerator.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/TwoFAHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/TwoFAHelper.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Services/UserAppAuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Services/UserAppAuthManager.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Language/Setlang.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Language/Setlang.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/OAuth/Autherror.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/OAuth/Autherror.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/OAuth/Authorize.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/OAuth/Authorize.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/OAuth/AuthorizeConfirm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/OAuth/AuthorizeConfirm.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/OAuth/RecoveryCodeAuth.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/OAuth/RecoveryCodeAuth.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/OAuth/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/OAuth/Register.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/OAuth/SecondAuth.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/OAuth/SecondAuth.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/Confirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/Confirmation.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/EmailConfirm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/EmailConfirm.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/EmailConfirmed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/EmailConfirmed.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/EnterSMSCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/EnterSMSCode.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/ForgotPasswordFor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/ForgotPasswordFor.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/ForgotPasswordSent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/ForgotPasswordSent.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/MethodSelection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/MethodSelection.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Password/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Password/ResetPassword.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/ThirdParty/BindAccount.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/ThirdParty/BindAccount.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/ThirdParty/BindFailed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/ThirdParty/BindFailed.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/ThirdParty/SignIn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/ThirdParty/SignIn.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/WebServices/Basic/Directory/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Basic/Directory/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Aiursoft.Account.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Aiursoft.Account.csproj -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Data/AccountDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Data/AccountDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Migrations/20180703150838_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Migrations/20180703150838_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Migrations/20180703150838_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Migrations/20180703150838_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Migrations/20190810081443_DropOldUserIconId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Migrations/20190810081443_DropOldUserIconId.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Migrations/AccountDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Migrations/AccountDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountUser.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/AccountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/AccountViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/ApplicationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/ApplicationsViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/AuditLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/AuditLogViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/AvatarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/AvatarViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/DisableTwoFAViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/DisableTwoFAViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/EmailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/EmailViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/EnterCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/EnterCodeViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/GetRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/GetRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/PhoneViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/PhoneViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/SecurityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/SecurityViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/SocialViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/SocialViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/VerifyTwoFACodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/VerifyTwoFACodeViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Models/AccountViewModels/View2FAKeyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Models/AccountViewModels/View2FAKeyViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Controllers/ApiController.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Controllers/ApiController.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Models/AccountUser.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Models/AccountUser.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/Applications.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/Applications.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/AuditLog.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/AuditLog.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/Avatar.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/Avatar.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/DisableTwoFA.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/DisableTwoFA.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/Email.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/Email.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/EnterCode.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/EnterCode.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/GetRecoveryCodes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/GetRecoveryCodes.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/Phone.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/Phone.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/Security.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/Security.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/Social.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/Social.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/VerifyTwoFACode.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/VerifyTwoFACode.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/ViewTwoFAKey.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/ViewTwoFAKey.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Account/_Layout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Account/_Layout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Error/Code404.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Error/Code404.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Error/ServerException.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Error/ServerException.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Home/Error.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Home/Error.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Home/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Home/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Shared/_AccountLayout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Shared/_AccountLayout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Shared/_Layout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Shared/_Layout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Resources/Views/Shared/_footer.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Resources/Views/Shared/_footer.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Services/AccountSMSSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Services/AccountSMSSender.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/Applications.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/Applications.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/AuditLog.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/AuditLog.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/Avatar.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/Avatar.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/DisableTwoFA.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/DisableTwoFA.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/Email.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/Email.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/EnterCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/EnterCode.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/GetRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/GetRecoveryCodes.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/Index.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/Phone.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/Phone.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/Security.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/Security.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/Social.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/Social.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/VerifyTwoFACode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/VerifyTwoFACode.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/ViewTwoFAKey.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/ViewTwoFAKey.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Account/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Account/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Account/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Business/Account/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/WebServices/Business/Account/wwwroot/img/security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/wwwroot/img/security.jpg -------------------------------------------------------------------------------- /src/WebServices/Business/Account/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Account/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Aiursoft.EE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Aiursoft.EE.csproj -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Controllers/CourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Controllers/CourseController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Controllers/ProfileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Controllers/ProfileController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Controllers/SectionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Controllers/SectionController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Data/EEDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Data/EEDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180703150923_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180703150923_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180703150923_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180703150923_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180714131952_CreateSection.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180714131952_CreateSection.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180714131952_CreateSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180714131952_CreateSection.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180714132141_CreateSectionName.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180714132141_CreateSectionName.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180714132141_CreateSectionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180714132141_CreateSectionName.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180714141928_ChangeSectionNameType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180714141928_ChangeSectionNameType.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180714141928_ChangeSectionNameType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180714141928_ChangeSectionNameType.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180716124412_CreateWhatYouWillLearn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180716124412_CreateWhatYouWillLearn.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180716133845_CreateLongDescription.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180716133845_CreateLongDescription.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180716133845_CreateLongDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180716133845_CreateLongDescription.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20180925142238_RefactorImageStorageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20180925142238_RefactorImageStorageSystem.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20190801031907_AddUserIconPathBasedOnProbe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20190801031907_AddUserIconPathBasedOnProbe.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20190810081710_DropOldUserIconId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20190810081710_DropOldUserIconId.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/20190810081710_DropOldUserIconId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/20190810081710_DropOldUserIconId.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Migrations/EEDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Migrations/EEDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/Chapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/Chapter.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ChapterViewModels/CreateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ChapterViewModels/CreateViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/CommonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/CommonViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/Course.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/CourseViewModels/CreateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/CourseViewModels/CreateViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/CourseViewModels/DetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/CourseViewModels/DetailViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/CourseViewModels/UploadViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/CourseViewModels/UploadViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/EEUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/EEUser.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/Follow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/Follow.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ProfileViewModels/CoursesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ProfileViewModels/CoursesViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ProfileViewModels/EditDesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ProfileViewModels/EditDesViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ProfileViewModels/FollowersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ProfileViewModels/FollowersViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ProfileViewModels/FollowingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ProfileViewModels/FollowingsViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ProfileViewModels/OverviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ProfileViewModels/OverviewViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ProfileViewModels/ProfileViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ProfileViewModels/ProfileViewModelBase.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/ProfileViewModels/SubscriptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/ProfileViewModels/SubscriptionsViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/Section.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/SectionViewModels/CreateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/SectionViewModels/CreateViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Models/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Models/Subscription.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Resources/Views/Home/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Resources/Views/Home/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Course/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Course/Create.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Course/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Course/Detail.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Home/Search.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/Courses.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/Courses.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/EditDes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/EditDes.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/Followers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/Followers.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/Followings.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/Followings.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/Overview.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/Overview.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/Subscriptions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/Subscriptions.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/_Left.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/_Left.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Profile/_Up.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Profile/_Up.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Section/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Section/Create.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/EE/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Business/EE/wwwroot/css/ee.css: -------------------------------------------------------------------------------- 1 | .jumbotron .container { 2 | max-width: 40rem; 3 | } -------------------------------------------------------------------------------- /src/WebServices/Business/EE/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/WebServices/Business/EE/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/EE/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Aiursoft.Portal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Aiursoft.Portal.csproj -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Controllers/PortalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Controllers/PortalController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Data/DeveloperDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Data/DeveloperDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Models/PortalUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Models/PortalUser.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Controllers/HomeController.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Controllers/HomeController.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Models/AppsViewModels/AppLayoutModel.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Models/AppsViewModels/AppLayoutModel.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Models/AppsViewModels/IndexViewModel.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Models/AppsViewModels/IndexViewModel.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Models/FilesViewModels/IndexViewModel.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Models/FilesViewModels/IndexViewModel.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Apps/AllApps.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Apps/AllApps.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Apps/CreateApp.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Apps/CreateApp.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Apps/DeleteApp.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Apps/DeleteApp.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Apps/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Apps/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Apps/ViewApp.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Apps/ViewApp.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Bucket/CreateBucket.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Bucket/CreateBucket.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Bucket/DeleteBucket.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Bucket/DeleteBucket.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Bucket/EditBucket.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Bucket/EditBucket.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Bucket/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Bucket/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Error/Code404.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Error/Code404.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Error/ServerException.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Error/ServerException.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Files/DeleteFile.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Files/DeleteFile.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Files/GenerateLink.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Files/GenerateLink.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Files/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Files/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Files/UploadFile.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Files/UploadFile.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Files/ViewFiles.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Files/ViewFiles.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Home/Docs.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Home/Docs.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Home/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Home/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Home/_Layout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Home/_Layout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Shared/_AppLayout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Shared/_AppLayout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Shared/_Layout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Shared/_Layout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Resources/Views/Shared/_LoginPartial.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Resources/Views/Shared/_LoginPartial.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Views/Home/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Views/Home/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Views/Portal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Views/Portal/Index.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Business/Portal/web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Portal/web.Release.config -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Aiursoft.Status.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Aiursoft.Status.csproj -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Data/MonitorDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Data/MonitorDataProvider.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Models/HomeViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Models/HomeViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Models/MonitorRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Models/MonitorRule.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Resources/Views/Home/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Resources/Views/Home/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Resources/Views/Shared/_Layout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Resources/Views/Shared/_Layout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Services/TimedChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Services/TimedChecker.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Views/Shared/_signup.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Status/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Status/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Business/Status/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/WebServices/Business/Status/wwwroot/img/statusbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Status/wwwroot/img/statusbg.jpg -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Aiursoft.WWW.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Aiursoft.WWW.csproj -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Controllers/DocsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Controllers/DocsController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Controllers/SearchController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Data/WWWDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Data/WWWDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20180703151019_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20180703151019_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20180703151019_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20180703151019_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20180925142411_RefactorImageStorageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20180925142411_RefactorImageStorageSystem.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20190801031920_AddUserIconPathBasedOnProbe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20190801031920_AddUserIconPathBasedOnProbe.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20190810081723_DropOldUserIconId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20190810081723_DropOldUserIconId.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20190810081723_DropOldUserIconId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20190810081723_DropOldUserIconId.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20200419064033_SaveHistory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20200419064033_SaveHistory.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/20200419064033_SaveHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/20200419064033_SaveHistory.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Migrations/WWWDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Migrations/WWWDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Models/Navbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Models/Navbar.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Models/SearchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Models/SearchHistory.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Models/WWWUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Models/WWWUser.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Resources/Views/Home/Index.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Resources/Views/Home/Index.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Resources/Views/Search/DoSearch.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Resources/Views/Search/DoSearch.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Resources/Views/Shared/_Layout.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Resources/Views/Shared/_Layout.zh.resx -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/BingModels/BingResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/BingModels/BingResponse.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/BingModels/DetectedLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/BingModels/DetectedLanguage.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/BingModels/Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/BingModels/Translation.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/BingModels/TranslationsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/BingModels/TranslationsItem.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/BingTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/BingTranslator.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/BlackListProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/BlackListProvider.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/Models/BingSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/Models/BingSuggestion.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/SearchService.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Services/TimedChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Services/TimedChecker.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Docs/Terms.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Docs/Terms.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Search/DoSearch.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Search/DoSearch.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Search/OpenSearch.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Search/OpenSearch.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Entity/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Entity/Default.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Entity/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Entity/Entity.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Images/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Images/Default.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Images/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Images/Images.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/NavbarControl/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/NavbarControl/Default.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/NavbarControl/NavbarControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/NavbarControl/NavbarControl.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Related/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Related/Default.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Related/Related.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Related/Related.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Videos/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Videos/Default.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/Videos/Videos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/Videos/Videos.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/WebPage/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/WebPage/Default.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/Components/WebPage/WebPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/Components/WebPage/WebPage.cs -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/Shared/_signup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/Shared/_signup.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/wwwroot/img/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/wwwroot/img/back.svg -------------------------------------------------------------------------------- /src/WebServices/Business/WWW/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/WWW/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Aiursoft.Wiki.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Aiursoft.Wiki.csproj -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Data/WikiDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Data/WikiDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20180703151008_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20180703151008_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20180703151008_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20180703151008_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20180925142349_RefactorImageStorageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20180925142349_RefactorImageStorageSystem.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20181120040414_CreateDocAPIAddress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20181120040414_CreateDocAPIAddress.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20181120040414_CreateDocAPIAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20181120040414_CreateDocAPIAddress.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20181213043911_CreateArticleAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20181213043911_CreateArticleAddress.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20190801031916_AddUserIconPathBasedOnProbe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20190801031916_AddUserIconPathBasedOnProbe.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20190810081532_DropOldUserIconId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20190810081532_DropOldUserIconId.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20190810081532_DropOldUserIconId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20190810081532_DropOldUserIconId.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/20191113065309_MarkIfAritlceBuiltByJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/20191113065309_MarkIfAritlceBuiltByJson.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Migrations/WikiDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Migrations/WikiDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Models/HomeViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Models/HomeViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Models/WikiUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Models/WikiUser.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Models/WikiViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Models/WikiViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Services/Seeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Services/Seeder.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Views/Home/ReadDoc.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Views/Home/ReadDoc.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Business/Wiki/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Business/Wiki/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Configuration/Aiursoft.Configuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Configuration/Aiursoft.Configuration.csproj -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Configuration/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Configuration/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Configuration/Data/ConfigurationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Configuration/Data/ConfigurationDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Configuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Configuration/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Configuration/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Configuration/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Configuration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Configuration/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Aiursoft.Observer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Aiursoft.Observer.csproj -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Controllers/EventController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Controllers/EventController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Data/ObserverDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Data/ObserverDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191005073331_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191005073331_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191005073331_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191005073331_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191005082735_AddMonitorRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191005082735_AddMonitorRule.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191005175313_AddCheckTIme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191005175313_AddCheckTIme.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191008094549_AddModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191008094549_AddModel.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191009104151_AddErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191009104151_AddErrorLog.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191214175009_AddPath.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191214175009_AddPath.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20191214175009_AddPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20191214175009_AddPath.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20200522160431_SplitProjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20200522160431_SplitProjects.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/20201204193619_DropApps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/20201204193619_DropApps.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Migrations/StatusDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Migrations/StatusDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Services/TimedCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Services/TimedCleaner.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Observer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Observer/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Aiursoft.Probe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Aiursoft.Probe.csproj -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Controllers/DownloadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Controllers/DownloadController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Controllers/FilesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Controllers/FilesController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Controllers/FoldersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Controllers/FoldersController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Controllers/SitesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Controllers/SitesController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Controllers/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Controllers/TokenController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Data/ProbeDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Data/ProbeDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20190422105922_ReInit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20190422105922_ReInit.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20190422105922_ReInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20190422105922_ReInit.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20190423092153_AddSiteName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20190423092153_AddSiteName.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20190506105402_FixFileNameIsInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20190506105402_FixFileNameIsInt.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20191006094035_AddDownloadToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20191006094035_AddDownloadToken.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20191216054003_AddSize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20191216054003_AddSize.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20191216054003_AddSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20191216054003_AddSize.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20200501065254_AddHardwareId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20200501065254_AddHardwareId.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20200510074106_RenameColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20200510074106_RenameColumn.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20210114060641_AddIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20210114060641_AddIndex.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/20210114060641_AddIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/20210114060641_AddIndex.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Migrations/ProbeDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Migrations/ProbeDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Models/Configuration/DiskAccessConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Models/Configuration/DiskAccessConfig.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Repositories/AppRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Repositories/AppRepo.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Repositories/FileRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Repositories/FileRepo.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Repositories/FolderRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Repositories/FolderRepo.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Repositories/SiteRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Repositories/SiteRepo.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/DiskAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/DiskAccess.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/FileDeleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/FileDeleter.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/FileService.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/FolderLockDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/FolderLockDictionary.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/FolderSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/FolderSplitter.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/IStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/IStorageProvider.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/ImageCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/ImageCompressor.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/PBKeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/PBKeyPair.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/PBRSAService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/PBRSAService.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/ProbeTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/ProbeTokenManager.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/SizeCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/SizeCalculator.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/TimedCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/TimedCleaner.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Services/TokenEnsurer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Services/TokenEnsurer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/ViewModels/DownloadViewModels/PlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/ViewModels/DownloadViewModels/PlayerViewModel.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Views/Download/Player.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/Views/Download/Player.cshtml -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Aiursoft.SDK.Services 2 | -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Probe/web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Probe/web.Release.config -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Aiursoft.Stargate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Aiursoft.Stargate.csproj -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Attributes/AiurForceWebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Attributes/AiurForceWebSocket.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Controllers/ChannelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Controllers/ChannelController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Controllers/ListenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Controllers/ListenController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Controllers/MessageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Controllers/MessageController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Data/StargateDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Data/StargateDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Data/StargateMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Data/StargateMemory.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Migrations/20180703150952_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Migrations/20180703150952_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Migrations/20180703150952_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Migrations/20180703150952_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Migrations/20190315031324_DropLifeTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Migrations/20190315031324_DropLifeTime.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Migrations/20190315031416_AddLifeTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Migrations/20190315031416_AddLifeTime.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Migrations/20201018094659_DropChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Migrations/20201018094659_DropChannels.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Migrations/StargateDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Migrations/StargateDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/Views/Home/Test.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/Views/Home/Test.cshtml -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Stargate/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Stargate/appsettings.json -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Aiursoft.Warpgate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Aiursoft.Warpgate.csproj -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Controllers/RecordsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Controllers/RecordsController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Controllers/WarpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Controllers/WarpController.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Data/WarpgateDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Data/WarpgateDbContext.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Migrations/20210528160209_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Migrations/20210528160209_Init.Designer.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Migrations/20210528160209_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Migrations/20210528160209_Init.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Migrations/WarpgateDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Migrations/WarpgateDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Models/Configuration/RedirectConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Models/Configuration/RedirectConfiguration.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Program.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Repositories/AppRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Repositories/AppRepo.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Repositories/RecordRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Repositories/RecordRepo.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Startup.cs -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/Views/Warp/Iframe.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/Views/Warp/Iframe.cshtml -------------------------------------------------------------------------------- /src/WebServices/Infrastructure/Warpgate/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/src/WebServices/Infrastructure/Warpgate/appsettings.json -------------------------------------------------------------------------------- /tests/SDK.Tests/Aiursoft.SDK.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/SDK.Tests/Aiursoft.SDK.Tests.csproj -------------------------------------------------------------------------------- /tests/SDK.Tests/Services/MockAcTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/SDK.Tests/Services/MockAcTokenValidator.cs -------------------------------------------------------------------------------- /tests/SDK.Tests/Services/MockDeveloperApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/SDK.Tests/Services/MockDeveloperApiService.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Observer.Tests/Aiursoft.Observer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Observer.Tests/Aiursoft.Observer.Tests.csproj -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Observer.Tests/FunctionalTests/EventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Observer.Tests/FunctionalTests/EventTests.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Observer.Tests/TestStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Observer.Tests/TestStartup.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Probe.Tests/Aiursoft.Probe.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Probe.Tests/Aiursoft.Probe.Tests.csproj -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Probe.Tests/FunctionalTests/SiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Probe.Tests/FunctionalTests/SiteTests.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Probe.Tests/TestStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Probe.Tests/TestStartup.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Stargate.Tests/Aiursoft.Stargate.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Stargate.Tests/Aiursoft.Stargate.Tests.csproj -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Stargate.Tests/BasicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Stargate.Tests/BasicTest.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Stargate.Tests/Services/DebugMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Stargate.Tests/Services/DebugMessageSender.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Stargate.Tests/TestStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Stargate.Tests/TestStartup.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Warpgate.Tests/Aiursoft.Warpgate.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Warpgate.Tests/Aiursoft.Warpgate.Tests.csproj -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Warpgate.Tests/BasicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Warpgate.Tests/BasicTest.cs -------------------------------------------------------------------------------- /tests/functionalTests/Aiursoft.Warpgate.Tests/TestStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/tests/functionalTests/Aiursoft.Warpgate.Tests/TestStartup.cs -------------------------------------------------------------------------------- /upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiursoftWeb/Infrastructures/HEAD/upgrade.sh --------------------------------------------------------------------------------