From e7ca87f25dae2f806469043ee556d4790d9ebcae Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 10 Mar 2020 03:04:23 +0800 Subject: ... --- Timeline.Tests/IntegratedTests/TokenTest.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Timeline.Tests/IntegratedTests/TokenTest.cs') diff --git a/Timeline.Tests/IntegratedTests/TokenTest.cs b/Timeline.Tests/IntegratedTests/TokenTest.cs index 928d546c..10af46af 100644 --- a/Timeline.Tests/IntegratedTests/TokenTest.cs +++ b/Timeline.Tests/IntegratedTests/TokenTest.cs @@ -4,12 +4,12 @@ using Microsoft.Extensions.DependencyInjection; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; -using Timeline.Models.Http; -using Timeline.Services; -using Timeline.Tests.Helpers; +using TimelineApp.Models.Http; +using TimelineApp.Services; +using TimelineApp.Tests.Helpers; using Xunit; -namespace Timeline.Tests.IntegratedTests +namespace TimelineApp.Tests.IntegratedTests { public class TokenTest : IntegratedTestBase { -- cgit v1.2.3 From 52c59d7cd949ee6ccc89fbb25231666e1e589fe2 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 10 Mar 2020 15:46:59 +0800 Subject: Revert namespace name change. --- .../ErrorResponseCodeGenerator.csproj | 2 +- ErrorResponseCodeGenerator/Program.cs | 2 +- Timeline.ErrorCodes/ErrorCodes.cs | 2 +- Timeline.ErrorCodes/Timeline.ErrorCodes.csproj | 7 + Timeline.ErrorCodes/TimelineApp.ErrorCodes.csproj | 7 - Timeline.Tests/ErrorCodeTest.cs | 4 +- .../Helpers/AsyncFunctionAssertionsExtensions.cs | 2 +- Timeline.Tests/Helpers/HttpClientExtensions.cs | 2 +- Timeline.Tests/Helpers/ImageHelper.cs | 2 +- Timeline.Tests/Helpers/ParameterInfoAssertions.cs | 2 +- Timeline.Tests/Helpers/ReflectionHelper.cs | 2 +- Timeline.Tests/Helpers/ResponseAssertions.cs | 6 +- Timeline.Tests/Helpers/TestApplication.cs | 6 +- .../IntegratedTests/AuthorizationTest.cs | 4 +- .../IntegratedTests/IntegratedTestBase.cs | 8 +- .../IntegratedTests/PersonalTimelineTest.cs | 6 +- Timeline.Tests/IntegratedTests/TimelineTest.cs | 6 +- Timeline.Tests/IntegratedTests/TokenTest.cs | 8 +- Timeline.Tests/IntegratedTests/UserAvatarTest.cs | 8 +- Timeline.Tests/IntegratedTests/UserTest.cs | 6 +- Timeline.Tests/PasswordGenerator.cs | 4 +- Timeline.Tests/Timeline.Tests.csproj | 33 ++++ Timeline.Tests/TimelineApp.Tests.csproj | 33 ---- Timeline.Tests/UsernameValidatorUnitTest.cs | 6 +- Timeline.sln | 6 +- Timeline/Auth/Attribute.cs | 4 +- Timeline/Auth/MyAuthenticationHandler.cs | 6 +- Timeline/Auth/PrincipalExtensions.cs | 4 +- Timeline/Configs/JwtConfiguration.cs | 2 +- Timeline/Controllers/ControllerAuthExtensions.cs | 6 +- Timeline/Controllers/PersonalTimelineController.cs | 10 +- .../Controllers/Testing/TestingAuthController.cs | 4 +- Timeline/Controllers/TimelineController.cs | 12 +- Timeline/Controllers/TokenController.cs | 10 +- Timeline/Controllers/UserAvatarController.cs | 18 +- Timeline/Controllers/UserController.cs | 16 +- Timeline/Entities/DataEntity.cs | 2 +- Timeline/Entities/DatabaseContext.cs | 2 +- Timeline/Entities/JwtTokenEntity.cs | 2 +- Timeline/Entities/TimelineEntity.cs | 4 +- Timeline/Entities/TimelineMemberEntity.cs | 2 +- Timeline/Entities/TimelinePostEntity.cs | 2 +- Timeline/Entities/UserAvatarEntity.cs | 2 +- Timeline/Entities/UserEntity.cs | 2 +- Timeline/Filters/Header.cs | 4 +- Timeline/Filters/Timeline.cs | 6 +- Timeline/Formatters/StringInputFormatter.cs | 2 +- Timeline/Helpers/InvalidModelResponseFactory.cs | 4 +- Timeline/Helpers/LanguageHelper.cs | 2 +- Timeline/Helpers/Log.cs | 2 +- .../Helpers/StringLocalizerFactoryExtensions.cs | 2 +- .../20200105150407_Initialize.Designer.cs | 4 +- Timeline/Migrations/20200105150407_Initialize.cs | 2 +- .../20200131100517_RefactorUser.Designer.cs | 4 +- Timeline/Migrations/20200131100517_RefactorUser.cs | 2 +- .../20200221064341_AddJwtToken.Designer.cs | 4 +- Timeline/Migrations/20200221064341_AddJwtToken.cs | 2 +- .../20200229103848_AddPostLocalId.Designer.cs | 4 +- .../Migrations/20200229103848_AddPostLocalId.cs | 2 +- .../20200306110049_AddDataTable.Designer.cs | 4 +- Timeline/Migrations/20200306110049_AddDataTable.cs | 2 +- .../20200306111553_DropUserDetails.Designer.cs | 4 +- .../Migrations/20200306111553_DropUserDetails.cs | 2 +- .../Migrations/DatabaseContextModelSnapshot.cs | 4 +- .../Models/Converters/JsonDateTimeConverter.cs | 2 +- Timeline/Models/Http/Common.cs | 4 +- Timeline/Models/Http/ErrorResponse.cs | 4 +- Timeline/Models/Http/Timeline.cs | 4 +- Timeline/Models/Http/TimelineController.cs | 4 +- Timeline/Models/Http/TokenController.cs | 2 +- Timeline/Models/Http/UserController.cs | 6 +- Timeline/Models/Http/UserInfo.cs | 4 +- Timeline/Models/Timeline.cs | 2 +- Timeline/Models/User.cs | 2 +- Timeline/Models/Validation/NameValidator.cs | 4 +- Timeline/Models/Validation/NicknameValidator.cs | 4 +- .../Models/Validation/TimelineNameValidator.cs | 2 +- Timeline/Models/Validation/UsernameValidator.cs | 2 +- Timeline/Models/Validation/Validator.cs | 6 +- Timeline/Program.cs | 4 +- .../Authentication/AuthHandler.Designer.cs | 4 +- .../ControllerAuthExtensions.Designer.cs | 4 +- .../Controllers/TimelineController.Designer.cs | 4 +- .../Controllers/TokenController.Designer.cs | 4 +- .../Controllers/UserAvatarController.Designer.cs | 4 +- .../Controllers/UserController.Designer.cs | 4 +- Timeline/Resources/Filters.Designer.cs | 4 +- Timeline/Resources/Messages.Designer.cs | 4 +- Timeline/Resources/Models/Http/Common.Designer.cs | 4 +- .../Models/Validation/NameValidator.Designer.cs | 4 +- .../Validation/NicknameValidator.Designer.cs | 4 +- .../Models/Validation/Validator.Designer.cs | 4 +- .../Resources/Services/DataManager.Designer.cs | 4 +- Timeline/Resources/Services/Exception.Designer.cs | 4 +- .../Resources/Services/TimelineService.Designer.cs | 4 +- .../Services/UserAvatarService.Designer.cs | 4 +- .../Resources/Services/UserService.Designer.cs | 4 +- .../Services/UserTokenService.Designer.cs | 4 +- Timeline/Services/BadPasswordException.cs | 4 +- Timeline/Services/Clock.cs | 2 +- Timeline/Services/ConflictException.cs | 2 +- Timeline/Services/DataManager.cs | 4 +- Timeline/Services/DatabaseCorruptedException.cs | 2 +- Timeline/Services/ETagGenerator.cs | 2 +- Timeline/Services/ImageException.cs | 2 +- Timeline/Services/ImageValidator.cs | 2 +- .../Services/JwtUserTokenBadFormatException.cs | 4 +- Timeline/Services/PasswordBadFormatException.cs | 2 +- Timeline/Services/PasswordService.cs | 2 +- Timeline/Services/PathProvider.cs | 2 +- Timeline/Services/TimelineNotExistException.cs | 2 +- Timeline/Services/TimelinePostNotExistException.cs | 2 +- Timeline/Services/TimelineService.cs | 32 ++-- Timeline/Services/UserAvatarService.cs | 6 +- Timeline/Services/UserNotExistException.cs | 4 +- Timeline/Services/UserRoleConvert.cs | 4 +- Timeline/Services/UserService.cs | 12 +- Timeline/Services/UserTokenException.cs | 2 +- Timeline/Services/UserTokenManager.cs | 4 +- Timeline/Services/UserTokenService.cs | 6 +- Timeline/Startup.cs | 18 +- Timeline/Timeline.csproj | 207 ++++++++++++++++++++ Timeline/TimelineApp.csproj | 211 --------------------- 123 files changed, 505 insertions(+), 509 deletions(-) create mode 100644 Timeline.ErrorCodes/Timeline.ErrorCodes.csproj delete mode 100644 Timeline.ErrorCodes/TimelineApp.ErrorCodes.csproj create mode 100644 Timeline.Tests/Timeline.Tests.csproj delete mode 100644 Timeline.Tests/TimelineApp.Tests.csproj create mode 100644 Timeline/Timeline.csproj delete mode 100644 Timeline/TimelineApp.csproj (limited to 'Timeline.Tests/IntegratedTests/TokenTest.cs') diff --git a/ErrorResponseCodeGenerator/ErrorResponseCodeGenerator.csproj b/ErrorResponseCodeGenerator/ErrorResponseCodeGenerator.csproj index a4ce64e6..8524b2e4 100644 --- a/ErrorResponseCodeGenerator/ErrorResponseCodeGenerator.csproj +++ b/ErrorResponseCodeGenerator/ErrorResponseCodeGenerator.csproj @@ -10,7 +10,7 @@ - + diff --git a/ErrorResponseCodeGenerator/Program.cs b/ErrorResponseCodeGenerator/Program.cs index 0d2b2a3e..5ea8aaca 100644 --- a/ErrorResponseCodeGenerator/Program.cs +++ b/ErrorResponseCodeGenerator/Program.cs @@ -45,7 +45,7 @@ namespace ErrorResponseCodeGenerator "; } - RecursiveAddErrorCode(typeof(TimelineApp.Models.Http.ErrorCodes), true); + RecursiveAddErrorCode(typeof(Timeline.Models.Http.ErrorCodes), true); code = @" using static Timeline.Resources.Messages; diff --git a/Timeline.ErrorCodes/ErrorCodes.cs b/Timeline.ErrorCodes/ErrorCodes.cs index b60a96ac..eca0e18b 100644 --- a/Timeline.ErrorCodes/ErrorCodes.cs +++ b/Timeline.ErrorCodes/ErrorCodes.cs @@ -1,4 +1,4 @@ -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { /// /// All error code constants. diff --git a/Timeline.ErrorCodes/Timeline.ErrorCodes.csproj b/Timeline.ErrorCodes/Timeline.ErrorCodes.csproj new file mode 100644 index 00000000..01ca2568 --- /dev/null +++ b/Timeline.ErrorCodes/Timeline.ErrorCodes.csproj @@ -0,0 +1,7 @@ + + + + netcoreapp3.1 + + + diff --git a/Timeline.ErrorCodes/TimelineApp.ErrorCodes.csproj b/Timeline.ErrorCodes/TimelineApp.ErrorCodes.csproj deleted file mode 100644 index 01ca2568..00000000 --- a/Timeline.ErrorCodes/TimelineApp.ErrorCodes.csproj +++ /dev/null @@ -1,7 +0,0 @@ - - - - netcoreapp3.1 - - - diff --git a/Timeline.Tests/ErrorCodeTest.cs b/Timeline.Tests/ErrorCodeTest.cs index 3f8c855c..258ebf4e 100644 --- a/Timeline.Tests/ErrorCodeTest.cs +++ b/Timeline.Tests/ErrorCodeTest.cs @@ -3,11 +3,11 @@ using System; using System.Collections.Generic; using System.Linq; using System.Reflection; -using TimelineApp.Models.Http; +using Timeline.Models.Http; using Xunit; using Xunit.Abstractions; -namespace TimelineApp.Tests +namespace Timeline.Tests { public class ErrorCodeTest { diff --git a/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs b/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs index 516c34e9..b78309c0 100644 --- a/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs +++ b/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs @@ -4,7 +4,7 @@ using FluentAssertions.Specialized; using System; using System.Threading.Tasks; -namespace TimelineApp.Tests.Helpers +namespace Timeline.Tests.Helpers { public static class AsyncFunctionAssertionsExtensions { diff --git a/Timeline.Tests/Helpers/HttpClientExtensions.cs b/Timeline.Tests/Helpers/HttpClientExtensions.cs index 952266b3..6513bbe7 100644 --- a/Timeline.Tests/Helpers/HttpClientExtensions.cs +++ b/Timeline.Tests/Helpers/HttpClientExtensions.cs @@ -6,7 +6,7 @@ using System.Net.Mime; using System.Text; using System.Threading.Tasks; -namespace TimelineApp.Tests.Helpers +namespace Timeline.Tests.Helpers { public static class HttpClientExtensions { diff --git a/Timeline.Tests/Helpers/ImageHelper.cs b/Timeline.Tests/Helpers/ImageHelper.cs index ffbb38ae..9bed0917 100644 --- a/Timeline.Tests/Helpers/ImageHelper.cs +++ b/Timeline.Tests/Helpers/ImageHelper.cs @@ -3,7 +3,7 @@ using SixLabors.ImageSharp.Formats; using SixLabors.ImageSharp.PixelFormats; using System.IO; -namespace TimelineApp.Tests.Helpers +namespace Timeline.Tests.Helpers { public static class ImageHelper { diff --git a/Timeline.Tests/Helpers/ParameterInfoAssertions.cs b/Timeline.Tests/Helpers/ParameterInfoAssertions.cs index a714f410..d3e5a41e 100644 --- a/Timeline.Tests/Helpers/ParameterInfoAssertions.cs +++ b/Timeline.Tests/Helpers/ParameterInfoAssertions.cs @@ -5,7 +5,7 @@ using FluentAssertions.Primitives; using System; using System.Reflection; -namespace TimelineApp.Tests.Helpers +namespace Timeline.Tests.Helpers { public class ParameterInfoValueFormatter : IValueFormatter { diff --git a/Timeline.Tests/Helpers/ReflectionHelper.cs b/Timeline.Tests/Helpers/ReflectionHelper.cs index 16d68bb1..3f6036e3 100644 --- a/Timeline.Tests/Helpers/ReflectionHelper.cs +++ b/Timeline.Tests/Helpers/ReflectionHelper.cs @@ -1,7 +1,7 @@ using System.Linq; using System.Reflection; -namespace TimelineApp.Tests.Helpers +namespace Timeline.Tests.Helpers { public static class ReflectionHelper { diff --git a/Timeline.Tests/Helpers/ResponseAssertions.cs b/Timeline.Tests/Helpers/ResponseAssertions.cs index 4984d224..f01a0677 100644 --- a/Timeline.Tests/Helpers/ResponseAssertions.cs +++ b/Timeline.Tests/Helpers/ResponseAssertions.cs @@ -9,10 +9,10 @@ using System.Net.Http; using System.Text; using System.Text.Json; using System.Text.Json.Serialization; -using TimelineApp.Models.Converters; -using TimelineApp.Models.Http; +using Timeline.Models.Converters; +using Timeline.Models.Http; -namespace TimelineApp.Tests.Helpers +namespace Timeline.Tests.Helpers { public class HttpResponseMessageValueFormatter : IValueFormatter { diff --git a/Timeline.Tests/Helpers/TestApplication.cs b/Timeline.Tests/Helpers/TestApplication.cs index c655d337..52c2f2e2 100644 --- a/Timeline.Tests/Helpers/TestApplication.cs +++ b/Timeline.Tests/Helpers/TestApplication.cs @@ -6,10 +6,10 @@ using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.IO; -using TimelineApp.Entities; -using TimelineApp.Migrations; +using Timeline.Entities; +using Timeline.Migrations; -namespace TimelineApp.Tests.Helpers +namespace Timeline.Tests.Helpers { public class TestApplication : IDisposable { diff --git a/Timeline.Tests/IntegratedTests/AuthorizationTest.cs b/Timeline.Tests/IntegratedTests/AuthorizationTest.cs index 69be9187..4aa6b3ae 100644 --- a/Timeline.Tests/IntegratedTests/AuthorizationTest.cs +++ b/Timeline.Tests/IntegratedTests/AuthorizationTest.cs @@ -2,10 +2,10 @@ using FluentAssertions; using Microsoft.AspNetCore.Mvc.Testing; using System.Net; using System.Threading.Tasks; -using TimelineApp.Tests.Helpers; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests.IntegratedTests +namespace Timeline.Tests.IntegratedTests { public class AuthorizationTest : IntegratedTestBase { diff --git a/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs b/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs index e265c16e..dfde2ea5 100644 --- a/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs +++ b/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs @@ -5,12 +5,12 @@ using System; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; -using TimelineApp.Models.Http; -using TimelineApp.Services; -using TimelineApp.Tests.Helpers; +using Timeline.Models.Http; +using Timeline.Services; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests.IntegratedTests +namespace Timeline.Tests.IntegratedTests { public abstract class IntegratedTestBase : IClassFixture>, IDisposable { diff --git a/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs b/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs index b6d3e827..7d0a68e8 100644 --- a/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs +++ b/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs @@ -5,11 +5,11 @@ using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; -using TimelineApp.Models.Http; -using TimelineApp.Tests.Helpers; +using Timeline.Models.Http; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests.IntegratedTests +namespace Timeline.Tests.IntegratedTests { public class PersonalTimelineTest : IntegratedTestBase { diff --git a/Timeline.Tests/IntegratedTests/TimelineTest.cs b/Timeline.Tests/IntegratedTests/TimelineTest.cs index cad74e6c..14a0a59e 100644 --- a/Timeline.Tests/IntegratedTests/TimelineTest.cs +++ b/Timeline.Tests/IntegratedTests/TimelineTest.cs @@ -6,11 +6,11 @@ using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; -using TimelineApp.Models.Http; -using TimelineApp.Tests.Helpers; +using Timeline.Models.Http; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests.IntegratedTests +namespace Timeline.Tests.IntegratedTests { public class TimelineTest : IntegratedTestBase { diff --git a/Timeline.Tests/IntegratedTests/TokenTest.cs b/Timeline.Tests/IntegratedTests/TokenTest.cs index 10af46af..928d546c 100644 --- a/Timeline.Tests/IntegratedTests/TokenTest.cs +++ b/Timeline.Tests/IntegratedTests/TokenTest.cs @@ -4,12 +4,12 @@ using Microsoft.Extensions.DependencyInjection; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; -using TimelineApp.Models.Http; -using TimelineApp.Services; -using TimelineApp.Tests.Helpers; +using Timeline.Models.Http; +using Timeline.Services; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests.IntegratedTests +namespace Timeline.Tests.IntegratedTests { public class TokenTest : IntegratedTestBase { diff --git a/Timeline.Tests/IntegratedTests/UserAvatarTest.cs b/Timeline.Tests/IntegratedTests/UserAvatarTest.cs index 8fd1d687..fa0120f1 100644 --- a/Timeline.Tests/IntegratedTests/UserAvatarTest.cs +++ b/Timeline.Tests/IntegratedTests/UserAvatarTest.cs @@ -13,12 +13,12 @@ using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; -using TimelineApp.Models.Http; -using TimelineApp.Services; -using TimelineApp.Tests.Helpers; +using Timeline.Models.Http; +using Timeline.Services; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests.IntegratedTests +namespace Timeline.Tests.IntegratedTests { public class UserAvatarTest : IntegratedTestBase { diff --git a/Timeline.Tests/IntegratedTests/UserTest.cs b/Timeline.Tests/IntegratedTests/UserTest.cs index eed13565..8ce76299 100644 --- a/Timeline.Tests/IntegratedTests/UserTest.cs +++ b/Timeline.Tests/IntegratedTests/UserTest.cs @@ -4,11 +4,11 @@ using System.Collections.Generic; using System.Net; using System.Net.Http; using System.Threading.Tasks; -using TimelineApp.Models.Http; -using TimelineApp.Tests.Helpers; +using Timeline.Models.Http; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests.IntegratedTests +namespace Timeline.Tests.IntegratedTests { public class UserTest : IntegratedTestBase { diff --git a/Timeline.Tests/PasswordGenerator.cs b/Timeline.Tests/PasswordGenerator.cs index bb6c538d..6c07836b 100644 --- a/Timeline.Tests/PasswordGenerator.cs +++ b/Timeline.Tests/PasswordGenerator.cs @@ -1,9 +1,9 @@ using System; -using TimelineApp.Services; +using Timeline.Services; using Xunit; using Xunit.Abstractions; -namespace TimelineApp.Tests +namespace Timeline.Tests { public class PasswordGenerator { diff --git a/Timeline.Tests/Timeline.Tests.csproj b/Timeline.Tests/Timeline.Tests.csproj new file mode 100644 index 00000000..1f00cc6c --- /dev/null +++ b/Timeline.Tests/Timeline.Tests.csproj @@ -0,0 +1,33 @@ + + + + netcoreapp3.1 + + 8.0 + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + all + runtime; build; native; contentfiles; analyzers + + + + + + + diff --git a/Timeline.Tests/TimelineApp.Tests.csproj b/Timeline.Tests/TimelineApp.Tests.csproj deleted file mode 100644 index 1f445f8b..00000000 --- a/Timeline.Tests/TimelineApp.Tests.csproj +++ /dev/null @@ -1,33 +0,0 @@ - - - - netcoreapp3.1 - - 8.0 - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - all - runtime; build; native; contentfiles; analyzers - - - - - - - diff --git a/Timeline.Tests/UsernameValidatorUnitTest.cs b/Timeline.Tests/UsernameValidatorUnitTest.cs index f436c091..8824362b 100644 --- a/Timeline.Tests/UsernameValidatorUnitTest.cs +++ b/Timeline.Tests/UsernameValidatorUnitTest.cs @@ -1,9 +1,9 @@ using FluentAssertions; -using TimelineApp.Models.Validation; -using TimelineApp.Tests.Helpers; +using Timeline.Models.Validation; +using Timeline.Tests.Helpers; using Xunit; -namespace TimelineApp.Tests +namespace Timeline.Tests { public class UsernameValidatorUnitTest : IClassFixture { diff --git a/Timeline.sln b/Timeline.sln index fc6e0d50..dfffe385 100644 --- a/Timeline.sln +++ b/Timeline.sln @@ -2,13 +2,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29709.97 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimelineApp", "Timeline\TimelineApp.csproj", "{A34D323C-5233-4754-B14F-4819CE9C27CA}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Timeline", "Timeline\Timeline.csproj", "{A34D323C-5233-4754-B14F-4819CE9C27CA}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimelineApp.Tests", "Timeline.Tests\TimelineApp.Tests.csproj", "{3D76D578-37BC-43C2-97BF-9C6DD3825F10}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Timeline.Tests", "Timeline.Tests\Timeline.Tests.csproj", "{3D76D578-37BC-43C2-97BF-9C6DD3825F10}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ErrorResponseCodeGenerator", "ErrorResponseCodeGenerator\ErrorResponseCodeGenerator.csproj", "{F325F802-75DE-4527-A299-F668281B0E4D}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimelineApp.ErrorCodes", "Timeline.ErrorCodes\TimelineApp.ErrorCodes.csproj", "{1044E3B0-1010-47CA-956E-B6E8FE87055B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Timeline.ErrorCodes", "Timeline.ErrorCodes\Timeline.ErrorCodes.csproj", "{1044E3B0-1010-47CA-956E-B6E8FE87055B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Timeline/Auth/Attribute.cs b/Timeline/Auth/Attribute.cs index 51e20bdf..86d0109b 100644 --- a/Timeline/Auth/Attribute.cs +++ b/Timeline/Auth/Attribute.cs @@ -1,7 +1,7 @@ using Microsoft.AspNetCore.Authorization; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Auth +namespace Timeline.Auth { public class AdminAuthorizeAttribute : AuthorizeAttribute { diff --git a/Timeline/Auth/MyAuthenticationHandler.cs b/Timeline/Auth/MyAuthenticationHandler.cs index 5e119b69..3c97c329 100644 --- a/Timeline/Auth/MyAuthenticationHandler.cs +++ b/Timeline/Auth/MyAuthenticationHandler.cs @@ -8,10 +8,10 @@ using System.Linq; using System.Security.Claims; using System.Text.Encodings.Web; using System.Threading.Tasks; -using TimelineApp.Services; -using static TimelineApp.Resources.Authentication.AuthHandler; +using Timeline.Services; +using static Timeline.Resources.Authentication.AuthHandler; -namespace TimelineApp.Auth +namespace Timeline.Auth { public static class AuthenticationConstants { diff --git a/Timeline/Auth/PrincipalExtensions.cs b/Timeline/Auth/PrincipalExtensions.cs index e7eb04b7..ad7a887f 100644 --- a/Timeline/Auth/PrincipalExtensions.cs +++ b/Timeline/Auth/PrincipalExtensions.cs @@ -1,7 +1,7 @@ using System.Security.Principal; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Auth +namespace Timeline.Auth { internal static class PrincipalExtensions { diff --git a/Timeline/Configs/JwtConfiguration.cs b/Timeline/Configs/JwtConfiguration.cs index ce8dd48b..af8052de 100644 --- a/Timeline/Configs/JwtConfiguration.cs +++ b/Timeline/Configs/JwtConfiguration.cs @@ -1,4 +1,4 @@ -namespace TimelineApp.Configs +namespace Timeline.Configs { public class JwtConfiguration { diff --git a/Timeline/Controllers/ControllerAuthExtensions.cs b/Timeline/Controllers/ControllerAuthExtensions.cs index 9c7ea601..00a65454 100644 --- a/Timeline/Controllers/ControllerAuthExtensions.cs +++ b/Timeline/Controllers/ControllerAuthExtensions.cs @@ -1,10 +1,10 @@ using Microsoft.AspNetCore.Mvc; using System; using System.Security.Claims; -using TimelineApp.Auth; -using static TimelineApp.Resources.Controllers.ControllerAuthExtensions; +using Timeline.Auth; +using static Timeline.Resources.Controllers.ControllerAuthExtensions; -namespace TimelineApp.Controllers +namespace Timeline.Controllers { public static class ControllerAuthExtensions { diff --git a/Timeline/Controllers/PersonalTimelineController.cs b/Timeline/Controllers/PersonalTimelineController.cs index 0c0694cb..cef04a97 100644 --- a/Timeline/Controllers/PersonalTimelineController.cs +++ b/Timeline/Controllers/PersonalTimelineController.cs @@ -4,12 +4,12 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using System.Collections.Generic; using System.Threading.Tasks; -using TimelineApp.Filters; -using TimelineApp.Models.Http; -using TimelineApp.Models.Validation; -using TimelineApp.Services; +using Timeline.Filters; +using Timeline.Models.Http; +using Timeline.Models.Validation; +using Timeline.Services; -namespace TimelineApp.Controllers +namespace Timeline.Controllers { [ApiController] [CatchTimelineNotExistException] diff --git a/Timeline/Controllers/Testing/TestingAuthController.cs b/Timeline/Controllers/Testing/TestingAuthController.cs index 6061f003..4d3b3ec7 100644 --- a/Timeline/Controllers/Testing/TestingAuthController.cs +++ b/Timeline/Controllers/Testing/TestingAuthController.cs @@ -1,8 +1,8 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; -using TimelineApp.Auth; +using Timeline.Auth; -namespace TimelineApp.Controllers.Testing +namespace Timeline.Controllers.Testing { [Route("testing/auth")] [ApiController] diff --git a/Timeline/Controllers/TimelineController.cs b/Timeline/Controllers/TimelineController.cs index e3baff12..25290ca5 100644 --- a/Timeline/Controllers/TimelineController.cs +++ b/Timeline/Controllers/TimelineController.cs @@ -7,13 +7,13 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Threading.Tasks; -using TimelineApp.Filters; -using TimelineApp.Models; -using TimelineApp.Models.Http; -using TimelineApp.Models.Validation; -using TimelineApp.Services; +using Timeline.Filters; +using Timeline.Models; +using Timeline.Models.Http; +using Timeline.Models.Validation; +using Timeline.Services; -namespace TimelineApp.Controllers +namespace Timeline.Controllers { [ApiController] [CatchTimelineNotExistException] diff --git a/Timeline/Controllers/TokenController.cs b/Timeline/Controllers/TokenController.cs index 47dcc0aa..1fb0b17a 100644 --- a/Timeline/Controllers/TokenController.cs +++ b/Timeline/Controllers/TokenController.cs @@ -5,12 +5,12 @@ using Microsoft.Extensions.Logging; using System; using System.Globalization; using System.Threading.Tasks; -using TimelineApp.Helpers; -using TimelineApp.Models.Http; -using TimelineApp.Services; -using static TimelineApp.Resources.Controllers.TokenController; +using Timeline.Helpers; +using Timeline.Models.Http; +using Timeline.Services; +using static Timeline.Resources.Controllers.TokenController; -namespace TimelineApp.Controllers +namespace Timeline.Controllers { [Route("token")] [ApiController] diff --git a/Timeline/Controllers/UserAvatarController.cs b/Timeline/Controllers/UserAvatarController.cs index 089cef94..f4f3db3e 100644 --- a/Timeline/Controllers/UserAvatarController.cs +++ b/Timeline/Controllers/UserAvatarController.cs @@ -6,15 +6,15 @@ using Microsoft.Net.Http.Headers; using System; using System.Linq; using System.Threading.Tasks; -using TimelineApp.Auth; -using TimelineApp.Filters; -using TimelineApp.Helpers; -using TimelineApp.Models.Http; -using TimelineApp.Models.Validation; -using TimelineApp.Services; -using static TimelineApp.Resources.Controllers.UserAvatarController; - -namespace TimelineApp.Controllers +using Timeline.Auth; +using Timeline.Filters; +using Timeline.Helpers; +using Timeline.Models.Http; +using Timeline.Models.Validation; +using Timeline.Services; +using static Timeline.Resources.Controllers.UserAvatarController; + +namespace Timeline.Controllers { [ApiController] public class UserAvatarController : Controller diff --git a/Timeline/Controllers/UserController.cs b/Timeline/Controllers/UserController.cs index 4106c750..a3e8d816 100644 --- a/Timeline/Controllers/UserController.cs +++ b/Timeline/Controllers/UserController.cs @@ -5,15 +5,15 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using System.Linq; using System.Threading.Tasks; -using TimelineApp.Auth; -using TimelineApp.Helpers; -using TimelineApp.Models.Http; -using TimelineApp.Models.Validation; -using TimelineApp.Services; -using static TimelineApp.Resources.Controllers.UserController; -using static TimelineApp.Resources.Messages; +using Timeline.Auth; +using Timeline.Helpers; +using Timeline.Models.Http; +using Timeline.Models.Validation; +using Timeline.Services; +using static Timeline.Resources.Controllers.UserController; +using static Timeline.Resources.Messages; -namespace TimelineApp.Controllers +namespace Timeline.Controllers { [ApiController] public class UserController : Controller diff --git a/Timeline/Entities/DataEntity.cs b/Timeline/Entities/DataEntity.cs index dd8a8ae7..b21e2dbf 100644 --- a/Timeline/Entities/DataEntity.cs +++ b/Timeline/Entities/DataEntity.cs @@ -1,7 +1,7 @@ using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace TimelineApp.Entities +namespace Timeline.Entities { [Table("data")] public class DataEntity diff --git a/Timeline/Entities/DatabaseContext.cs b/Timeline/Entities/DatabaseContext.cs index 5c074d2c..8899308c 100644 --- a/Timeline/Entities/DatabaseContext.cs +++ b/Timeline/Entities/DatabaseContext.cs @@ -1,6 +1,6 @@ using Microsoft.EntityFrameworkCore; -namespace TimelineApp.Entities +namespace Timeline.Entities { public class DatabaseContext : DbContext { diff --git a/Timeline/Entities/JwtTokenEntity.cs b/Timeline/Entities/JwtTokenEntity.cs index 6e5ae9a8..40cb230a 100644 --- a/Timeline/Entities/JwtTokenEntity.cs +++ b/Timeline/Entities/JwtTokenEntity.cs @@ -1,7 +1,7 @@ using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace TimelineApp.Entities +namespace Timeline.Entities { [Table("jwt_token")] public class JwtTokenEntity diff --git a/Timeline/Entities/TimelineEntity.cs b/Timeline/Entities/TimelineEntity.cs index c902a690..56b36d4e 100644 --- a/Timeline/Entities/TimelineEntity.cs +++ b/Timeline/Entities/TimelineEntity.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -using TimelineApp.Models.Http; +using Timeline.Models.Http; -namespace TimelineApp.Entities +namespace Timeline.Entities { #pragma warning disable CA2227 // Collection properties should be read only // TODO: Create index for this table. diff --git a/Timeline/Entities/TimelineMemberEntity.cs b/Timeline/Entities/TimelineMemberEntity.cs index e421ca2e..e76f2099 100644 --- a/Timeline/Entities/TimelineMemberEntity.cs +++ b/Timeline/Entities/TimelineMemberEntity.cs @@ -1,7 +1,7 @@ using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace TimelineApp.Entities +namespace Timeline.Entities { [Table("timeline_members")] public class TimelineMemberEntity diff --git a/Timeline/Entities/TimelinePostEntity.cs b/Timeline/Entities/TimelinePostEntity.cs index 8cdecef5..24bfc7a3 100644 --- a/Timeline/Entities/TimelinePostEntity.cs +++ b/Timeline/Entities/TimelinePostEntity.cs @@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace TimelineApp.Entities +namespace Timeline.Entities { [Table("timeline_posts")] public class TimelinePostEntity diff --git a/Timeline/Entities/UserAvatarEntity.cs b/Timeline/Entities/UserAvatarEntity.cs index b32faf06..3c2720f7 100644 --- a/Timeline/Entities/UserAvatarEntity.cs +++ b/Timeline/Entities/UserAvatarEntity.cs @@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace TimelineApp.Entities +namespace Timeline.Entities { [System.Diagnostics.CodeAnalysis.SuppressMessage("Performance", "CA1819:Properties should not return arrays", Justification = "This is data base entity.")] [Table("user_avatars")] diff --git a/Timeline/Entities/UserEntity.cs b/Timeline/Entities/UserEntity.cs index 6c193da8..1ef3f98c 100644 --- a/Timeline/Entities/UserEntity.cs +++ b/Timeline/Entities/UserEntity.cs @@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace TimelineApp.Entities +namespace Timeline.Entities { public static class UserRoles { diff --git a/Timeline/Filters/Header.cs b/Timeline/Filters/Header.cs index 3892e451..0db11faf 100644 --- a/Timeline/Filters/Header.cs +++ b/Timeline/Filters/Header.cs @@ -1,8 +1,8 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; -using TimelineApp.Models.Http; +using Timeline.Models.Http; -namespace TimelineApp.Filters +namespace Timeline.Filters { public class RequireContentTypeAttribute : ActionFilterAttribute { diff --git a/Timeline/Filters/Timeline.cs b/Timeline/Filters/Timeline.cs index 28ac8818..e133c9d6 100644 --- a/Timeline/Filters/Timeline.cs +++ b/Timeline/Filters/Timeline.cs @@ -1,9 +1,9 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; -using TimelineApp.Models.Http; -using TimelineApp.Services; +using Timeline.Models.Http; +using Timeline.Services; -namespace TimelineApp.Filters +namespace Timeline.Filters { public class CatchTimelineNotExistExceptionAttribute : ExceptionFilterAttribute { diff --git a/Timeline/Formatters/StringInputFormatter.cs b/Timeline/Formatters/StringInputFormatter.cs index e6831d0a..b1924268 100644 --- a/Timeline/Formatters/StringInputFormatter.cs +++ b/Timeline/Formatters/StringInputFormatter.cs @@ -5,7 +5,7 @@ using System.Net.Mime; using System.Text; using System.Threading.Tasks; -namespace TimelineApp.Formatters +namespace Timeline.Formatters { public class StringInputFormatter : TextInputFormatter { diff --git a/Timeline/Helpers/InvalidModelResponseFactory.cs b/Timeline/Helpers/InvalidModelResponseFactory.cs index 09273657..9b253e7d 100644 --- a/Timeline/Helpers/InvalidModelResponseFactory.cs +++ b/Timeline/Helpers/InvalidModelResponseFactory.cs @@ -1,8 +1,8 @@ using Microsoft.AspNetCore.Mvc; using System.Text; -using TimelineApp.Models.Http; +using Timeline.Models.Http; -namespace TimelineApp.Helpers +namespace Timeline.Helpers { public static class InvalidModelResponseFactory { diff --git a/Timeline/Helpers/LanguageHelper.cs b/Timeline/Helpers/LanguageHelper.cs index c5272253..b0156b8b 100644 --- a/Timeline/Helpers/LanguageHelper.cs +++ b/Timeline/Helpers/LanguageHelper.cs @@ -1,6 +1,6 @@ using System.Linq; -namespace TimelineApp.Helpers +namespace Timeline.Helpers { public static class LanguageHelper { diff --git a/Timeline/Helpers/Log.cs b/Timeline/Helpers/Log.cs index bc122e76..68c975fa 100644 --- a/Timeline/Helpers/Log.cs +++ b/Timeline/Helpers/Log.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Text; -namespace TimelineApp.Helpers +namespace Timeline.Helpers { public static class Log { diff --git a/Timeline/Helpers/StringLocalizerFactoryExtensions.cs b/Timeline/Helpers/StringLocalizerFactoryExtensions.cs index 45994c36..c2252b2c 100644 --- a/Timeline/Helpers/StringLocalizerFactoryExtensions.cs +++ b/Timeline/Helpers/StringLocalizerFactoryExtensions.cs @@ -2,7 +2,7 @@ using Microsoft.Extensions.Localization; using System.Reflection; -namespace TimelineApp.Helpers +namespace Timeline.Helpers { internal static class StringLocalizerFactoryExtensions { diff --git a/Timeline/Migrations/20200105150407_Initialize.Designer.cs b/Timeline/Migrations/20200105150407_Initialize.Designer.cs index 46670fa5..99e4eaac 100644 --- a/Timeline/Migrations/20200105150407_Initialize.Designer.cs +++ b/Timeline/Migrations/20200105150407_Initialize.Designer.cs @@ -4,9 +4,9 @@ using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { [DbContext(typeof(DatabaseContext))] [Migration("20200105150407_Initialize")] diff --git a/Timeline/Migrations/20200105150407_Initialize.cs b/Timeline/Migrations/20200105150407_Initialize.cs index 0013259c..4e12ef83 100644 --- a/Timeline/Migrations/20200105150407_Initialize.cs +++ b/Timeline/Migrations/20200105150407_Initialize.cs @@ -1,7 +1,7 @@ using System; using Microsoft.EntityFrameworkCore.Migrations; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { public partial class Initialize : Migration { diff --git a/Timeline/Migrations/20200131100517_RefactorUser.Designer.cs b/Timeline/Migrations/20200131100517_RefactorUser.Designer.cs index 02fde575..9b78eb15 100644 --- a/Timeline/Migrations/20200131100517_RefactorUser.Designer.cs +++ b/Timeline/Migrations/20200131100517_RefactorUser.Designer.cs @@ -4,9 +4,9 @@ using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { [DbContext(typeof(DatabaseContext))] [Migration("20200131100517_RefactorUser")] diff --git a/Timeline/Migrations/20200131100517_RefactorUser.cs b/Timeline/Migrations/20200131100517_RefactorUser.cs index af6235e1..8597ed50 100644 --- a/Timeline/Migrations/20200131100517_RefactorUser.cs +++ b/Timeline/Migrations/20200131100517_RefactorUser.cs @@ -1,6 +1,6 @@ using Microsoft.EntityFrameworkCore.Migrations; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { public partial class RefactorUser : Migration { diff --git a/Timeline/Migrations/20200221064341_AddJwtToken.Designer.cs b/Timeline/Migrations/20200221064341_AddJwtToken.Designer.cs index 7c5b26b8..eb328b52 100644 --- a/Timeline/Migrations/20200221064341_AddJwtToken.Designer.cs +++ b/Timeline/Migrations/20200221064341_AddJwtToken.Designer.cs @@ -4,9 +4,9 @@ using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { [DbContext(typeof(DatabaseContext))] [Migration("20200221064341_AddJwtToken")] diff --git a/Timeline/Migrations/20200221064341_AddJwtToken.cs b/Timeline/Migrations/20200221064341_AddJwtToken.cs index 00d23d0f..628970c6 100644 --- a/Timeline/Migrations/20200221064341_AddJwtToken.cs +++ b/Timeline/Migrations/20200221064341_AddJwtToken.cs @@ -2,7 +2,7 @@ using System.Security.Cryptography; using Microsoft.EntityFrameworkCore.Migrations; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { public static class JwtTokenGenerateHelper { diff --git a/Timeline/Migrations/20200229103848_AddPostLocalId.Designer.cs b/Timeline/Migrations/20200229103848_AddPostLocalId.Designer.cs index 3abac60e..cf6ae8a3 100644 --- a/Timeline/Migrations/20200229103848_AddPostLocalId.Designer.cs +++ b/Timeline/Migrations/20200229103848_AddPostLocalId.Designer.cs @@ -4,9 +4,9 @@ using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { [DbContext(typeof(DatabaseContext))] [Migration("20200229103848_AddPostLocalId")] diff --git a/Timeline/Migrations/20200229103848_AddPostLocalId.cs b/Timeline/Migrations/20200229103848_AddPostLocalId.cs index 029498ba..497b38a1 100644 --- a/Timeline/Migrations/20200229103848_AddPostLocalId.cs +++ b/Timeline/Migrations/20200229103848_AddPostLocalId.cs @@ -1,7 +1,7 @@ using System; using Microsoft.EntityFrameworkCore.Migrations; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { public partial class AddPostLocalId : Migration { diff --git a/Timeline/Migrations/20200306110049_AddDataTable.Designer.cs b/Timeline/Migrations/20200306110049_AddDataTable.Designer.cs index e7fdd35a..336ffc18 100644 --- a/Timeline/Migrations/20200306110049_AddDataTable.Designer.cs +++ b/Timeline/Migrations/20200306110049_AddDataTable.Designer.cs @@ -4,9 +4,9 @@ using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { [DbContext(typeof(DatabaseContext))] [Migration("20200306110049_AddDataTable")] diff --git a/Timeline/Migrations/20200306110049_AddDataTable.cs b/Timeline/Migrations/20200306110049_AddDataTable.cs index 81a1b67f..e33bf4c9 100644 --- a/Timeline/Migrations/20200306110049_AddDataTable.cs +++ b/Timeline/Migrations/20200306110049_AddDataTable.cs @@ -1,7 +1,7 @@ using System; using Microsoft.EntityFrameworkCore.Migrations; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { public partial class AddDataTable : Migration { diff --git a/Timeline/Migrations/20200306111553_DropUserDetails.Designer.cs b/Timeline/Migrations/20200306111553_DropUserDetails.Designer.cs index 775665ac..f0c4dc08 100644 --- a/Timeline/Migrations/20200306111553_DropUserDetails.Designer.cs +++ b/Timeline/Migrations/20200306111553_DropUserDetails.Designer.cs @@ -4,9 +4,9 @@ using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { [DbContext(typeof(DatabaseContext))] [Migration("20200306111553_DropUserDetails")] diff --git a/Timeline/Migrations/20200306111553_DropUserDetails.cs b/Timeline/Migrations/20200306111553_DropUserDetails.cs index d5d74cce..0a176461 100644 --- a/Timeline/Migrations/20200306111553_DropUserDetails.cs +++ b/Timeline/Migrations/20200306111553_DropUserDetails.cs @@ -1,6 +1,6 @@ using Microsoft.EntityFrameworkCore.Migrations; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { public partial class DropUserDetails : Migration { diff --git a/Timeline/Migrations/DatabaseContextModelSnapshot.cs b/Timeline/Migrations/DatabaseContextModelSnapshot.cs index 50094f3e..8170b2f0 100644 --- a/Timeline/Migrations/DatabaseContextModelSnapshot.cs +++ b/Timeline/Migrations/DatabaseContextModelSnapshot.cs @@ -3,9 +3,9 @@ using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Migrations +namespace Timeline.Migrations { [DbContext(typeof(DatabaseContext))] partial class DatabaseContextModelSnapshot : ModelSnapshot diff --git a/Timeline/Models/Converters/JsonDateTimeConverter.cs b/Timeline/Models/Converters/JsonDateTimeConverter.cs index 057186de..ef129a01 100644 --- a/Timeline/Models/Converters/JsonDateTimeConverter.cs +++ b/Timeline/Models/Converters/JsonDateTimeConverter.cs @@ -4,7 +4,7 @@ using System.Globalization; using System.Text.Json; using System.Text.Json.Serialization; -namespace TimelineApp.Models.Converters +namespace Timeline.Models.Converters { public class JsonDateTimeConverter : JsonConverter { diff --git a/Timeline/Models/Http/Common.cs b/Timeline/Models/Http/Common.cs index f30fdb0d..a9fc8a79 100644 --- a/Timeline/Models/Http/Common.cs +++ b/Timeline/Models/Http/Common.cs @@ -1,6 +1,6 @@ -using static TimelineApp.Resources.Models.Http.Common; +using static Timeline.Resources.Models.Http.Common; -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { public class CommonResponse { diff --git a/Timeline/Models/Http/ErrorResponse.cs b/Timeline/Models/Http/ErrorResponse.cs index d6cb5ca0..9f7e70e1 100644 --- a/Timeline/Models/Http/ErrorResponse.cs +++ b/Timeline/Models/Http/ErrorResponse.cs @@ -1,7 +1,7 @@  -using static TimelineApp.Resources.Messages; +using static Timeline.Resources.Messages; -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { public static class ErrorResponse diff --git a/Timeline/Models/Http/Timeline.cs b/Timeline/Models/Http/Timeline.cs index 637a775d..55c3a3bf 100644 --- a/Timeline/Models/Http/Timeline.cs +++ b/Timeline/Models/Http/Timeline.cs @@ -4,9 +4,9 @@ using Microsoft.AspNetCore.Mvc.Infrastructure; using Microsoft.AspNetCore.Mvc.Routing; using System; using System.Collections.Generic; -using TimelineApp.Controllers; +using Timeline.Controllers; -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { public class TimelinePostContentInfo { diff --git a/Timeline/Models/Http/TimelineController.cs b/Timeline/Models/Http/TimelineController.cs index b389c549..ce5f3b98 100644 --- a/Timeline/Models/Http/TimelineController.cs +++ b/Timeline/Models/Http/TimelineController.cs @@ -1,8 +1,8 @@ using System; using System.ComponentModel.DataAnnotations; -using TimelineApp.Models.Validation; +using Timeline.Models.Validation; -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { public class TimelinePostCreateRequestContent { diff --git a/Timeline/Models/Http/TokenController.cs b/Timeline/Models/Http/TokenController.cs index 3376fb61..ea8b59ed 100644 --- a/Timeline/Models/Http/TokenController.cs +++ b/Timeline/Models/Http/TokenController.cs @@ -1,6 +1,6 @@ using System.ComponentModel.DataAnnotations; -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { public class CreateTokenRequest { diff --git a/Timeline/Models/Http/UserController.cs b/Timeline/Models/Http/UserController.cs index c024c757..e4c95cbd 100644 --- a/Timeline/Models/Http/UserController.cs +++ b/Timeline/Models/Http/UserController.cs @@ -1,9 +1,9 @@ using AutoMapper; using System.ComponentModel.DataAnnotations; -using TimelineApp.Models.Validation; -using TimelineApp.Services; +using Timeline.Models.Validation; +using Timeline.Services; -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { public class UserPatchRequest { diff --git a/Timeline/Models/Http/UserInfo.cs b/Timeline/Models/Http/UserInfo.cs index fcbbe7c9..4f887549 100644 --- a/Timeline/Models/Http/UserInfo.cs +++ b/Timeline/Models/Http/UserInfo.cs @@ -3,9 +3,9 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Infrastructure; using Microsoft.AspNetCore.Mvc.Routing; using System; -using TimelineApp.Controllers; +using Timeline.Controllers; -namespace TimelineApp.Models.Http +namespace Timeline.Models.Http { public class UserInfo { diff --git a/Timeline/Models/Timeline.cs b/Timeline/Models/Timeline.cs index 52f38e42..e2ff525e 100644 --- a/Timeline/Models/Timeline.cs +++ b/Timeline/Models/Timeline.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace TimelineApp.Models +namespace Timeline.Models { public enum TimelineVisibility { diff --git a/Timeline/Models/User.cs b/Timeline/Models/User.cs index 3b88a1b3..37777eba 100644 --- a/Timeline/Models/User.cs +++ b/Timeline/Models/User.cs @@ -1,4 +1,4 @@ -namespace TimelineApp.Models +namespace Timeline.Models { public class User { diff --git a/Timeline/Models/Validation/NameValidator.cs b/Timeline/Models/Validation/NameValidator.cs index cf276309..dec2b872 100644 --- a/Timeline/Models/Validation/NameValidator.cs +++ b/Timeline/Models/Validation/NameValidator.cs @@ -1,7 +1,7 @@ using System.Linq; -using static TimelineApp.Resources.Models.Validation.NameValidator; +using static Timeline.Resources.Models.Validation.NameValidator; -namespace TimelineApp.Models.Validation +namespace Timeline.Models.Validation { public class NameValidator : Validator { diff --git a/Timeline/Models/Validation/NicknameValidator.cs b/Timeline/Models/Validation/NicknameValidator.cs index cef80b9f..1d6ab163 100644 --- a/Timeline/Models/Validation/NicknameValidator.cs +++ b/Timeline/Models/Validation/NicknameValidator.cs @@ -1,7 +1,7 @@ using System; -using static TimelineApp.Resources.Models.Validation.NicknameValidator; +using static Timeline.Resources.Models.Validation.NicknameValidator; -namespace TimelineApp.Models.Validation +namespace Timeline.Models.Validation { public class NicknameValidator : Validator { diff --git a/Timeline/Models/Validation/TimelineNameValidator.cs b/Timeline/Models/Validation/TimelineNameValidator.cs index 68110466..f1ab54e8 100644 --- a/Timeline/Models/Validation/TimelineNameValidator.cs +++ b/Timeline/Models/Validation/TimelineNameValidator.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Models.Validation +namespace Timeline.Models.Validation { public class TimelineNameValidator : NameValidator { diff --git a/Timeline/Models/Validation/UsernameValidator.cs b/Timeline/Models/Validation/UsernameValidator.cs index bc0a9fe4..87bbf85f 100644 --- a/Timeline/Models/Validation/UsernameValidator.cs +++ b/Timeline/Models/Validation/UsernameValidator.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Models.Validation +namespace Timeline.Models.Validation { public class UsernameValidator : NameValidator { diff --git a/Timeline/Models/Validation/Validator.cs b/Timeline/Models/Validation/Validator.cs index 2c61705e..ead7dbef 100644 --- a/Timeline/Models/Validation/Validator.cs +++ b/Timeline/Models/Validation/Validator.cs @@ -2,10 +2,10 @@ using Microsoft.Extensions.Localization; using System; using System.ComponentModel.DataAnnotations; -using TimelineApp.Helpers; -using static TimelineApp.Resources.Models.Validation.Validator; +using Timeline.Helpers; +using static Timeline.Resources.Models.Validation.Validator; -namespace TimelineApp.Models.Validation +namespace Timeline.Models.Validation { /// /// A validator to validate value. diff --git a/Timeline/Program.cs b/Timeline/Program.cs index 70c67d87..c49f74b0 100644 --- a/Timeline/Program.cs +++ b/Timeline/Program.cs @@ -4,11 +4,11 @@ using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using System.Resources; -using TimelineApp.Entities; +using Timeline.Entities; [assembly: NeutralResourcesLanguage("en")] -namespace TimelineApp +namespace Timeline { public static class Program { diff --git a/Timeline/Resources/Authentication/AuthHandler.Designer.cs b/Timeline/Resources/Authentication/AuthHandler.Designer.cs index 6005e2cd..fd4540ea 100644 --- a/Timeline/Resources/Authentication/AuthHandler.Designer.cs +++ b/Timeline/Resources/Authentication/AuthHandler.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Authentication { +namespace Timeline.Resources.Authentication { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Authentication { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Authentication.AuthHandler", typeof(AuthHandler).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Authentication.AuthHandler", typeof(AuthHandler).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Controllers/ControllerAuthExtensions.Designer.cs b/Timeline/Resources/Controllers/ControllerAuthExtensions.Designer.cs index 019699d9..70a1d605 100644 --- a/Timeline/Resources/Controllers/ControllerAuthExtensions.Designer.cs +++ b/Timeline/Resources/Controllers/ControllerAuthExtensions.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Controllers { +namespace Timeline.Resources.Controllers { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Controllers { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Controllers.ControllerAuthExtensions", typeof(ControllerAuthExtensions).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Controllers.ControllerAuthExtensions", typeof(ControllerAuthExtensions).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Controllers/TimelineController.Designer.cs b/Timeline/Resources/Controllers/TimelineController.Designer.cs index 0560dd08..ae6414e6 100644 --- a/Timeline/Resources/Controllers/TimelineController.Designer.cs +++ b/Timeline/Resources/Controllers/TimelineController.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Controllers { +namespace Timeline.Resources.Controllers { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Controllers { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Controllers.TimelineController", typeof(TimelineController).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Controllers.TimelineController", typeof(TimelineController).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Controllers/TokenController.Designer.cs b/Timeline/Resources/Controllers/TokenController.Designer.cs index a4ea9657..a7c2864b 100644 --- a/Timeline/Resources/Controllers/TokenController.Designer.cs +++ b/Timeline/Resources/Controllers/TokenController.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Controllers { +namespace Timeline.Resources.Controllers { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Controllers { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Controllers.TokenController", typeof(TokenController).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Controllers.TokenController", typeof(TokenController).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Controllers/UserAvatarController.Designer.cs b/Timeline/Resources/Controllers/UserAvatarController.Designer.cs index 0165c4f0..e6eeb1e8 100644 --- a/Timeline/Resources/Controllers/UserAvatarController.Designer.cs +++ b/Timeline/Resources/Controllers/UserAvatarController.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Controllers { +namespace Timeline.Resources.Controllers { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Controllers { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Controllers.UserAvatarController", typeof(UserAvatarController).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Controllers.UserAvatarController", typeof(UserAvatarController).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Controllers/UserController.Designer.cs b/Timeline/Resources/Controllers/UserController.Designer.cs index 277b85e0..c8067614 100644 --- a/Timeline/Resources/Controllers/UserController.Designer.cs +++ b/Timeline/Resources/Controllers/UserController.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Controllers { +namespace Timeline.Resources.Controllers { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Controllers { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Controllers.UserController", typeof(UserController).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Controllers.UserController", typeof(UserController).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Filters.Designer.cs b/Timeline/Resources/Filters.Designer.cs index 3e29398d..dedfe498 100644 --- a/Timeline/Resources/Filters.Designer.cs +++ b/Timeline/Resources/Filters.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources { +namespace Timeline.Resources { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Filters", typeof(Filters).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Filters", typeof(Filters).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Messages.Designer.cs b/Timeline/Resources/Messages.Designer.cs index d85f5399..4123cb8b 100644 --- a/Timeline/Resources/Messages.Designer.cs +++ b/Timeline/Resources/Messages.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources { +namespace Timeline.Resources { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Messages", typeof(Messages).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Messages", typeof(Messages).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Models/Http/Common.Designer.cs b/Timeline/Resources/Models/Http/Common.Designer.cs index fbbdeeca..5165463e 100644 --- a/Timeline/Resources/Models/Http/Common.Designer.cs +++ b/Timeline/Resources/Models/Http/Common.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Models.Http { +namespace Timeline.Resources.Models.Http { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Models.Http { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Models.Http.Common", typeof(Common).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Models.Http.Common", typeof(Common).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Models/Validation/NameValidator.Designer.cs b/Timeline/Resources/Models/Validation/NameValidator.Designer.cs index af8ceeb7..5b869226 100644 --- a/Timeline/Resources/Models/Validation/NameValidator.Designer.cs +++ b/Timeline/Resources/Models/Validation/NameValidator.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Models.Validation { +namespace Timeline.Resources.Models.Validation { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Models.Validation { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Models.Validation.NameValidator", typeof(NameValidator).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Models.Validation.NameValidator", typeof(NameValidator).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Models/Validation/NicknameValidator.Designer.cs b/Timeline/Resources/Models/Validation/NicknameValidator.Designer.cs index 04d616b8..522f305a 100644 --- a/Timeline/Resources/Models/Validation/NicknameValidator.Designer.cs +++ b/Timeline/Resources/Models/Validation/NicknameValidator.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Models.Validation { +namespace Timeline.Resources.Models.Validation { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Models.Validation { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Models.Validation.NicknameValidator", typeof(NicknameValidator).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Models.Validation.NicknameValidator", typeof(NicknameValidator).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Models/Validation/Validator.Designer.cs b/Timeline/Resources/Models/Validation/Validator.Designer.cs index 442c874b..74d4c169 100644 --- a/Timeline/Resources/Models/Validation/Validator.Designer.cs +++ b/Timeline/Resources/Models/Validation/Validator.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Models.Validation { +namespace Timeline.Resources.Models.Validation { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Models.Validation { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Models.Validation.Validator", typeof(Validator).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Models.Validation.Validator", typeof(Validator).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Services/DataManager.Designer.cs b/Timeline/Resources/Services/DataManager.Designer.cs index e5d5539a..0872059a 100644 --- a/Timeline/Resources/Services/DataManager.Designer.cs +++ b/Timeline/Resources/Services/DataManager.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Services { +namespace Timeline.Resources.Services { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Services { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Services.DataManager", typeof(DataManager).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Services.DataManager", typeof(DataManager).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Services/Exception.Designer.cs b/Timeline/Resources/Services/Exception.Designer.cs index 2fd350f9..0c721d92 100644 --- a/Timeline/Resources/Services/Exception.Designer.cs +++ b/Timeline/Resources/Services/Exception.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Services { +namespace Timeline.Resources.Services { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Services { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Services.Exception", typeof(Exception).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Services.Exception", typeof(Exception).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Services/TimelineService.Designer.cs b/Timeline/Resources/Services/TimelineService.Designer.cs index 65f98577..4c3de1cd 100644 --- a/Timeline/Resources/Services/TimelineService.Designer.cs +++ b/Timeline/Resources/Services/TimelineService.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Services { +namespace Timeline.Resources.Services { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Services { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Services.TimelineService", typeof(TimelineService).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Services.TimelineService", typeof(TimelineService).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Services/UserAvatarService.Designer.cs b/Timeline/Resources/Services/UserAvatarService.Designer.cs index 1bed55f3..c72d4215 100644 --- a/Timeline/Resources/Services/UserAvatarService.Designer.cs +++ b/Timeline/Resources/Services/UserAvatarService.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Services { +namespace Timeline.Resources.Services { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Services { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Services.UserAvatarService", typeof(UserAvatarService).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Services.UserAvatarService", typeof(UserAvatarService).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Services/UserService.Designer.cs b/Timeline/Resources/Services/UserService.Designer.cs index 73cd7bcd..cdf7f390 100644 --- a/Timeline/Resources/Services/UserService.Designer.cs +++ b/Timeline/Resources/Services/UserService.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Services { +namespace Timeline.Resources.Services { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Services { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Services.UserService", typeof(UserService).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Services.UserService", typeof(UserService).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Resources/Services/UserTokenService.Designer.cs b/Timeline/Resources/Services/UserTokenService.Designer.cs index 6cdca6a9..3c3c7e41 100644 --- a/Timeline/Resources/Services/UserTokenService.Designer.cs +++ b/Timeline/Resources/Services/UserTokenService.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimelineApp.Resources.Services { +namespace Timeline.Resources.Services { using System; @@ -39,7 +39,7 @@ namespace TimelineApp.Resources.Services { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimelineApp.Resources.Services.UserTokenService", typeof(UserTokenService).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Services.UserTokenService", typeof(UserTokenService).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Timeline/Services/BadPasswordException.cs b/Timeline/Services/BadPasswordException.cs index 93251055..f609371d 100644 --- a/Timeline/Services/BadPasswordException.cs +++ b/Timeline/Services/BadPasswordException.cs @@ -1,7 +1,7 @@ using System; -using TimelineApp.Helpers; +using Timeline.Helpers; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] public class BadPasswordException : Exception diff --git a/Timeline/Services/Clock.cs b/Timeline/Services/Clock.cs index 68441e92..0499c0c6 100644 --- a/Timeline/Services/Clock.cs +++ b/Timeline/Services/Clock.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -namespace TimelineApp.Services +namespace Timeline.Services { /// /// Convenient for unit test. diff --git a/Timeline/Services/ConflictException.cs b/Timeline/Services/ConflictException.cs index be9ec2c0..6ede183a 100644 --- a/Timeline/Services/ConflictException.cs +++ b/Timeline/Services/ConflictException.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Services +namespace Timeline.Services { /// /// Thrown when a resource already exists and conflicts with the given resource. diff --git a/Timeline/Services/DataManager.cs b/Timeline/Services/DataManager.cs index a4241c1b..d447b0d5 100644 --- a/Timeline/Services/DataManager.cs +++ b/Timeline/Services/DataManager.cs @@ -2,9 +2,9 @@ using System; using System.Linq; using System.Threading.Tasks; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Services +namespace Timeline.Services { /// /// A data manager controlling data. diff --git a/Timeline/Services/DatabaseCorruptedException.cs b/Timeline/Services/DatabaseCorruptedException.cs index f5bd0c85..9988e0ad 100644 --- a/Timeline/Services/DatabaseCorruptedException.cs +++ b/Timeline/Services/DatabaseCorruptedException.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] public class DatabaseCorruptedException : Exception diff --git a/Timeline/Services/ETagGenerator.cs b/Timeline/Services/ETagGenerator.cs index b7efd037..d328ea20 100644 --- a/Timeline/Services/ETagGenerator.cs +++ b/Timeline/Services/ETagGenerator.cs @@ -2,7 +2,7 @@ using System.Security.Cryptography; using System.Threading.Tasks; -namespace TimelineApp.Services +namespace Timeline.Services { public interface IETagGenerator { diff --git a/Timeline/Services/ImageException.cs b/Timeline/Services/ImageException.cs index f3f3b010..c6126aa3 100644 --- a/Timeline/Services/ImageException.cs +++ b/Timeline/Services/ImageException.cs @@ -1,7 +1,7 @@ using System; using System.Globalization; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] public class ImageException : Exception diff --git a/Timeline/Services/ImageValidator.cs b/Timeline/Services/ImageValidator.cs index f10bb4d0..c331d912 100644 --- a/Timeline/Services/ImageValidator.cs +++ b/Timeline/Services/ImageValidator.cs @@ -4,7 +4,7 @@ using System; using System.Linq; using System.Threading.Tasks; -namespace TimelineApp.Services +namespace Timeline.Services { public interface IImageValidator { diff --git a/Timeline/Services/JwtUserTokenBadFormatException.cs b/Timeline/Services/JwtUserTokenBadFormatException.cs index 81450486..c528c3e3 100644 --- a/Timeline/Services/JwtUserTokenBadFormatException.cs +++ b/Timeline/Services/JwtUserTokenBadFormatException.cs @@ -1,8 +1,8 @@ using System; using System.Globalization; -using static TimelineApp.Resources.Services.Exception; +using static Timeline.Resources.Services.Exception; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] public class JwtUserTokenBadFormatException : UserTokenBadFormatException diff --git a/Timeline/Services/PasswordBadFormatException.cs b/Timeline/Services/PasswordBadFormatException.cs index 4db52092..2029ebb4 100644 --- a/Timeline/Services/PasswordBadFormatException.cs +++ b/Timeline/Services/PasswordBadFormatException.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] diff --git a/Timeline/Services/PasswordService.cs b/Timeline/Services/PasswordService.cs index b08fe14d..e04a861b 100644 --- a/Timeline/Services/PasswordService.cs +++ b/Timeline/Services/PasswordService.cs @@ -3,7 +3,7 @@ using System; using System.Runtime.CompilerServices; using System.Security.Cryptography; -namespace TimelineApp.Services +namespace Timeline.Services { /// /// Hashed password is of bad format. diff --git a/Timeline/Services/PathProvider.cs b/Timeline/Services/PathProvider.cs index 79f309a1..15e66972 100644 --- a/Timeline/Services/PathProvider.cs +++ b/Timeline/Services/PathProvider.cs @@ -5,7 +5,7 @@ using System.IO; using System.Linq; using System.Threading.Tasks; -namespace TimelineApp.Services +namespace Timeline.Services { public interface IPathProvider { diff --git a/Timeline/Services/TimelineNotExistException.cs b/Timeline/Services/TimelineNotExistException.cs index b5bb0580..6dfd0bab 100644 --- a/Timeline/Services/TimelineNotExistException.cs +++ b/Timeline/Services/TimelineNotExistException.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] public class TimelineNotExistException : Exception diff --git a/Timeline/Services/TimelinePostNotExistException.cs b/Timeline/Services/TimelinePostNotExistException.cs index 488bfe2b..c542e63e 100644 --- a/Timeline/Services/TimelinePostNotExistException.cs +++ b/Timeline/Services/TimelinePostNotExistException.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] public class TimelinePostNotExistException : Exception diff --git a/Timeline/Services/TimelineService.cs b/Timeline/Services/TimelineService.cs index 8c1e62d4..1bccb855 100644 --- a/Timeline/Services/TimelineService.cs +++ b/Timeline/Services/TimelineService.cs @@ -6,12 +6,12 @@ using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Threading.Tasks; -using TimelineApp.Entities; -using TimelineApp.Models; -using TimelineApp.Models.Validation; -using static TimelineApp.Resources.Services.TimelineService; +using Timeline.Entities; +using Timeline.Models; +using Timeline.Models.Validation; +using static Timeline.Resources.Services.TimelineService; -namespace TimelineApp.Services +namespace Timeline.Services { public enum TimelineUserRelationshipType { @@ -67,7 +67,7 @@ namespace TimelineApp.Services /// Thrown when is null. /// See remarks of . /// See remarks of . - Task GetTimeline(string name); + Task GetTimeline(string name); /// /// Set the properties of a timeline. @@ -252,7 +252,7 @@ namespace TimelineApp.Services /// /// If user with related user id does not exist, empty list will be returned. /// - Task> GetTimelines(TimelineUserRelationship? relate = null, List? visibility = null); + Task> GetTimelines(TimelineUserRelationship? relate = null, List? visibility = null); /// /// Create a timeline. @@ -264,7 +264,7 @@ namespace TimelineApp.Services /// Thrown when timeline name is invalid. /// Thrown when the timeline already exists. /// Thrown when the owner user does not exist. - Task CreateTimeline(string name, long owner); + Task CreateTimeline(string name, long owner); /// /// Delete a timeline. @@ -334,7 +334,7 @@ namespace TimelineApp.Services /// protected abstract Task FindTimelineId(string name); - public async Task GetTimeline(string name) + public async Task GetTimeline(string name) { if (name == null) throw new ArgumentNullException(nameof(name)); @@ -353,7 +353,7 @@ namespace TimelineApp.Services members.Add(await UserService.GetUserById(memberEntity.UserId)); } - return new Timeline + return new Models.Timeline { Name = timelineEntity.Name ?? ("@" + owner.Username), Description = timelineEntity.Description ?? "", @@ -849,7 +849,7 @@ namespace TimelineApp.Services } } - public async Task> GetTimelines(TimelineUserRelationship? relate = null, List? visibility = null) + public async Task> GetTimelines(TimelineUserRelationship? relate = null, List? visibility = null) { List entities; @@ -883,12 +883,12 @@ namespace TimelineApp.Services } } - var result = new List(); + var result = new List(); foreach (var entity in entities) { var owner = await _userService.GetUserById(entity.OwnerId); - var timeline = new Timeline + var timeline = new Models.Timeline { Name = entity.Name ?? ("@" + owner.Username), Description = entity.Description ?? "", @@ -908,7 +908,7 @@ namespace TimelineApp.Services return result; } - public async Task CreateTimeline(string name, long owner) + public async Task CreateTimeline(string name, long owner) { if (name == null) throw new ArgumentNullException(nameof(name)); @@ -934,7 +934,7 @@ namespace TimelineApp.Services _database.Timelines.Add(newEntity); await _database.SaveChangesAsync(); - return new Timeline + return new Models.Timeline { Name = name, Description = "", @@ -978,7 +978,7 @@ namespace TimelineApp.Services } } - public Task GetTimeline(string name) + public Task GetTimeline(string name) { var s = BranchName(name, out var realName); return s.GetTimeline(realName); diff --git a/Timeline/Services/UserAvatarService.cs b/Timeline/Services/UserAvatarService.cs index 5f2ce4ed..1b1be698 100644 --- a/Timeline/Services/UserAvatarService.cs +++ b/Timeline/Services/UserAvatarService.cs @@ -6,10 +6,10 @@ using System; using System.IO; using System.Linq; using System.Threading.Tasks; -using TimelineApp.Entities; -using TimelineApp.Helpers; +using Timeline.Entities; +using Timeline.Helpers; -namespace TimelineApp.Services +namespace Timeline.Services { public class Avatar { diff --git a/Timeline/Services/UserNotExistException.cs b/Timeline/Services/UserNotExistException.cs index b51378ed..fd0b5ecf 100644 --- a/Timeline/Services/UserNotExistException.cs +++ b/Timeline/Services/UserNotExistException.cs @@ -1,7 +1,7 @@ using System; -using TimelineApp.Helpers; +using Timeline.Helpers; -namespace TimelineApp.Services +namespace Timeline.Services { /// /// The user requested does not exist. diff --git a/Timeline/Services/UserRoleConvert.cs b/Timeline/Services/UserRoleConvert.cs index 78c52ae3..f27ee1bb 100644 --- a/Timeline/Services/UserRoleConvert.cs +++ b/Timeline/Services/UserRoleConvert.cs @@ -1,9 +1,9 @@ using System; using System.Collections.Generic; using System.Linq; -using TimelineApp.Entities; +using Timeline.Entities; -namespace TimelineApp.Services +namespace Timeline.Services { public static class UserRoleConvert { diff --git a/Timeline/Services/UserService.cs b/Timeline/Services/UserService.cs index 3279d2bd..e0a5ab50 100644 --- a/Timeline/Services/UserService.cs +++ b/Timeline/Services/UserService.cs @@ -4,13 +4,13 @@ using System; using System.Globalization; using System.Linq; using System.Threading.Tasks; -using TimelineApp.Entities; -using TimelineApp.Helpers; -using TimelineApp.Models; -using TimelineApp.Models.Validation; -using static TimelineApp.Resources.Services.UserService; +using Timeline.Entities; +using Timeline.Helpers; +using Timeline.Models; +using Timeline.Models.Validation; +using static Timeline.Resources.Services.UserService; -namespace TimelineApp.Services +namespace Timeline.Services { public interface IUserService { diff --git a/Timeline/Services/UserTokenException.cs b/Timeline/Services/UserTokenException.cs index 99d26dec..ed0bae1a 100644 --- a/Timeline/Services/UserTokenException.cs +++ b/Timeline/Services/UserTokenException.cs @@ -1,6 +1,6 @@ using System; -namespace TimelineApp.Services +namespace Timeline.Services { [Serializable] diff --git a/Timeline/Services/UserTokenManager.cs b/Timeline/Services/UserTokenManager.cs index 4a044353..6decf8f9 100644 --- a/Timeline/Services/UserTokenManager.cs +++ b/Timeline/Services/UserTokenManager.cs @@ -1,9 +1,9 @@ using Microsoft.Extensions.Logging; using System; using System.Threading.Tasks; -using TimelineApp.Models; +using Timeline.Models; -namespace TimelineApp.Services +namespace Timeline.Services { public class UserTokenCreateResult { diff --git a/Timeline/Services/UserTokenService.cs b/Timeline/Services/UserTokenService.cs index 76501ce3..86f3a0f7 100644 --- a/Timeline/Services/UserTokenService.cs +++ b/Timeline/Services/UserTokenService.cs @@ -5,10 +5,10 @@ using System.Globalization; using System.IdentityModel.Tokens.Jwt; using System.Linq; using System.Security.Claims; -using TimelineApp.Configs; -using TimelineApp.Entities; +using Timeline.Configs; +using Timeline.Entities; -namespace TimelineApp.Services +namespace Timeline.Services { public class UserTokenInfo { diff --git a/Timeline/Startup.cs b/Timeline/Startup.cs index d34bee25..85822a14 100644 --- a/Timeline/Startup.cs +++ b/Timeline/Startup.cs @@ -10,15 +10,15 @@ using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Extensions.Hosting; using System; using System.Text.Json.Serialization; -using TimelineApp.Auth; -using TimelineApp.Configs; -using TimelineApp.Entities; -using TimelineApp.Formatters; -using TimelineApp.Helpers; -using TimelineApp.Models.Converters; -using TimelineApp.Services; - -namespace TimelineApp +using Timeline.Auth; +using Timeline.Configs; +using Timeline.Entities; +using Timeline.Formatters; +using Timeline.Helpers; +using Timeline.Models.Converters; +using Timeline.Services; + +namespace Timeline { [System.Diagnostics.CodeAnalysis.SuppressMessage("Performance", "CA1822:Mark members as static")] public class Startup diff --git a/Timeline/Timeline.csproj b/Timeline/Timeline.csproj new file mode 100644 index 00000000..c9da9a2e --- /dev/null +++ b/Timeline/Timeline.csproj @@ -0,0 +1,207 @@ + + + netcoreapp3.1 + 1f6fb74d-4277-4bc0-aeea-b1fc5ffb0b43 + crupest + + 8.0 + enable + + + + + PreserveNewest + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + True + True + AuthHandler.resx + + + True + True + ControllerAuthExtensions.resx + + + True + True + TimelineController.resx + + + True + True + TokenController.resx + + + True + True + UserAvatarController.resx + + + True + True + UserController.resx + + + True + True + Filters.resx + + + True + True + Messages.resx + + + True + True + Common.resx + + + True + True + NicknameValidator.resx + + + True + True + NameValidator.resx + + + True + True + Validator.resx + + + True + True + DataManager.resx + + + True + True + Exception.resx + + + True + True + TimelineService.resx + + + True + True + UserAvatarService.resx + + + True + True + UserService.resx + + + True + True + UserTokenService.resx + + + + + + ResXFileCodeGenerator + AuthHandler.Designer.cs + + + ResXFileCodeGenerator + ControllerAuthExtensions.Designer.cs + + + ResXFileCodeGenerator + TimelineController.Designer.cs + + + Designer + ResXFileCodeGenerator + TokenController.Designer.cs + + + ResXFileCodeGenerator + UserAvatarController.Designer.cs + + + ResXFileCodeGenerator + UserController.Designer.cs + + + ResXFileCodeGenerator + Filters.Designer.cs + + + ResXFileCodeGenerator + Messages.Designer.cs + + + ResXFileCodeGenerator + Common.Designer.cs + + + ResXFileCodeGenerator + NicknameValidator.Designer.cs + + + ResXFileCodeGenerator + NameValidator.Designer.cs + + + ResXFileCodeGenerator + Validator.Designer.cs + + + ResXFileCodeGenerator + DataManager.Designer.cs + + + ResXFileCodeGenerator + Exception.Designer.cs + + + ResXFileCodeGenerator + TimelineService.Designer.cs + + + ResXFileCodeGenerator + UserAvatarService.Designer.cs + + + ResXFileCodeGenerator + UserService.Designer.cs + + + ResXFileCodeGenerator + UserTokenService.Designer.cs + + + diff --git a/Timeline/TimelineApp.csproj b/Timeline/TimelineApp.csproj deleted file mode 100644 index 6fb88ae9..00000000 --- a/Timeline/TimelineApp.csproj +++ /dev/null @@ -1,211 +0,0 @@ - - - netcoreapp3.1 - 1f6fb74d-4277-4bc0-aeea-b1fc5ffb0b43 - crupest - - 8.0 - enable - - - - - - - - - PreserveNewest - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - - - - - True - True - AuthHandler.resx - - - True - True - ControllerAuthExtensions.resx - - - True - True - TimelineController.resx - - - True - True - TokenController.resx - - - True - True - UserAvatarController.resx - - - True - True - UserController.resx - - - True - True - Filters.resx - - - True - True - Messages.resx - - - True - True - Common.resx - - - True - True - NicknameValidator.resx - - - True - True - NameValidator.resx - - - True - True - Validator.resx - - - True - True - DataManager.resx - - - True - True - Exception.resx - - - True - True - TimelineService.resx - - - True - True - UserAvatarService.resx - - - True - True - UserService.resx - - - True - True - UserTokenService.resx - - - - - - ResXFileCodeGenerator - AuthHandler.Designer.cs - - - ResXFileCodeGenerator - ControllerAuthExtensions.Designer.cs - - - ResXFileCodeGenerator - TimelineController.Designer.cs - - - Designer - ResXFileCodeGenerator - TokenController.Designer.cs - - - ResXFileCodeGenerator - UserAvatarController.Designer.cs - - - ResXFileCodeGenerator - UserController.Designer.cs - - - ResXFileCodeGenerator - Filters.Designer.cs - - - ResXFileCodeGenerator - Messages.Designer.cs - - - ResXFileCodeGenerator - Common.Designer.cs - - - ResXFileCodeGenerator - NicknameValidator.Designer.cs - - - ResXFileCodeGenerator - NameValidator.Designer.cs - - - ResXFileCodeGenerator - Validator.Designer.cs - - - ResXFileCodeGenerator - DataManager.Designer.cs - - - ResXFileCodeGenerator - Exception.Designer.cs - - - ResXFileCodeGenerator - TimelineService.Designer.cs - - - ResXFileCodeGenerator - UserAvatarService.Designer.cs - - - ResXFileCodeGenerator - UserService.Designer.cs - - - ResXFileCodeGenerator - UserTokenService.Designer.cs - - - -- cgit v1.2.3 From 5eaacedda31da86116f25158bd07e5ad8954e7b2 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 10 Mar 2020 19:37:58 +0800 Subject: ... --- .../IntegratedTests/IntegratedTestBase.cs | 29 ++-- .../IntegratedTests/PersonalTimelineTest.cs | 153 +++++++++++---------- Timeline.Tests/IntegratedTests/TimelineTest.cs | 72 ++++++---- Timeline.Tests/IntegratedTests/TokenTest.cs | 1 + Timeline/Controllers/TimelineController.cs | 14 ++ Timeline/Controllers/UserController.cs | 1 + Timeline/Entities/TimelineEntity.cs | 2 +- Timeline/Models/Http/Timeline.cs | 24 ++-- Timeline/Models/Http/UserInfo.cs | 2 +- Timeline/Models/Timeline.cs | 17 ++- Timeline/Services/TimelineService.cs | 79 ++++++----- Timeline/Startup.cs | 3 +- 12 files changed, 242 insertions(+), 155 deletions(-) (limited to 'Timeline.Tests/IntegratedTests/TokenTest.cs') diff --git a/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs b/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs index dfde2ea5..66904629 100644 --- a/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs +++ b/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs @@ -1,10 +1,13 @@ -using AutoMapper; -using Microsoft.AspNetCore.Mvc.Testing; +using Microsoft.AspNetCore.Mvc.Testing; using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Net.Http; +using System.Text.Json; +using System.Text.Json.Serialization; using System.Threading.Tasks; +using Timeline.Models; +using Timeline.Models.Converters; using Timeline.Models.Http; using Timeline.Services; using Timeline.Tests.Helpers; @@ -14,12 +17,6 @@ namespace Timeline.Tests.IntegratedTests { public abstract class IntegratedTestBase : IClassFixture>, IDisposable { - static IntegratedTestBase() - { - FluentAssertions.AssertionOptions.AssertEquivalencyUsing(options => - options.Excluding(m => m.RuntimeType == typeof(UserInfoLinks))); - } - protected TestApplication TestApp { get; } protected WebApplicationFactory Factory => TestApp.Factory; @@ -63,12 +60,22 @@ namespace Timeline.Tests.IntegratedTests var userInfoList = new List(); var userService = scope.ServiceProvider.GetRequiredService(); - var mapper = scope.ServiceProvider.GetRequiredService(); - foreach (var user in users) { userService.CreateUser(user).Wait(); - userInfoList.Add(mapper.Map(user)); + } + + using var client = CreateDefaultClient().Result; + var options = new JsonSerializerOptions + { + PropertyNamingPolicy = JsonNamingPolicy.CamelCase + }; + options.Converters.Add(new JsonStringEnumConverter()); + options.Converters.Add(new JsonDateTimeConverter()); + foreach (var user in users) + { + var s = client.GetStringAsync($"/users/{user.Username}").Result; + userInfoList.Add(JsonSerializer.Deserialize(s, options)); } UserInfos = userInfoList; diff --git a/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs b/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs index 7d0a68e8..aa37e898 100644 --- a/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs +++ b/Timeline.Tests/IntegratedTests/PersonalTimelineTest.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; +using Timeline.Models; using Timeline.Models.Http; using Timeline.Tests.Helpers; using Xunit; @@ -23,7 +24,7 @@ namespace Timeline.Tests.IntegratedTests public async Task TimelineGet_Should_Work() { using var client = await CreateDefaultClient(); - var res = await client.GetAsync("users/user1/timeline"); + var res = await client.GetAsync("timelines/@user1"); var body = res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which; body.Owner.Should().BeEquivalentTo(UserInfos[1]); @@ -37,31 +38,31 @@ namespace Timeline.Tests.IntegratedTests { using var client = await CreateClientAsAdministrator(); { - var res = await client.GetAsync("users/user!!!/timeline"); + var res = await client.GetAsync("timelines/@user!!!"); res.Should().BeInvalidModel(); } { - var res = await client.PatchAsJsonAsync("users/user!!!/timeline", new TimelinePatchRequest { }); + var res = await client.PatchAsJsonAsync("timelines/@user!!!", new TimelinePatchRequest { }); res.Should().BeInvalidModel(); } { - var res = await client.PutAsync("users/user!!!/timeline/members/user1", null); + var res = await client.PutAsync("timelines/@user!!!/members/user1", null); res.Should().BeInvalidModel(); } { - var res = await client.DeleteAsync("users/user!!!/timeline/members/user1"); + var res = await client.DeleteAsync("timelines/@user!!!/members/user1"); res.Should().BeInvalidModel(); } { - var res = await client.GetAsync("users/user!!!/timeline/posts"); + var res = await client.GetAsync("timelines/@user!!!/posts"); res.Should().BeInvalidModel(); } { - var res = await client.PostAsJsonAsync("users/user!!!/timeline/posts", new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/@user!!!/posts", TimelineHelper.TextPostCreateRequest("aaa")); res.Should().BeInvalidModel(); } { - var res = await client.DeleteAsync("users/user!!!/timeline/posts/123"); + var res = await client.DeleteAsync("timelines/@user!!!/posts/123"); res.Should().BeInvalidModel(); } } @@ -71,31 +72,31 @@ namespace Timeline.Tests.IntegratedTests { using var client = await CreateClientAsAdministrator(); { - var res = await client.GetAsync("users/usernotexist/timeline"); + var res = await client.GetAsync("timelines/@usernotexist"); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.UserCommon.NotExist); } { - var res = await client.PatchAsJsonAsync("users/usernotexist/timeline", new TimelinePatchRequest { }); + var res = await client.PatchAsJsonAsync("timelines/@usernotexist", new TimelinePatchRequest { }); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.UserCommon.NotExist); } { - var res = await client.PutAsync("users/usernotexist/timeline/members/user1", null); + var res = await client.PutAsync("timelines/@usernotexist/members/user1", null); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.UserCommon.NotExist); } { - var res = await client.DeleteAsync("users/usernotexist/timeline/members/user1"); + var res = await client.DeleteAsync("timelines/@usernotexist/members/user1"); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.UserCommon.NotExist); } { - var res = await client.GetAsync("users/usernotexist/timeline/posts"); + var res = await client.GetAsync("timelines/@usernotexist/posts"); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.UserCommon.NotExist); } { - var res = await client.PostAsJsonAsync("users/usernotexist/timeline/posts", new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/@usernotexist/posts", TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.UserCommon.NotExist); } { - var res = await client.DeleteAsync("users/usernotexist/timeline/posts/123"); + var res = await client.DeleteAsync("timelines/@usernotexist/posts/123"); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.UserCommon.NotExist); } } @@ -107,7 +108,7 @@ namespace Timeline.Tests.IntegratedTests async Task AssertDescription(string description) { - var res = await client.GetAsync("users/user1/timeline"); + var res = await client.GetAsync("timelines/@user1"); var body = res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Description.Should().Be(description); @@ -117,21 +118,21 @@ namespace Timeline.Tests.IntegratedTests await AssertDescription(""); { - var res = await client.PatchAsJsonAsync("users/user1/timeline", + var res = await client.PatchAsJsonAsync("timelines/@user1", new TimelinePatchRequest { Description = mockDescription }); res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which.Description.Should().Be(mockDescription); await AssertDescription(mockDescription); } { - var res = await client.PatchAsJsonAsync("users/user1/timeline", + var res = await client.PatchAsJsonAsync("timelines/@user1", new TimelinePatchRequest { Description = null }); res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which.Description.Should().Be(mockDescription); await AssertDescription(mockDescription); } { - var res = await client.PatchAsJsonAsync("users/user1/timeline", + var res = await client.PatchAsJsonAsync("timelines/@user1", new TimelinePatchRequest { Description = "" }); res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which.Description.Should().Be(""); @@ -142,7 +143,7 @@ namespace Timeline.Tests.IntegratedTests [Fact] public async Task Member_Should_Work() { - const string getUrl = "users/user1/timeline"; + const string getUrl = "timelines/@user1"; using var client = await CreateClientAsUser(); async Task AssertMembers(IList members) @@ -163,23 +164,23 @@ namespace Timeline.Tests.IntegratedTests await AssertEmptyMembers(); { - var res = await client.PutAsync("/users/user1/timeline/members/usernotexist", null); + var res = await client.PutAsync("/timelines/@user1/members/usernotexist", null); res.Should().HaveStatusCode(400) .And.HaveCommonBody(ErrorCodes.TimelineCommon.MemberPut_NotExist); } await AssertEmptyMembers(); { - var res = await client.PutAsync("/users/user1/timeline/members/user2", null); + var res = await client.PutAsync("/timelines/@user1/members/user2", null); res.Should().HaveStatusCode(200); } await AssertMembers(new List { UserInfos[2] }); { - var res = await client.DeleteAsync("/users/user1/timeline/members/user2"); + var res = await client.DeleteAsync("/timelines/@user1/members/user2"); res.Should().BeDelete(true); } await AssertEmptyMembers(); { - var res = await client.DeleteAsync("/users/user1/timeline/members/users2"); + var res = await client.DeleteAsync("/timelines/@user1/members/users2"); res.Should().BeDelete(false); } await AssertEmptyMembers(); @@ -193,37 +194,37 @@ namespace Timeline.Tests.IntegratedTests { using var client = await CreateClientAs(userNumber); { - var res = await client.GetAsync("users/user1/timeline"); + var res = await client.GetAsync("timelines/@user1"); res.Should().HaveStatusCode(get); } { - var res = await client.PatchAsJsonAsync("users/user1/timeline", new TimelinePatchRequest { Description = "hahaha" }); + var res = await client.PatchAsJsonAsync("timelines/@user1", new TimelinePatchRequest { Description = "hahaha" }); res.Should().HaveStatusCode(opPatchUser); } { - var res = await client.PatchAsJsonAsync("users/admin/timeline", new TimelinePatchRequest { Description = "hahaha" }); + var res = await client.PatchAsJsonAsync("timelines/@admin", new TimelinePatchRequest { Description = "hahaha" }); res.Should().HaveStatusCode(opPatchAdmin); } { - var res = await client.PutAsync("users/user1/timeline/members/user2", null); + var res = await client.PutAsync("timelines/@user1/members/user2", null); res.Should().HaveStatusCode(opMemberUser); } { - var res = await client.DeleteAsync("users/user1/timeline/members/user2"); + var res = await client.DeleteAsync("timelines/@user1/members/user2"); res.Should().HaveStatusCode(opMemberUser); } { - var res = await client.PutAsync("users/admin/timeline/members/user2", null); + var res = await client.PutAsync("timelines/@admin/members/user2", null); res.Should().HaveStatusCode(opMemberAdmin); } { - var res = await client.DeleteAsync("users/admin/timeline/members/user2"); + var res = await client.DeleteAsync("timelines/@admin/members/user2"); res.Should().HaveStatusCode(opMemberAdmin); } } @@ -231,13 +232,13 @@ namespace Timeline.Tests.IntegratedTests [Fact] public async Task Visibility_Test() { - const string userUrl = "users/user1/timeline/posts"; - const string adminUrl = "users/admin/timeline/posts"; + const string userUrl = "timelines/@user1/posts"; + const string adminUrl = "timelines/@admin/posts"; { using var client = await CreateClientAsUser(); using var content = new StringContent(@"{""visibility"":""abcdefg""}", System.Text.Encoding.UTF8, System.Net.Mime.MediaTypeNames.Application.Json); - var res = await client.PatchAsync("users/user1/timeline", content); + var res = await client.PatchAsync("timelines/@user1", content); res.Should().BeInvalidModel(); } { // default visibility is registered @@ -257,7 +258,7 @@ namespace Timeline.Tests.IntegratedTests { // change visibility to public { using var client = await CreateClientAsUser(); - var res = await client.PatchAsJsonAsync("users/user1/timeline", + var res = await client.PatchAsJsonAsync("timelines/@user1", new TimelinePatchRequest { Visibility = TimelineVisibility.Public }); res.Should().HaveStatusCode(200); } @@ -272,12 +273,12 @@ namespace Timeline.Tests.IntegratedTests { using var client = await CreateClientAsAdministrator(); { - var res = await client.PatchAsJsonAsync("users/user1/timeline", + var res = await client.PatchAsJsonAsync("timelines/@user1", new TimelinePatchRequest { Visibility = TimelineVisibility.Private }); res.Should().HaveStatusCode(200); } { - var res = await client.PatchAsJsonAsync("users/admin/timeline", + var res = await client.PatchAsJsonAsync("timelines/@admin", new TimelinePatchRequest { Visibility = TimelineVisibility.Private }); res.Should().HaveStatusCode(200); } @@ -299,7 +300,7 @@ namespace Timeline.Tests.IntegratedTests } { // add member using var client = await CreateClientAsAdministrator(); - var res = await client.PutAsync("/users/admin/timeline/members/user1", null); + var res = await client.PutAsync("/timelines/@admin/members/user1", null); res.Should().HaveStatusCode(200); } { // now user can read admin's @@ -316,15 +317,15 @@ namespace Timeline.Tests.IntegratedTests { using (var client = await CreateClientAsUser()) { - var res = await client.PutAsync("users/user1/timeline/members/user2", null); + var res = await client.PutAsync("timelines/@user1/members/user2", null); res.Should().HaveStatusCode(200); } using (var client = await CreateDefaultClient()) { { // no auth should get 401 - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(401); } } @@ -332,13 +333,13 @@ namespace Timeline.Tests.IntegratedTests using (var client = await CreateClientAsUser()) { { // post self's - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(200); } { // post other not as a member should get 403 - var res = await client.PostAsJsonAsync("users/admin/timeline/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/@admin/posts", + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(403); } } @@ -346,8 +347,8 @@ namespace Timeline.Tests.IntegratedTests using (var client = await CreateClientAsAdministrator()) { { // post as admin - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(200); } } @@ -355,8 +356,8 @@ namespace Timeline.Tests.IntegratedTests using (var client = await CreateClientAs(2)) { { // post as member - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(200); } } @@ -368,8 +369,8 @@ namespace Timeline.Tests.IntegratedTests async Task CreatePost(int userNumber) { using var client = await CreateClientAs(userNumber); - var res = await client.PostAsJsonAsync($"users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync($"timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest("aaa")); return res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Id; @@ -378,53 +379,53 @@ namespace Timeline.Tests.IntegratedTests using (var client = await CreateClientAsUser()) { { - var res = await client.PutAsync("users/user1/timeline/members/user2", null); + var res = await client.PutAsync("timelines/@user1/members/user2", null); res.Should().HaveStatusCode(200); } { - var res = await client.PutAsync("users/user1/timeline/members/user3", null); + var res = await client.PutAsync("timelines/@user1/members/user3", null); res.Should().HaveStatusCode(200); } } { // no auth should get 401 using var client = await CreateDefaultClient(); - var res = await client.DeleteAsync("users/user1/timeline/posts/12"); + var res = await client.DeleteAsync("timelines/@user1/posts/12"); res.Should().HaveStatusCode(401); } { // self can delete self var postId = await CreatePost(1); using var client = await CreateClientAsUser(); - var res = await client.DeleteAsync($"users/user1/timeline/posts/{postId}"); + var res = await client.DeleteAsync($"timelines/@user1/posts/{postId}"); res.Should().HaveStatusCode(200); } { // admin can delete any var postId = await CreatePost(1); using var client = await CreateClientAsAdministrator(); - var res = await client.DeleteAsync($"users/user1/timeline/posts/{postId}"); + var res = await client.DeleteAsync($"timelines/@user1/posts/{postId}"); res.Should().HaveStatusCode(200); } { // owner can delete other var postId = await CreatePost(2); using var client = await CreateClientAsUser(); - var res = await client.DeleteAsync($"users/user1/timeline/posts/{postId}"); + var res = await client.DeleteAsync($"timelines/@user1/posts/{postId}"); res.Should().HaveStatusCode(200); } { // author can delete self var postId = await CreatePost(2); using var client = await CreateClientAs(2); - var res = await client.DeleteAsync($"users/user1/timeline/posts/{postId}"); + var res = await client.DeleteAsync($"timelines/@user1/posts/{postId}"); res.Should().HaveStatusCode(200); } { // otherwise is forbidden var postId = await CreatePost(2); using var client = await CreateClientAs(3); - var res = await client.DeleteAsync($"users/user1/timeline/posts/{postId}"); + var res = await client.DeleteAsync($"timelines/@user1/posts/{postId}"); res.Should().HaveStatusCode(403); } } @@ -435,31 +436,31 @@ namespace Timeline.Tests.IntegratedTests { using var client = await CreateClientAsUser(); { - var res = await client.GetAsync("users/user1/timeline/posts"); + var res = await client.GetAsync("timelines/@user1/posts"); res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Should().NotBeNull().And.BeEmpty(); } { - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = null }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest(null)); res.Should().BeInvalidModel(); } const string mockContent = "aaa"; TimelinePostInfo createRes; { - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = mockContent }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest(mockContent)); var body = res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which; body.Should().NotBeNull(); - body.Content.Should().Be(mockContent); + body.Content.Should().BeEquivalentTo(TimelineHelper.TextPostContent(mockContent)); body.Author.Should().BeEquivalentTo(UserInfos[1]); createRes = body; } { - var res = await client.GetAsync("users/user1/timeline/posts"); + var res = await client.GetAsync("timelines/@user1/posts"); res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Should().NotBeNull().And.BeEquivalentTo(createRes); @@ -468,33 +469,33 @@ namespace Timeline.Tests.IntegratedTests var mockTime2 = DateTime.Now.AddDays(-1); TimelinePostInfo createRes2; { - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = mockContent2, Time = mockTime2 }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest(mockContent2, mockTime2)); var body = res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which; body.Should().NotBeNull(); - body.Content.Should().Be(mockContent2); + body.Content.Should().BeEquivalentTo(TimelineHelper.TextPostContent(mockContent2)); body.Author.Should().BeEquivalentTo(UserInfos[1]); body.Time.Should().BeCloseTo(mockTime2, 1000); createRes2 = body; } { - var res = await client.GetAsync("users/user1/timeline/posts"); + var res = await client.GetAsync("timelines/@user1/posts"); res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Should().NotBeNull().And.BeEquivalentTo(createRes, createRes2); } { - var res = await client.DeleteAsync($"users/user1/timeline/posts/{createRes.Id}"); + var res = await client.DeleteAsync($"timelines/@user1/posts/{createRes.Id}"); res.Should().BeDelete(true); } { - var res = await client.DeleteAsync("users/user1/timeline/posts/30000"); + var res = await client.DeleteAsync("timelines/@user1/posts/30000"); res.Should().BeDelete(false); } { - var res = await client.GetAsync("users/user1/timeline/posts"); + var res = await client.GetAsync("timelines/@user1/posts"); res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Should().NotBeNull().And.BeEquivalentTo(createRes2); @@ -509,8 +510,8 @@ namespace Timeline.Tests.IntegratedTests async Task CreatePost(DateTime time) { - var res = await client.PostAsJsonAsync("users/user1/timeline/posts", - new TimelinePostCreateRequest { Content = "aaa", Time = time }); + var res = await client.PostAsJsonAsync("timelines/@user1/posts", + TimelineHelper.TextPostCreateRequest("aaa", time)); return res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Id; @@ -522,7 +523,7 @@ namespace Timeline.Tests.IntegratedTests var id2 = await CreatePost(now); { - var res = await client.GetAsync("users/user1/timeline/posts"); + var res = await client.GetAsync("timelines/@user1/posts"); res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Select(p => p.Id).Should().Equal(id1, id2, id0); diff --git a/Timeline.Tests/IntegratedTests/TimelineTest.cs b/Timeline.Tests/IntegratedTests/TimelineTest.cs index 14a0a59e..3fceb1d5 100644 --- a/Timeline.Tests/IntegratedTests/TimelineTest.cs +++ b/Timeline.Tests/IntegratedTests/TimelineTest.cs @@ -6,12 +6,38 @@ using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; +using Timeline.Models; using Timeline.Models.Http; using Timeline.Tests.Helpers; using Xunit; namespace Timeline.Tests.IntegratedTests { + public static class TimelineHelper + { + public static TimelinePostContentInfo TextPostContent(string text) + { + return new TimelinePostContentInfo + { + Type = "text", + Text = text + }; + } + + public static TimelinePostCreateRequest TextPostCreateRequest(string text, DateTime? time = null) + { + return new TimelinePostCreateRequest + { + Content = new TimelinePostCreateRequestContent + { + Type = "text", + Text = text + }, + Time = time + }; + } + } + public class TimelineTest : IntegratedTestBase { public TimelineTest(WebApplicationFactory factory) @@ -45,7 +71,7 @@ namespace Timeline.Tests.IntegratedTests var client = await CreateDefaultClient(); { - var res = await client.GetAsync("/users/user1/timeline"); + var res = await client.GetAsync("/timelines/@user1"); user1Timeline = res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which; } @@ -80,7 +106,7 @@ namespace Timeline.Tests.IntegratedTests var client = await CreateClientAsUser(); { - var res = await client.PutAsync("/users/user1/timeline/members/user3", null); + var res = await client.PutAsync("/timelines/@user1/members/user3", null); res.Should().HaveStatusCode(200); } @@ -90,7 +116,7 @@ namespace Timeline.Tests.IntegratedTests } { - var res = await client.PatchAsJsonAsync("/users/user1/timeline", new TimelinePatchRequest { Visibility = TimelineVisibility.Public }); + var res = await client.PatchAsJsonAsync("/timelines/@user1", new TimelinePatchRequest { Visibility = TimelineVisibility.Public }); res.Should().HaveStatusCode(200); } @@ -100,7 +126,7 @@ namespace Timeline.Tests.IntegratedTests } { - var res = await client.GetAsync("/users/user1/timeline"); + var res = await client.GetAsync("/timelines/@user1"); var timeline = res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which; testResultRelate.Add(timeline); @@ -123,7 +149,7 @@ namespace Timeline.Tests.IntegratedTests var client = await CreateClientAs(2); { - var res = await client.PutAsync("/users/user2/timeline/members/user3", null); + var res = await client.PutAsync("/timelines/@user2/members/user3", null); res.Should().HaveStatusCode(200); } @@ -133,7 +159,7 @@ namespace Timeline.Tests.IntegratedTests } { - var res = await client.PatchAsJsonAsync("/users/user2/timeline", new TimelinePatchRequest { Visibility = TimelineVisibility.Register }); + var res = await client.PatchAsJsonAsync("/timelines/@user2", new TimelinePatchRequest { Visibility = TimelineVisibility.Register }); res.Should().HaveStatusCode(200); } @@ -143,7 +169,7 @@ namespace Timeline.Tests.IntegratedTests } { - var res = await client.GetAsync("/users/user2/timeline"); + var res = await client.GetAsync("/timelines/@user2"); var timeline = res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which; testResultRelate.Add(timeline); @@ -165,7 +191,7 @@ namespace Timeline.Tests.IntegratedTests var client = await CreateClientAs(3); { - var res = await client.PatchAsJsonAsync("/users/user3/timeline", new TimelinePatchRequest { Visibility = TimelineVisibility.Private }); + var res = await client.PatchAsJsonAsync("/timelines/@user3", new TimelinePatchRequest { Visibility = TimelineVisibility.Private }); res.Should().HaveStatusCode(200); } @@ -175,7 +201,7 @@ namespace Timeline.Tests.IntegratedTests } { - var res = await client.GetAsync("/users/user3/timeline"); + var res = await client.GetAsync("/timelines/@user3"); var timeline = res.Should().HaveStatusCode(200) .And.HaveJsonBody().Which; testResultRelate.Add(timeline); @@ -396,7 +422,7 @@ namespace Timeline.Tests.IntegratedTests res.Should().BeInvalidModel(); } { - var res = await client.PostAsJsonAsync("timelines/aaa!!!/posts", new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/aaa!!!/posts", TimelineHelper.TextPostCreateRequest("aaa")); res.Should().BeInvalidModel(); } { @@ -430,7 +456,7 @@ namespace Timeline.Tests.IntegratedTests res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.TimelineCommon.NotExist); } { - var res = await client.PostAsJsonAsync("timelines/notexist/posts", new TimelinePostCreateRequest { Content = "aaa" }); + var res = await client.PostAsJsonAsync("timelines/notexist/posts", TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(404).And.HaveCommonBody(ErrorCodes.TimelineCommon.NotExist); } { @@ -673,7 +699,7 @@ namespace Timeline.Tests.IntegratedTests { { // no auth should get 401 var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(401); } } @@ -682,12 +708,12 @@ namespace Timeline.Tests.IntegratedTests { { // post self's var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(200); } { // post other not as a member should get 403 var res = await client.PostAsJsonAsync("timelines/t0/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(403); } } @@ -696,7 +722,7 @@ namespace Timeline.Tests.IntegratedTests { { // post as admin var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(200); } } @@ -705,7 +731,7 @@ namespace Timeline.Tests.IntegratedTests { { // post as member var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + TimelineHelper.TextPostCreateRequest("aaa")); res.Should().HaveStatusCode(200); } } @@ -720,7 +746,7 @@ namespace Timeline.Tests.IntegratedTests { using var client = await CreateClientAs(userNumber); var res = await client.PostAsJsonAsync($"timelines/t1/posts", - new TimelinePostCreateRequest { Content = "aaa" }); + TimelineHelper.TextPostCreateRequest("aaa")); return res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Id; @@ -795,19 +821,19 @@ namespace Timeline.Tests.IntegratedTests } { var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = null }); + TimelineHelper.TextPostCreateRequest(null)); res.Should().BeInvalidModel(); } const string mockContent = "aaa"; TimelinePostInfo createRes; { var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = mockContent }); + TimelineHelper.TextPostCreateRequest(mockContent)); var body = res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which; body.Should().NotBeNull(); - body.Content.Should().Be(mockContent); + body.Content.Should().BeEquivalentTo(TimelineHelper.TextPostContent(mockContent)); body.Author.Should().BeEquivalentTo(UserInfos[1]); createRes = body; } @@ -822,12 +848,12 @@ namespace Timeline.Tests.IntegratedTests TimelinePostInfo createRes2; { var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = mockContent2, Time = mockTime2 }); + TimelineHelper.TextPostCreateRequest(mockContent2, mockTime2)); var body = res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which; body.Should().NotBeNull(); - body.Content.Should().Be(mockContent2); + body.Content.Should().BeEquivalentTo(TimelineHelper.TextPostContent(mockContent2)); body.Author.Should().BeEquivalentTo(UserInfos[1]); body.Time.Should().BeCloseTo(mockTime2, 1000); createRes2 = body; @@ -865,7 +891,7 @@ namespace Timeline.Tests.IntegratedTests async Task CreatePost(DateTime time) { var res = await client.PostAsJsonAsync("timelines/t1/posts", - new TimelinePostCreateRequest { Content = "aaa", Time = time }); + TimelineHelper.TextPostCreateRequest("aaa", time)); return res.Should().HaveStatusCode(200) .And.HaveJsonBody() .Which.Id; diff --git a/Timeline.Tests/IntegratedTests/TokenTest.cs b/Timeline.Tests/IntegratedTests/TokenTest.cs index 928d546c..7b28746f 100644 --- a/Timeline.Tests/IntegratedTests/TokenTest.cs +++ b/Timeline.Tests/IntegratedTests/TokenTest.cs @@ -4,6 +4,7 @@ using Microsoft.Extensions.DependencyInjection; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; +using Timeline.Models; using Timeline.Models.Http; using Timeline.Services; using Timeline.Tests.Helpers; diff --git a/Timeline/Controllers/TimelineController.cs b/Timeline/Controllers/TimelineController.cs index 38fe7475..440b0d19 100644 --- a/Timeline/Controllers/TimelineController.cs +++ b/Timeline/Controllers/TimelineController.cs @@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; +using Microsoft.Net.Http.Headers; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; @@ -113,6 +114,19 @@ namespace Timeline.Controllers return result; } + // TODO: Make cache available. + [HttpGet("timelines/{name}/posts/{id}/data")] + public async Task>> PostDataGet([FromRoute][GeneralTimelineName] string name, [FromRoute] long id) + { + if (!this.IsAdministrator() && !await _service.HasReadPermission(name, this.GetOptionalUserId())) + { + return StatusCode(StatusCodes.Status403Forbidden, ErrorResponse.Common.Forbid()); + } + + var data = await _service.GetPostData(name, id); + return File(data.Data, data.Type, data.LastModified, new EntityTagHeaderValue(data.ETag)); + } + [HttpPost("timelines/{name}/posts")] [Authorize] public async Task> PostPost([FromRoute][GeneralTimelineName] string name, [FromBody] TimelinePostCreateRequest body) diff --git a/Timeline/Controllers/UserController.cs b/Timeline/Controllers/UserController.cs index a3e8d816..0bc8bcda 100644 --- a/Timeline/Controllers/UserController.cs +++ b/Timeline/Controllers/UserController.cs @@ -7,6 +7,7 @@ using System.Linq; using System.Threading.Tasks; using Timeline.Auth; using Timeline.Helpers; +using Timeline.Models; using Timeline.Models.Http; using Timeline.Models.Validation; using Timeline.Services; diff --git a/Timeline/Entities/TimelineEntity.cs b/Timeline/Entities/TimelineEntity.cs index 56b36d4e..3149d4c2 100644 --- a/Timeline/Entities/TimelineEntity.cs +++ b/Timeline/Entities/TimelineEntity.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -using Timeline.Models.Http; +using Timeline.Models; namespace Timeline.Entities { diff --git a/Timeline/Models/Http/Timeline.cs b/Timeline/Models/Http/Timeline.cs index 55c3a3bf..9e2aefd0 100644 --- a/Timeline/Models/Http/Timeline.cs +++ b/Timeline/Models/Http/Timeline.cs @@ -72,25 +72,27 @@ namespace Timeline.Models.Http } } - public class TimelinePostConverter : ITypeConverter + public class TimelinePostContentResolver : IValueResolver { private readonly IActionContextAccessor _actionContextAccessor; private readonly IUrlHelperFactory _urlHelperFactory; - public TimelinePostConverter(IActionContextAccessor actionContextAccessor, IUrlHelperFactory urlHelperFactory) + public TimelinePostContentResolver(IActionContextAccessor actionContextAccessor, IUrlHelperFactory urlHelperFactory) { _actionContextAccessor = actionContextAccessor; _urlHelperFactory = urlHelperFactory; } - public TimelinePostContentInfo Convert(ITimelinePostContent source, TimelinePostContentInfo destination, ResolutionContext context) + public TimelinePostContentInfo Resolve(TimelinePost source, TimelinePostInfo destination, TimelinePostContentInfo destMember, ResolutionContext context) { if (_actionContextAccessor.ActionContext == null) throw new InvalidOperationException("No action context, can't fill urls."); var urlHelper = _urlHelperFactory.GetUrlHelper(_actionContextAccessor.ActionContext); - if (source is TextTimelinePostContent textContent) + var sourceContent = source.Content; + + if (sourceContent is TextTimelinePostContent textContent) { return new TimelinePostContentInfo { @@ -98,14 +100,21 @@ namespace Timeline.Models.Http Text = textContent.Text }; } - else if (source is ImageTimelinePostContent imageContent) + else if (sourceContent is ImageTimelinePostContent imageContent) { return new TimelinePostContentInfo { Type = TimelinePostContentTypes.Image, - Url = urlHelper.ActionLink(action: "PostDataGet", nameof(TimelineController)[0..^nameof(Controller).Length], new { source.Name }) + Url = urlHelper.ActionLink( + action: nameof(TimelineController.PostDataGet), + controller: nameof(TimelineController)[0..^nameof(Controller).Length], + values: new { Name = source.TimelineName, Id = source.Id }) }; } + else + { + throw new InvalidOperationException("Unknown content type."); + } } } @@ -114,8 +123,7 @@ namespace Timeline.Models.Http public TimelineInfoAutoMapperProfile() { CreateMap().ForMember(u => u._links, opt => opt.MapFrom()); - CreateMap(); - CreateMap().ConvertUsing(); + CreateMap().ForMember(p => p.Content, opt => opt.MapFrom()); CreateMap(); } } diff --git a/Timeline/Models/Http/UserInfo.cs b/Timeline/Models/Http/UserInfo.cs index 4f887549..b4bf14c1 100644 --- a/Timeline/Models/Http/UserInfo.cs +++ b/Timeline/Models/Http/UserInfo.cs @@ -45,7 +45,7 @@ namespace Timeline.Models.Http { Self = urlHelper.ActionLink(nameof(UserController.Get), nameof(UserController)[0..^nameof(Controller).Length], new { destination.Username }), Avatar = urlHelper.ActionLink(nameof(UserAvatarController.Get), nameof(UserAvatarController)[0..^nameof(Controller).Length], new { destination.Username }), - Timeline = urlHelper.ActionLink(nameof(PersonalTimelineController.TimelineGet), nameof(PersonalTimelineController)[0..^nameof(Controller).Length], new { destination.Username }) + Timeline = urlHelper.ActionLink(nameof(TimelineController.TimelineGet), nameof(TimelineController)[0..^nameof(Controller).Length], new { Name = "@" + destination.Username }) }; return result; } diff --git a/Timeline/Models/Timeline.cs b/Timeline/Models/Timeline.cs index 6d4c924d..803a5c5c 100644 --- a/Timeline/Models/Timeline.cs +++ b/Timeline/Models/Timeline.cs @@ -48,11 +48,22 @@ namespace Timeline.Models public class TimelinePost { + public TimelinePost(long id, ITimelinePostContent content, DateTime time, User author, DateTime lastUpdated, string timelineName) + { + Id = id; + Content = content; + Time = time; + Author = author; + LastUpdated = lastUpdated; + TimelineName = timelineName; + } + public long Id { get; set; } - public ITimelinePostContent Content { get; set; } = default!; + public ITimelinePostContent Content { get; set; } public DateTime Time { get; set; } - public User Author { get; set; } = default!; - public DateTime LastUpdated { get; set; } = default!; + public User Author { get; set; } + public DateTime LastUpdated { get; set; } + public string TimelineName { get; set; } } #pragma warning disable CA1724 // Type names should not match namespaces diff --git a/Timeline/Services/TimelineService.cs b/Timeline/Services/TimelineService.cs index 1bccb855..3a5825ae 100644 --- a/Timeline/Services/TimelineService.cs +++ b/Timeline/Services/TimelineService.cs @@ -32,12 +32,14 @@ namespace Timeline.Services public long UserId { get; set; } } - public class DataWithType + public class PostData { #pragma warning disable CA1819 // Properties should not return arrays public byte[] Data { get; set; } = default!; #pragma warning restore CA1819 // Properties should not return arrays public string Type { get; set; } = default!; + public string ETag { get; set; } = default!; + public DateTime LastModified { get; set; } = default!; } /// @@ -103,7 +105,7 @@ namespace Timeline.Services /// /// Use this method to retrieve the image of image post. /// - Task GetPostData(string name, long postId); + Task GetPostData(string name, long postId); /// /// Create a new text post in timeline. @@ -334,6 +336,8 @@ namespace Timeline.Services /// protected abstract Task FindTimelineId(string name); + protected abstract string GenerateName(string name); + public async Task GetTimeline(string name) { if (name == null) @@ -355,7 +359,7 @@ namespace Timeline.Services return new Models.Timeline { - Name = timelineEntity.Name ?? ("@" + owner.Username), + Name = GenerateName(name), Description = timelineEntity.Description ?? "", Owner = owner, Visibility = timelineEntity.Visibility, @@ -387,19 +391,19 @@ namespace Timeline.Services _ => throw new DatabaseCorruptedException(string.Format(CultureInfo.InvariantCulture, ExceptionDatabaseUnknownContentType, type)) }; - posts.Add(new TimelinePost - { - Id = entity.LocalId, - Content = content, - Author = author, - Time = entity.Time, - LastUpdated = entity.LastUpdated - }); + posts.Add(new TimelinePost( + id: entity.LocalId, + content: content, + time: entity.Time, + author: author, + lastUpdated: entity.LastUpdated, + timelineName: GenerateName(name) + )); } } return posts; } - public async Task GetPostData(string name, long postId) + public async Task GetPostData(string name, long postId) { if (name == null) throw new ArgumentNullException(nameof(name)); @@ -437,10 +441,12 @@ namespace Timeline.Services await Database.SaveChangesAsync(); } - return new DataWithType + return new PostData { Data = data, - Type = postEntity.ExtraContent + Type = postEntity.ExtraContent, + ETag = tag, + LastModified = postEntity.LastUpdated }; } @@ -474,14 +480,15 @@ namespace Timeline.Services Database.TimelinePosts.Add(postEntity); await Database.SaveChangesAsync(); - return new TimelinePost - { - Id = postEntity.LocalId, - Content = new TextTimelinePostContent(text), - Author = author, - Time = finalTime, - LastUpdated = currentTime - }; + + return new TimelinePost( + id: postEntity.LocalId, + content: new TextTimelinePostContent(text), + time: finalTime, + author: author, + lastUpdated: currentTime, + timelineName: GenerateName(name) + ); } public async Task CreateImagePost(string name, long authorId, byte[] data, DateTime? time) @@ -521,14 +528,14 @@ namespace Timeline.Services Database.TimelinePosts.Add(postEntity); await Database.SaveChangesAsync(); - return new TimelinePost - { - Id = postEntity.LocalId, - Content = new ImageTimelinePostContent(tag), - Author = author, - Time = finalTime, - LastUpdated = currentTime - }; + return new TimelinePost( + id: postEntity.LocalId, + content: new ImageTimelinePostContent(tag), + time: finalTime, + author: author, + lastUpdated: currentTime, + timelineName: GenerateName(name) + ); } public async Task DeletePost(string name, long id) @@ -767,6 +774,11 @@ namespace Timeline.Services return timelineEntity.Id; } } + + protected override string GenerateName(string name) + { + return name; + } } public class PersonalTimelineService : BaseTimelineManager, IPersonalTimelineService @@ -818,6 +830,11 @@ namespace Timeline.Services return newTimelineEntity.Id; } } + + protected override string GenerateName(string name) + { + return "@" + name; + } } public class TimelineService : ITimelineService @@ -996,7 +1013,7 @@ namespace Timeline.Services return s.GetPosts(realName); } - public Task GetPostData(string name, long postId) + public Task GetPostData(string name, long postId) { var s = BranchName(name, out var realName); return s.GetPostData(realName, postId); diff --git a/Timeline/Startup.cs b/Timeline/Startup.cs index 85822a14..d2fd22bd 100644 --- a/Timeline/Startup.cs +++ b/Timeline/Startup.cs @@ -101,7 +101,8 @@ namespace Timeline services.AddUserAvatarService(); - services.AddScoped(); + services.AddScoped(); + services.AddScoped(); services.AddScoped(); services.TryAddSingleton(); -- cgit v1.2.3