Compare commits
No commits in common. "main" and "1.0.10" have entirely different histories.
474 changed files with 9874 additions and 34584 deletions
3
.github/instructions/ai.instructions.md
vendored
3
.github/instructions/ai.instructions.md
vendored
|
|
@ -101,8 +101,7 @@ Driven by:
|
||||||
- ListForm
|
- ListForm
|
||||||
- ListFormFields
|
- ListFormFields
|
||||||
- ListFormCustomization (UserUiFilter, GridState, ServerJoin, ServerWhere)
|
- ListFormCustomization (UserUiFilter, GridState, ServerJoin, ServerWhere)
|
||||||
- ListFormImport and ListFormImportLog
|
- ListFormImport and ListFormImportExecute
|
||||||
- ListFormWorkflow
|
|
||||||
- ListFormJsonRow operations
|
- ListFormJsonRow operations
|
||||||
|
|
||||||
Capabilities:
|
Capabilities:
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"isRoot": true,
|
"isRoot": true,
|
||||||
"tools": {
|
"tools": {
|
||||||
"volo.abp.cli": {
|
"volo.abp.cli": {
|
||||||
"version": "10.0.0",
|
"version": "9.0.2",
|
||||||
"commands": [
|
"commands": [
|
||||||
"abp"
|
"abp"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
7
api/.gitignore
vendored
7
api/.gitignore
vendored
|
|
@ -267,9 +267,4 @@ src/Sozsoft.Platform.Blazor.Server.Tiered/Logs/*
|
||||||
|
|
||||||
# DevExpress License - DO NOT commit to repository
|
# DevExpress License - DO NOT commit to repository
|
||||||
**/DevExpress_License.txt
|
**/DevExpress_License.txt
|
||||||
DevExpress_License.txt
|
DevExpress_License.txt
|
||||||
|
|
||||||
# Local cache files
|
|
||||||
*.lscache
|
|
||||||
lscache/
|
|
||||||
**/lscache/
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
<Project>
|
|
||||||
<PropertyGroup>
|
|
||||||
<NoWarn>$(NoWarn);CS0162;CS8321;CS8618;CS8632</NoWarn>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,13 +1,7 @@
|
||||||
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build
|
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
|
||||||
ENV DOTNET_NUGET_SIGNATURE_VERIFICATION=false
|
ENV DOTNET_NUGET_SIGNATURE_VERIFICATION=false
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY global.json ./
|
|
||||||
COPY common.props ./
|
|
||||||
COPY "modules/Sozsoft.Languages/common.props" "modules/Sozsoft.Languages/"
|
|
||||||
COPY "modules/Sozsoft.Notifications/common.props" "modules/Sozsoft.Notifications/"
|
|
||||||
COPY "modules/Sozsoft.Settings/common.props" "modules/Sozsoft.Settings/"
|
|
||||||
COPY "modules/Sozsoft.SqlQueryManager/common.props" "modules/Sozsoft.SqlQueryManager/"
|
|
||||||
COPY "modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/Sozsoft.Languages.Application.Contracts.csproj" "modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/"
|
COPY "modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/Sozsoft.Languages.Application.Contracts.csproj" "modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/"
|
||||||
COPY "modules/Sozsoft.Languages/Sozsoft.Languages.Domain/Sozsoft.Languages.Domain.csproj" "modules/Sozsoft.Languages/Sozsoft.Languages.Domain/"
|
COPY "modules/Sozsoft.Languages/Sozsoft.Languages.Domain/Sozsoft.Languages.Domain.csproj" "modules/Sozsoft.Languages/Sozsoft.Languages.Domain/"
|
||||||
COPY "modules/Sozsoft.Languages/Sozsoft.Languages.Domain.Shared/Sozsoft.Languages.Domain.Shared.csproj" "modules/Sozsoft.Languages/Sozsoft.Languages.Domain.Shared/"
|
COPY "modules/Sozsoft.Languages/Sozsoft.Languages.Domain.Shared/Sozsoft.Languages.Domain.Shared.csproj" "modules/Sozsoft.Languages/Sozsoft.Languages.Domain.Shared/"
|
||||||
|
|
@ -36,7 +30,7 @@ RUN dotnet restore "src/Sozsoft.Platform.DbMigrator/Sozsoft.Platform.DbMigrator.
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN dotnet publish "src/Sozsoft.Platform.DbMigrator/Sozsoft.Platform.DbMigrator.csproj" -c Release -o /app/publish --no-restore
|
RUN dotnet publish "src/Sozsoft.Platform.DbMigrator/Sozsoft.Platform.DbMigrator.csproj" -c Release -o /app/publish --no-restore
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine AS final
|
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine AS final
|
||||||
|
|
||||||
# DevExpress License Key - runtime'da da gerekli
|
# DevExpress License Key - runtime'da da gerekli
|
||||||
ARG DevExpress_License
|
ARG DevExpress_License
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,9 @@
|
||||||
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build
|
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
|
||||||
ENV DOTNET_NUGET_SIGNATURE_VERIFICATION=false
|
ENV DOTNET_NUGET_SIGNATURE_VERIFICATION=false
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN apk update && apk upgrade
|
RUN apk update && apk upgrade
|
||||||
RUN apk add nodejs~=24 npm~=11
|
RUN apk add nodejs~=24 npm~=11
|
||||||
|
|
||||||
COPY global.json ./
|
|
||||||
COPY common.props ./
|
|
||||||
COPY "modules/Sozsoft.Languages/common.props" "modules/Sozsoft.Languages/"
|
|
||||||
COPY "modules/Sozsoft.Notifications/common.props" "modules/Sozsoft.Notifications/"
|
|
||||||
COPY "modules/Sozsoft.Settings/common.props" "modules/Sozsoft.Settings/"
|
|
||||||
COPY "modules/Sozsoft.SqlQueryManager/common.props" "modules/Sozsoft.SqlQueryManager/"
|
|
||||||
COPY .config/dotnet-tools.json .config/dotnet-tools.json
|
COPY .config/dotnet-tools.json .config/dotnet-tools.json
|
||||||
RUN dotnet tool restore
|
RUN dotnet tool restore
|
||||||
ENV PATH="/root/.dotnet/tools:/app/.config/dotnet/tools:${PATH}"
|
ENV PATH="/root/.dotnet/tools:/app/.config/dotnet/tools:${PATH}"
|
||||||
|
|
@ -60,7 +54,7 @@ RUN mkdir -p publish
|
||||||
RUN dotnet publish "src/Sozsoft.Platform.HttpApi.Host/Sozsoft.Platform.HttpApi.Host.csproj" -c Release -o /app/publish --no-restore
|
RUN dotnet publish "src/Sozsoft.Platform.HttpApi.Host/Sozsoft.Platform.HttpApi.Host.csproj" -c Release -o /app/publish --no-restore
|
||||||
RUN dotnet publish "src/Sozsoft.Platform.DbMigrator/Sozsoft.Platform.DbMigrator.csproj" -c Release -o /app/migrator
|
RUN dotnet publish "src/Sozsoft.Platform.DbMigrator/Sozsoft.Platform.DbMigrator.csproj" -c Release -o /app/migrator
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine AS final
|
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine AS final
|
||||||
|
|
||||||
# DevExpress License Key - runtime'da da gerekli
|
# DevExpress License Key - runtime'da da gerekli
|
||||||
ARG DevExpress_License
|
ARG DevExpress_License
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,4 @@
|
||||||
<Content Remove="$(UserProfile)\.nuget\packages\*\*\contentFiles\any\*\*.abppkg*.json" />
|
<Content Remove="$(UserProfile)\.nuget\packages\*\*\contentFiles\any\*\*.abppkg*.json" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
</Project>
|
||||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="MimeKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="Scriban" Version="7.2.3" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"sdk": {
|
"sdk": {
|
||||||
"version": "10.0.300",
|
"version": "9.0.101",
|
||||||
"rollForward": "latestMajor"
|
"rollForward": "latestMajor"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
|
using Sozsoft.Languages.Localization;
|
||||||
using Volo.Abp.Authorization.Permissions;
|
using Volo.Abp.Authorization.Permissions;
|
||||||
|
using Volo.Abp.Localization;
|
||||||
|
|
||||||
namespace Sozsoft.Languages.Permissions;
|
namespace Sozsoft.Languages.Permissions;
|
||||||
|
|
||||||
|
|
@ -6,5 +8,12 @@ public class LanguagesPermissionDefinitionProvider : PermissionDefinitionProvide
|
||||||
{
|
{
|
||||||
public override void Define(IPermissionDefinitionContext context)
|
public override void Define(IPermissionDefinitionContext context)
|
||||||
{
|
{
|
||||||
|
var myGroup = context.AddGroup(LanguagesPermissions.GroupName, L("Permission:Languages"));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static LocalizableString L(string name)
|
||||||
|
{
|
||||||
|
return LocalizableString.Create<LanguagesResource>(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,13 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Authorization" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Authorization" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Languages.Domain.Shared\Sozsoft.Languages.Domain.Shared.csproj" />
|
<ProjectReference Include="..\Sozsoft.Languages.Domain.Shared\Sozsoft.Languages.Domain.Shared.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
using AutoMapper;
|
||||||
|
using Sozsoft.Languages.Entities;
|
||||||
|
using Volo.Abp.AutoMapper;
|
||||||
|
using Volo.Abp.Localization;
|
||||||
|
|
||||||
|
namespace Sozsoft.Languages;
|
||||||
|
|
||||||
|
public class LanguagesApplicationAutoMapperProfile : Profile
|
||||||
|
{
|
||||||
|
public LanguagesApplicationAutoMapperProfile()
|
||||||
|
{
|
||||||
|
CreateMap<Language, LanguageInfo>();
|
||||||
|
CreateMap<Language, LanguageDto>();
|
||||||
|
CreateMap<LanguageKey, LanguageKeyDto>();
|
||||||
|
CreateMap<LanguageText, LanguageTextDto>();
|
||||||
|
CreateMap<LanguageText, LanguageTextEto>();
|
||||||
|
|
||||||
|
CreateMap<LanguageTextCreateUpdateDto, LanguageText>()
|
||||||
|
.IgnoreAllPropertiesWithAnInaccessibleSetter()
|
||||||
|
.ForMember(dest => dest.LanguageKey, opt => opt.Ignore());
|
||||||
|
|
||||||
|
CreateMap<LanguageKey, LanguageTextTranslatedDto>()
|
||||||
|
.ForMember(d => d.Key, o => o.MapFrom(s => s.Key))
|
||||||
|
.ForMember(d => d.ResourceName, o => o.MapFrom(s => s.ResourceName))
|
||||||
|
.ForAllMembers(o => o.Ignore());
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -1,122 +0,0 @@
|
||||||
using Sozsoft.Languages.Entities;
|
|
||||||
using Volo.Abp.Localization;
|
|
||||||
using Riok.Mapperly.Abstractions;
|
|
||||||
using Volo.Abp.Mapperly;
|
|
||||||
|
|
||||||
namespace Sozsoft.Languages;
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class LanguageToLanguageInfoMapper : MapperBase<Language, LanguageInfo>
|
|
||||||
{
|
|
||||||
public override partial LanguageInfo Map(Language source);
|
|
||||||
|
|
||||||
public override partial void Map(Language source, LanguageInfo destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(Language source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(Language source, LanguageInfo destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class LanguageToLanguageDtoMapper : MapperBase<Language, LanguageDto>
|
|
||||||
{
|
|
||||||
public override partial LanguageDto Map(Language source);
|
|
||||||
|
|
||||||
public override partial void Map(Language source, LanguageDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(Language source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(Language source, LanguageDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class LanguageKeyToLanguageKeyDtoMapper : MapperBase<LanguageKey, LanguageKeyDto>
|
|
||||||
{
|
|
||||||
public override partial LanguageKeyDto Map(LanguageKey source);
|
|
||||||
|
|
||||||
public override partial void Map(LanguageKey source, LanguageKeyDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(LanguageKey source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(LanguageKey source, LanguageKeyDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class LanguageTextToLanguageTextDtoMapper : MapperBase<LanguageText, LanguageTextDto>
|
|
||||||
{
|
|
||||||
public override partial LanguageTextDto Map(LanguageText source);
|
|
||||||
|
|
||||||
public override partial void Map(LanguageText source, LanguageTextDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(LanguageText source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(LanguageText source, LanguageTextDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class LanguageTextToLanguageTextEtoMapper : MapperBase<LanguageText, LanguageTextEto>
|
|
||||||
{
|
|
||||||
public override partial LanguageTextEto Map(LanguageText source);
|
|
||||||
|
|
||||||
public override partial void Map(LanguageText source, LanguageTextEto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(LanguageText source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(LanguageText source, LanguageTextEto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class LanguageTextCreateUpdateDtoToLanguageTextMapper : MapperBase<LanguageTextCreateUpdateDto, LanguageText>
|
|
||||||
{
|
|
||||||
[MapperIgnoreTarget(nameof(LanguageText.LanguageKey))]
|
|
||||||
public override partial LanguageText Map(LanguageTextCreateUpdateDto source);
|
|
||||||
|
|
||||||
[MapperIgnoreTarget(nameof(LanguageText.LanguageKey))]
|
|
||||||
public override partial void Map(LanguageTextCreateUpdateDto source, LanguageText destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(LanguageTextCreateUpdateDto source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(LanguageTextCreateUpdateDto source, LanguageText destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class LanguageKeyToLanguageTextTranslatedDtoMapper : MapperBase<LanguageKey, LanguageTextTranslatedDto>
|
|
||||||
{
|
|
||||||
[MapperIgnoreTarget(nameof(LanguageTextTranslatedDto.Id))]
|
|
||||||
public override partial LanguageTextTranslatedDto Map(LanguageKey source);
|
|
||||||
|
|
||||||
[MapperIgnoreTarget(nameof(LanguageTextTranslatedDto.Id))]
|
|
||||||
public override partial void Map(LanguageKey source, LanguageTextTranslatedDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(LanguageKey source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(LanguageKey source, LanguageTextTranslatedDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Volo.Abp.Application;
|
using Volo.Abp.Application;
|
||||||
using Volo.Abp.Mapperly;
|
using Volo.Abp.AutoMapper;
|
||||||
using Volo.Abp.Modularity;
|
using Volo.Abp.Modularity;
|
||||||
|
|
||||||
namespace Sozsoft.Languages;
|
namespace Sozsoft.Languages;
|
||||||
|
|
@ -9,13 +9,18 @@ namespace Sozsoft.Languages;
|
||||||
typeof(LanguagesDomainModule),
|
typeof(LanguagesDomainModule),
|
||||||
typeof(LanguagesApplicationContractsModule),
|
typeof(LanguagesApplicationContractsModule),
|
||||||
typeof(AbpDddApplicationModule),
|
typeof(AbpDddApplicationModule),
|
||||||
typeof(AbpMapperlyModule)
|
typeof(AbpAutoMapperModule)
|
||||||
)]
|
)]
|
||||||
public class LanguagesApplicationModule : AbpModule
|
public class LanguagesApplicationModule : AbpModule
|
||||||
{
|
{
|
||||||
public override void ConfigureServices(ServiceConfigurationContext context)
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||||||
{
|
{
|
||||||
context.Services.AddMapperlyObjectMapper<LanguagesApplicationModule>();
|
context.Services.AddAutoMapperObjectMapper<LanguagesApplicationModule>();
|
||||||
|
|
||||||
|
Configure<AbpAutoMapperOptions>(options =>
|
||||||
|
{
|
||||||
|
options.AddMaps<LanguagesApplicationModule>(validate: true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,14 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Mapperly" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Languages.Application.Contracts\Sozsoft.Languages.Application.Contracts.csproj" />
|
<ProjectReference Include="..\Sozsoft.Languages.Application.Contracts\Sozsoft.Languages.Application.Contracts.csproj" />
|
||||||
<ProjectReference Include="..\Sozsoft.Languages.Domain\Sozsoft.Languages.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.Languages.Domain\Sozsoft.Languages.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,19 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<GenerateEmbeddedFilesManifest>false</GenerateEmbeddedFilesManifest>
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Validation" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Validation" Version="9.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,13 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Languages.Domain.Shared\Sozsoft.Languages.Domain.Shared.csproj" />
|
<ProjectReference Include="..\Sozsoft.Languages.Domain.Shared\Sozsoft.Languages.Domain.Shared.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,12 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
<RootNamespace>Sozsoft.Languages</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Languages.Domain\Sozsoft.Languages.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.Languages.Domain\Sozsoft.Languages.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,11 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ConfigureAwait.Fody" Version="3.4.0" PrivateAssets="All" />
|
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.1" PrivateAssets="All" />
|
||||||
<PackageReference Include="Fody" Version="6.9.3">
|
<PackageReference Include="Fody" Version="6.5.3">
|
||||||
<PrivateAssets>All</PrivateAssets>
|
<PrivateAssets>All</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="MimeKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="Scriban" Version="7.2.3" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -24,4 +21,4 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
using AutoMapper;
|
||||||
|
|
||||||
|
namespace Sozsoft.MailQueue.Application;
|
||||||
|
|
||||||
|
public class MailQueueAutoMapperProfile : Profile
|
||||||
|
{
|
||||||
|
public MailQueueAutoMapperProfile()
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
namespace Sozsoft.MailQueue.Application;
|
|
||||||
|
|
@ -31,8 +31,6 @@ public class MailTrackingManager : DomainService
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task StartAsync()
|
public async Task StartAsync()
|
||||||
{
|
{
|
||||||
// https://us-east-1.console.aws.amazon.com/iam/home?region=eu-central-1#/users
|
|
||||||
// https://eu-central-1.console.aws.amazon.com/ses/home?region=eu-central-1#/identities/system%40sozsoft.com?tabId=authentication
|
|
||||||
var accessKey = configuration.GetValue<string>(AmazonSesEmailSettingNames.AccessKey);
|
var accessKey = configuration.GetValue<string>(AmazonSesEmailSettingNames.AccessKey);
|
||||||
var accessKeyId = configuration.GetValue<string>(AmazonSesEmailSettingNames.AccessKeyId);
|
var accessKeyId = configuration.GetValue<string>(AmazonSesEmailSettingNames.AccessKeyId);
|
||||||
var region = configuration.GetValue<string>(AmazonSesEmailSettingNames.Region);
|
var region = configuration.GetValue<string>(AmazonSesEmailSettingNames.Region);
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
||||||
|
<NoWarn>$(NoWarn);CS8632</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
@ -18,25 +19,22 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.BackgroundJobs" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.BackgroundJobs" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Validation" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Validation" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Authorization" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Authorization" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Mapperly" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.TextTemplating.Razor" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.TextTemplating.Razor" Version="9.0.2" />
|
||||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="MimeKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="Scriban" Version="7.2.3" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AWSSDK.SQS" Version="3.7.400" />
|
<PackageReference Include="AWSSDK.SQS" Version="3.7.400" />
|
||||||
<PackageReference Include="ClosedXML" Version="0.104.2" />
|
<PackageReference Include="ClosedXML" Version="0.104.2" />
|
||||||
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
|
||||||
<PackageReference Include="Wkhtmltopdf.NetCore" Version="3.0.2" />
|
<PackageReference Include="Wkhtmltopdf.NetCore" Version="3.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ using Microsoft.CodeAnalysis;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Volo.Abp.Application;
|
using Volo.Abp.Application;
|
||||||
using Volo.Abp.Authorization;
|
using Volo.Abp.Authorization;
|
||||||
using Volo.Abp.Mapperly;
|
using Volo.Abp.AutoMapper;
|
||||||
using Volo.Abp.Domain;
|
using Volo.Abp.Domain;
|
||||||
using Volo.Abp.EntityFrameworkCore;
|
using Volo.Abp.EntityFrameworkCore;
|
||||||
using Volo.Abp.Localization;
|
using Volo.Abp.Localization;
|
||||||
|
|
@ -22,7 +22,7 @@ namespace Sozsoft.MailQueue;
|
||||||
typeof(AbpDddDomainModule),
|
typeof(AbpDddDomainModule),
|
||||||
typeof(AbpDddApplicationModule),
|
typeof(AbpDddApplicationModule),
|
||||||
typeof(AbpDddApplicationContractsModule),
|
typeof(AbpDddApplicationContractsModule),
|
||||||
typeof(AbpMapperlyModule),
|
typeof(AbpAutoMapperModule),
|
||||||
typeof(AbpAuthorizationModule),
|
typeof(AbpAuthorizationModule),
|
||||||
typeof(AbpEntityFrameworkCoreModule),
|
typeof(AbpEntityFrameworkCoreModule),
|
||||||
typeof(AbpTextTemplatingRazorModule),
|
typeof(AbpTextTemplatingRazorModule),
|
||||||
|
|
@ -32,7 +32,11 @@ public class ErpMailQueueModule : AbpModule
|
||||||
{
|
{
|
||||||
public override void ConfigureServices(ServiceConfigurationContext context)
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||||||
{
|
{
|
||||||
context.Services.AddMapperlyObjectMapper<ErpMailQueueModule>();
|
context.Services.AddAutoMapperObjectMapper<ErpMailQueueModule>();
|
||||||
|
Configure<AbpAutoMapperOptions>(options =>
|
||||||
|
{
|
||||||
|
options.AddMaps<ErpMailQueueModule>(validate: true);
|
||||||
|
});
|
||||||
|
|
||||||
Configure<AbpLocalizationOptions>(options =>
|
Configure<AbpLocalizationOptions>(options =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
|
using Sozsoft.Notifications.Localization;
|
||||||
using Volo.Abp.Authorization.Permissions;
|
using Volo.Abp.Authorization.Permissions;
|
||||||
|
using Volo.Abp.Localization;
|
||||||
|
|
||||||
namespace Sozsoft.Notifications.Permissions;
|
namespace Sozsoft.Notifications.Permissions;
|
||||||
|
|
||||||
|
|
@ -6,5 +8,12 @@ public class NotificationPermissionDefinitionProvider : PermissionDefinitionProv
|
||||||
{
|
{
|
||||||
public override void Define(IPermissionDefinitionContext context)
|
public override void Define(IPermissionDefinitionContext context)
|
||||||
{
|
{
|
||||||
|
var myGroup = context.AddGroup(NotificationPermissions.GroupName, L("Permission:Notifications"));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static LocalizableString L(string name)
|
||||||
|
{
|
||||||
|
return LocalizableString.Create<NotificationResource>(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,14 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Authorization" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Authorization" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Notifications.Domain.Shared\Sozsoft.Notifications.Domain.Shared.csproj" />
|
<ProjectReference Include="..\Sozsoft.Notifications.Domain.Shared\Sozsoft.Notifications.Domain.Shared.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
using AutoMapper;
|
||||||
|
using Sozsoft.Notifications.Entities;
|
||||||
|
using Sozsoft.Notifications.NotificationRules;
|
||||||
|
|
||||||
|
namespace Sozsoft.Notifications.Application;
|
||||||
|
|
||||||
|
public class NotificationApplicationAutoMapperProfile : Profile
|
||||||
|
{
|
||||||
|
public NotificationApplicationAutoMapperProfile()
|
||||||
|
{
|
||||||
|
CreateMap<NotificationType, NotificationTypeDto>();
|
||||||
|
CreateMap<NotificationRule, NotificationRuleDto>();
|
||||||
|
CreateMap<Notification, NotificationDto>()
|
||||||
|
.ForMember(d => d.CreatorFullname, o => o.Ignore())
|
||||||
|
.ForMember(d => d.TenantId, o => o.Ignore());
|
||||||
|
CreateMap<CreateUpdateNotificationRuleDto, NotificationRule>(MemberList.Source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -1,90 +0,0 @@
|
||||||
using Sozsoft.Notifications.Entities;
|
|
||||||
using Sozsoft.Notifications.Domain;
|
|
||||||
using Sozsoft.Notifications.NotificationRules;
|
|
||||||
using Riok.Mapperly.Abstractions;
|
|
||||||
using Volo.Abp.Mapperly;
|
|
||||||
|
|
||||||
namespace Sozsoft.Notifications.Application;
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class NotificationTypeToNotificationTypeDtoMapper : MapperBase<NotificationType, NotificationTypeDto>
|
|
||||||
{
|
|
||||||
public override partial NotificationTypeDto Map(NotificationType source);
|
|
||||||
|
|
||||||
public override partial void Map(NotificationType source, NotificationTypeDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(NotificationType source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(NotificationType source, NotificationTypeDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class NotificationRuleToNotificationRuleDtoMapper : MapperBase<NotificationRule, NotificationRuleDto>
|
|
||||||
{
|
|
||||||
public override partial NotificationRuleDto Map(NotificationRule source);
|
|
||||||
|
|
||||||
public override partial void Map(NotificationRule source, NotificationRuleDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(NotificationRule source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(NotificationRule source, NotificationRuleDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class NotificationToNotificationDtoMapper : MapperBase<Notification, NotificationDto>
|
|
||||||
{
|
|
||||||
[MapperIgnoreTarget(nameof(NotificationDto.CreatorFullname))]
|
|
||||||
[MapperIgnoreTarget(nameof(NotificationDto.TenantId))]
|
|
||||||
public override partial NotificationDto Map(Notification source);
|
|
||||||
|
|
||||||
[MapperIgnoreTarget(nameof(NotificationDto.CreatorFullname))]
|
|
||||||
[MapperIgnoreTarget(nameof(NotificationDto.TenantId))]
|
|
||||||
public override partial void Map(Notification source, NotificationDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(Notification source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(Notification source, NotificationDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class CreateUpdateNotificationRuleDtoToNotificationRuleMapper : MapperBase<CreateUpdateNotificationRuleDto, NotificationRule>
|
|
||||||
{
|
|
||||||
[MapperIgnoreTarget(nameof(NotificationRule.RecipientType))]
|
|
||||||
public override NotificationRule Map(CreateUpdateNotificationRuleDto source)
|
|
||||||
{
|
|
||||||
var destination = new NotificationRule
|
|
||||||
{
|
|
||||||
RecipientType = NotificationRecipientTypes.All,
|
|
||||||
Channel = source.Channel,
|
|
||||||
NotificationTypeId = source.NotificationTypeId,
|
|
||||||
IsActive = source.IsActive
|
|
||||||
};
|
|
||||||
|
|
||||||
AfterMap(source, destination);
|
|
||||||
|
|
||||||
return destination;
|
|
||||||
}
|
|
||||||
|
|
||||||
[MapperIgnoreTarget(nameof(NotificationRule.RecipientType))]
|
|
||||||
public override partial void Map(CreateUpdateNotificationRuleDto source, NotificationRule destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(CreateUpdateNotificationRuleDto source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(CreateUpdateNotificationRuleDto source, NotificationRule destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using Sozsoft.Notifications.Domain;
|
using Sozsoft.Notifications.Domain;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Volo.Abp.Application;
|
using Volo.Abp.Application;
|
||||||
using Volo.Abp.Mapperly;
|
using Volo.Abp.AutoMapper;
|
||||||
using Volo.Abp.Modularity;
|
using Volo.Abp.Modularity;
|
||||||
|
|
||||||
namespace Sozsoft.Notifications.Application;
|
namespace Sozsoft.Notifications.Application;
|
||||||
|
|
@ -10,13 +10,17 @@ namespace Sozsoft.Notifications.Application;
|
||||||
typeof(NotificationDomainModule),
|
typeof(NotificationDomainModule),
|
||||||
typeof(NotificationApplicationContractsModule),
|
typeof(NotificationApplicationContractsModule),
|
||||||
typeof(AbpDddApplicationModule),
|
typeof(AbpDddApplicationModule),
|
||||||
typeof(AbpMapperlyModule)
|
typeof(AbpAutoMapperModule)
|
||||||
)]
|
)]
|
||||||
public class NotificationApplicationModule : AbpModule
|
public class NotificationApplicationModule : AbpModule
|
||||||
{
|
{
|
||||||
public override void ConfigureServices(ServiceConfigurationContext context)
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||||||
{
|
{
|
||||||
context.Services.AddMapperlyObjectMapper<NotificationApplicationModule>();
|
context.Services.AddAutoMapperObjectMapper<NotificationApplicationModule>();
|
||||||
|
Configure<AbpAutoMapperOptions>(options =>
|
||||||
|
{
|
||||||
|
options.AddMaps<NotificationApplicationModule>(validate: true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,14 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Mapperly" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Notifications.Application.Contracts\Sozsoft.Notifications.Application.Contracts.csproj" />
|
<ProjectReference Include="..\Sozsoft.Notifications.Application.Contracts\Sozsoft.Notifications.Application.Contracts.csproj" />
|
||||||
<ProjectReference Include="..\Sozsoft.Notifications.Domain\Sozsoft.Notifications.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.Notifications.Domain\Sozsoft.Notifications.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -3,19 +3,19 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
||||||
<GenerateEmbeddedFilesManifest>false</GenerateEmbeddedFilesManifest>
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Validation" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Validation" Version="9.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -3,15 +3,16 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
||||||
|
<NoWarn>$(NoWarn);CS8632</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Identity.Domain" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Identity.Domain" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Notifications.Domain.Shared\Sozsoft.Notifications.Domain.Shared.csproj" />
|
<ProjectReference Include="..\Sozsoft.Notifications.Domain.Shared\Sozsoft.Notifications.Domain.Shared.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,13 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
<RootNamespace>Sozsoft.Notifications</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Notifications.Domain\Sozsoft.Notifications.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.Notifications.Domain\Sozsoft.Notifications.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,11 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ConfigureAwait.Fody" Version="3.4.0" PrivateAssets="All" />
|
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.1" PrivateAssets="All" />
|
||||||
<PackageReference Include="Fody" Version="6.9.3">
|
<PackageReference Include="Fody" Version="6.5.3">
|
||||||
<PrivateAssets>All</PrivateAssets>
|
<PrivateAssets>All</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="MimeKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="Scriban" Version="7.2.3" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -24,4 +21,4 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -65,7 +65,6 @@ public class AmazonSesEmailSender : EmailSenderBase, ISozsoftEmailSender, ITrans
|
||||||
await BackgroundJobManager.EnqueueAsync(
|
await BackgroundJobManager.EnqueueAsync(
|
||||||
new ErpBackgroundEmailSendingJobArgs
|
new ErpBackgroundEmailSendingJobArgs
|
||||||
{
|
{
|
||||||
TenantId = CurrentTenant.Id,
|
|
||||||
To = to,
|
To = to,
|
||||||
Sender = sender,
|
Sender = sender,
|
||||||
Params = @params,
|
Params = @params,
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
using Volo.Abp.BackgroundJobs;
|
using Volo.Abp.BackgroundJobs;
|
||||||
using Volo.Abp.DependencyInjection;
|
using Volo.Abp.DependencyInjection;
|
||||||
using Volo.Abp.MultiTenancy;
|
|
||||||
|
|
||||||
namespace Sozsoft.Sender.Mail;
|
namespace Sozsoft.Sender.Mail;
|
||||||
|
|
||||||
|
|
@ -8,28 +7,22 @@ public class ErpBackgroundEmailSendingJob :
|
||||||
AsyncBackgroundJob<ErpBackgroundEmailSendingJobArgs>, ITransientDependency
|
AsyncBackgroundJob<ErpBackgroundEmailSendingJobArgs>, ITransientDependency
|
||||||
{
|
{
|
||||||
protected ISozsoftEmailSender EmailSender { get; }
|
protected ISozsoftEmailSender EmailSender { get; }
|
||||||
protected ICurrentTenant CurrentTenant { get; }
|
|
||||||
|
|
||||||
public ErpBackgroundEmailSendingJob(
|
public ErpBackgroundEmailSendingJob(ISozsoftEmailSender emailSender)
|
||||||
ISozsoftEmailSender emailSender,
|
|
||||||
ICurrentTenant currentTenant)
|
|
||||||
{
|
{
|
||||||
EmailSender = emailSender;
|
EmailSender = emailSender;
|
||||||
CurrentTenant = currentTenant;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override async Task ExecuteAsync(ErpBackgroundEmailSendingJobArgs args)
|
public override async Task ExecuteAsync(ErpBackgroundEmailSendingJobArgs args)
|
||||||
{
|
{
|
||||||
using (CurrentTenant.Change(args.TenantId))
|
//await EmailSender.SendEmailAsync(args.Template, args.To, args.Params, args.Subject);
|
||||||
{
|
await EmailSender.SendEmailAsync(
|
||||||
//await EmailSender.SendEmailAsync(args.Template, args.To, args.Params, args.Subject);
|
args.To,
|
||||||
await EmailSender.SendEmailAsync(
|
args.Sender,
|
||||||
args.To,
|
args.Params,
|
||||||
args.Sender,
|
args.TextContent,
|
||||||
args.Params,
|
args.Subject,
|
||||||
args.TextContent,
|
args.Attachments);
|
||||||
args.Subject,
|
|
||||||
args.Attachments);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,8 @@
|
||||||
using Volo.Abp.MultiTenancy;
|
namespace Sozsoft.Sender.Mail;
|
||||||
|
|
||||||
namespace Sozsoft.Sender.Mail;
|
|
||||||
|
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public class ErpBackgroundEmailSendingJobArgs : IMultiTenant
|
public class ErpBackgroundEmailSendingJobArgs
|
||||||
{
|
{
|
||||||
public Guid? TenantId { get; set; }
|
|
||||||
|
|
||||||
public string[] To { get; set; }
|
public string[] To { get; set; }
|
||||||
|
|
||||||
public KeyValuePair<string, string>? Sender { get; set; }
|
public KeyValuePair<string, string>? Sender { get; set; }
|
||||||
|
|
@ -18,4 +14,6 @@ public class ErpBackgroundEmailSendingJobArgs : IMultiTenant
|
||||||
public Dictionary<string, string>? Attachments { get; set; }
|
public Dictionary<string, string>? Attachments { get; set; }
|
||||||
|
|
||||||
public string? TextContent { get; set; }
|
public string? TextContent { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,15 +17,15 @@ public class RocketSender : ISozsoftRocketSender
|
||||||
|
|
||||||
public async Task<RocketSendResult> SendAsync(string Username, string Message)
|
public async Task<RocketSendResult> SendAsync(string Username, string Message)
|
||||||
{
|
{
|
||||||
logger.LogInformation("Sending Rocket message. {Username}, {Message}", Username, Message);
|
logger.LogInformation("Rocket gönderiliyor. {Username}, {Message}", Username, Message);
|
||||||
var result = await httpClient.SendMessageAsync(Username, Message);
|
var result = await httpClient.SendMessageAsync(Username, Message);
|
||||||
if (result.Success)
|
if (result.Success)
|
||||||
{
|
{
|
||||||
logger.LogInformation("Rocket sent successfully. {Username}, {Message}", Username, Message);
|
logger.LogInformation("Rocket gönderildi. {Username}, {Message}", Username, Message);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
logger.LogWarning("Failed to send Rocket message. {Username}, {Message}", Username, Message);
|
logger.LogWarning("Rocket gönderilemedi. {Username}, {Message}", Username, Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new RocketSendResult
|
return new RocketSendResult
|
||||||
|
|
|
||||||
|
|
@ -25,15 +25,15 @@ public class PostaGuverciniSmsSender : ISozsoftSmsSender
|
||||||
Message = Check.NotNullOrWhiteSpace(Message, nameof(Message));
|
Message = Check.NotNullOrWhiteSpace(Message, nameof(Message));
|
||||||
PhoneNumber = PhoneNumber.StartsWith('0') ? PhoneNumber[1..] : PhoneNumber;
|
PhoneNumber = PhoneNumber.StartsWith('0') ? PhoneNumber[1..] : PhoneNumber;
|
||||||
|
|
||||||
logger.LogInformation("Sending SMS message. {PhoneNumber}, {Message}", PhoneNumber, Message);
|
logger.LogInformation("Sms gönderiliyor. {PhoneNumber}, {Message}", PhoneNumber, Message);
|
||||||
var result = await httpClient.SendSmsAsync(PhoneNumber, Message);
|
var result = await httpClient.SendSmsAsync(PhoneNumber, Message);
|
||||||
if (result.IsSuccess)
|
if (result.IsSuccess)
|
||||||
{
|
{
|
||||||
logger.LogInformation("SMS sent successfully. {PhoneNumber}, {Message}", PhoneNumber, Message);
|
logger.LogInformation("Sms gönderildi. {PhoneNumber}, {Message}", PhoneNumber, Message);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
logger.LogWarning("Failed to send SMS message. {PhoneNumber}, {Message}, {Error}", PhoneNumber, Message, $"{result.ErrNo}:{result.ErrText}");
|
logger.LogWarning("Sms gönderilemedi. {PhoneNumber}, {Message}, {Error}", PhoneNumber, Message, $"{result.ErrNo}:{result.ErrText}");
|
||||||
}
|
}
|
||||||
|
|
||||||
return new SmsSendResult
|
return new SmsSendResult
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,17 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AWSSDK.SimpleEmailV2" Version="3.7.406" />
|
<PackageReference Include="AWSSDK.SimpleEmailV2" Version="3.7.406" />
|
||||||
<PackageReference Include="Volo.Abp.BackgroundJobs" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.BackgroundJobs" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Emailing" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Emailing" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.MailKit" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.MailKit" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Sms" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Sms" Version="9.0.2" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0" />
|
||||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="MimeKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="Scriban" Version="7.2.3" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -23,16 +23,16 @@ public class SozsoftWhatsAppSender : ISozsoftWhatsAppSender
|
||||||
|
|
||||||
public async Task<WhatsAppSendResult> SendAsync(string To, string Message, string LanguageCode = "tr")
|
public async Task<WhatsAppSendResult> SendAsync(string To, string Message, string LanguageCode = "tr")
|
||||||
{
|
{
|
||||||
logger.LogInformation("Sending WhatsApp message. {To}, {LanguageCode}, {Message}", To, LanguageCode, Message);
|
logger.LogInformation("WhatsApp gönderiliyor. {To}, {LanguageCode}, {Message}", To, LanguageCode, Message);
|
||||||
var result = await httpClient.SendMessageAsync(To, Message, LanguageCode);
|
var result = await httpClient.SendMessageAsync(To, Message, LanguageCode);
|
||||||
var success = !result.messages.IsNullOrEmpty() && result.messages.FirstOrDefault()?.message_status == "accepted";
|
var success = !result.messages.IsNullOrEmpty() && result.messages.FirstOrDefault()?.message_status == "accepted";
|
||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
logger.LogInformation("WhatsApp sent successfully. {To}, {LanguageCode}, {Message}", To, LanguageCode, Message);
|
logger.LogInformation("WhatsApp gönderildi. {To}, {LanguageCode}, {Message}", To, LanguageCode, Message);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
logger.LogWarning("Failed to send WhatsApp message. {To}, {LanguageCode}, {Message}", To, LanguageCode, Message);
|
logger.LogWarning("WhatsApp gönderilemedi. {To}, {LanguageCode}, {Message}", To, LanguageCode, Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new WhatsAppSendResult
|
return new WhatsAppSendResult
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
|
using Sozsoft.Settings.Localization;
|
||||||
using Volo.Abp.Authorization.Permissions;
|
using Volo.Abp.Authorization.Permissions;
|
||||||
|
using Volo.Abp.Localization;
|
||||||
|
|
||||||
namespace Sozsoft.Settings.Permissions;
|
namespace Sozsoft.Settings.Permissions;
|
||||||
|
|
||||||
|
|
@ -6,5 +8,12 @@ public class SettingsPermissionDefinitionProvider : PermissionDefinitionProvider
|
||||||
{
|
{
|
||||||
public override void Define(IPermissionDefinitionContext context)
|
public override void Define(IPermissionDefinitionContext context)
|
||||||
{
|
{
|
||||||
|
var myGroup = context.AddGroup(SettingsPermissions.GroupName, L("Permission:Settings"));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static LocalizableString L(string name)
|
||||||
|
{
|
||||||
|
return LocalizableString.Create<SettingsResource>(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,14 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Authorization" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Authorization" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.SettingManagement.Application.Contracts" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.SettingManagement.Application.Contracts" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Settings.Domain.Shared\Sozsoft.Settings.Domain.Shared.csproj" />
|
<ProjectReference Include="..\Sozsoft.Settings.Domain.Shared\Sozsoft.Settings.Domain.Shared.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,10 @@ using System.Threading.Tasks;
|
||||||
using Sozsoft.Languages;
|
using Sozsoft.Languages;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Volo.Abp.Application.Services;
|
using Volo.Abp.Application.Services;
|
||||||
using Volo.Abp.MultiTenancy;
|
using Volo.Abp.Domain.Repositories;
|
||||||
using Volo.Abp.SettingManagement;
|
using Volo.Abp.SettingManagement;
|
||||||
using Volo.Abp.Settings;
|
using Volo.Abp.Settings;
|
||||||
|
using SettingDefinition = Sozsoft.Settings.Entities.SettingDefinition;
|
||||||
|
|
||||||
namespace Sozsoft.Settings;
|
namespace Sozsoft.Settings;
|
||||||
|
|
||||||
|
|
@ -19,20 +20,17 @@ public class SettingUiAppService : ApplicationService, ISettingUiAppService
|
||||||
private readonly ISettingDefinitionManager settingDefinitionManager;
|
private readonly ISettingDefinitionManager settingDefinitionManager;
|
||||||
private readonly ISettingManager settingManager;
|
private readonly ISettingManager settingManager;
|
||||||
private readonly ErpSettingDefinitionManager ErpSettingDefinitionManager;
|
private readonly ErpSettingDefinitionManager ErpSettingDefinitionManager;
|
||||||
private readonly ICurrentTenant currentTenant;
|
|
||||||
|
|
||||||
public SettingUiAppService(
|
public SettingUiAppService(
|
||||||
ILanguageKeyIntegrationService languageKeyIntegrationService,
|
ILanguageKeyIntegrationService languageKeyIntegrationService,
|
||||||
ISettingDefinitionManager settingDefinitionManager,
|
ISettingDefinitionManager settingDefinitionManager,
|
||||||
ISettingManager settingManager,
|
ISettingManager settingManager,
|
||||||
ErpSettingDefinitionManager ErpSettingDefinitionManager,
|
ErpSettingDefinitionManager ErpSettingDefinitionManager)
|
||||||
ICurrentTenant currentTenant)
|
|
||||||
{
|
{
|
||||||
this.languageKeyIntegrationService = languageKeyIntegrationService;
|
this.languageKeyIntegrationService = languageKeyIntegrationService;
|
||||||
this.settingDefinitionManager = settingDefinitionManager;
|
this.settingDefinitionManager = settingDefinitionManager;
|
||||||
this.settingManager = settingManager;
|
this.settingManager = settingManager;
|
||||||
this.ErpSettingDefinitionManager = ErpSettingDefinitionManager;
|
this.ErpSettingDefinitionManager = ErpSettingDefinitionManager;
|
||||||
this.currentTenant = currentTenant;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual async Task<List<MainGroupedSettingDto>> GetListAsync()
|
public virtual async Task<List<MainGroupedSettingDto>> GetListAsync()
|
||||||
|
|
@ -97,18 +95,15 @@ public class SettingUiAppService : ApplicationService, ISettingUiAppService
|
||||||
{
|
{
|
||||||
if (setting.Providers.IsNullOrEmpty())
|
if (setting.Providers.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
if (currentTenant.Id.HasValue)
|
await settingManager.SetForCurrentUserAsync(setting.Name, value);
|
||||||
{
|
|
||||||
await settingManager.SetForCurrentTenantAsync(setting.Name, value);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
await settingManager.SetGlobalAsync(setting.Name, value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (setting.Providers.Any(p => p == TenantSettingValueProvider.ProviderName) && currentTenant.Id.HasValue)
|
if (setting.Providers.Any(p => p == UserSettingValueProvider.ProviderName))
|
||||||
|
{
|
||||||
|
await settingManager.SetForCurrentUserAsync(setting.Name, value);
|
||||||
|
}
|
||||||
|
else if (setting.Providers.Any(p => p == TenantSettingValueProvider.ProviderName))
|
||||||
{
|
{
|
||||||
await settingManager.SetForCurrentTenantAsync(setting.Name, value);
|
await settingManager.SetForCurrentTenantAsync(setting.Name, value);
|
||||||
}
|
}
|
||||||
|
|
@ -116,10 +111,6 @@ public class SettingUiAppService : ApplicationService, ISettingUiAppService
|
||||||
{
|
{
|
||||||
await settingManager.SetGlobalAsync(setting.Name, value);
|
await settingManager.SetGlobalAsync(setting.Name, value);
|
||||||
}
|
}
|
||||||
else if (setting.Providers.Any(p => p == UserSettingValueProvider.ProviderName))
|
|
||||||
{
|
|
||||||
await settingManager.SetForCurrentUserAsync(setting.Name, value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Volo.Abp.Application;
|
using Volo.Abp.Application;
|
||||||
using Volo.Abp.Mapperly;
|
using Volo.Abp.AutoMapper;
|
||||||
using Volo.Abp.Modularity;
|
using Volo.Abp.Modularity;
|
||||||
using Volo.Abp.SettingManagement;
|
using Volo.Abp.SettingManagement;
|
||||||
|
|
||||||
|
|
@ -10,14 +10,18 @@ namespace Sozsoft.Settings;
|
||||||
typeof(SettingsDomainModule),
|
typeof(SettingsDomainModule),
|
||||||
typeof(SettingsApplicationContractsModule),
|
typeof(SettingsApplicationContractsModule),
|
||||||
typeof(AbpDddApplicationModule),
|
typeof(AbpDddApplicationModule),
|
||||||
typeof(AbpMapperlyModule),
|
typeof(AbpAutoMapperModule),
|
||||||
typeof(AbpSettingManagementApplicationModule)
|
typeof(AbpSettingManagementApplicationModule)
|
||||||
)]
|
)]
|
||||||
public class SettingsApplicationModule : AbpModule
|
public class SettingsApplicationModule : AbpModule
|
||||||
{
|
{
|
||||||
public override void ConfigureServices(ServiceConfigurationContext context)
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||||||
{
|
{
|
||||||
context.Services.AddMapperlyObjectMapper<SettingsApplicationModule>();
|
context.Services.AddAutoMapperObjectMapper<SettingsApplicationModule>();
|
||||||
|
Configure<AbpAutoMapperOptions>(options =>
|
||||||
|
{
|
||||||
|
options.AddMaps<SettingsApplicationModule>(validate: true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
using AutoMapper;
|
||||||
|
using Sozsoft.Settings.Entities;
|
||||||
|
|
||||||
|
namespace Sozsoft.Settings;
|
||||||
|
|
||||||
|
public class SettingsAutoMapperProfile : Profile
|
||||||
|
{
|
||||||
|
public SettingsAutoMapperProfile()
|
||||||
|
{
|
||||||
|
CreateMap<SettingDefinition, SettingDefinitionDto>().ReverseMap();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
||||||
using Sozsoft.Settings.Entities;
|
|
||||||
using Riok.Mapperly.Abstractions;
|
|
||||||
using Volo.Abp.Mapperly;
|
|
||||||
|
|
||||||
namespace Sozsoft.Settings;
|
|
||||||
|
|
||||||
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
|
|
||||||
public partial class SettingDefinitionToSettingDefinitionDtoMapper : TwoWayMapperBase<SettingDefinition, SettingDefinitionDto>
|
|
||||||
{
|
|
||||||
public override partial SettingDefinitionDto Map(SettingDefinition source);
|
|
||||||
|
|
||||||
public override partial void Map(SettingDefinition source, SettingDefinitionDto destination);
|
|
||||||
|
|
||||||
public override void BeforeMap(SettingDefinition source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterMap(SettingDefinition source, SettingDefinitionDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override partial SettingDefinition ReverseMap(SettingDefinitionDto destination);
|
|
||||||
|
|
||||||
public override partial void ReverseMap(SettingDefinitionDto destination, SettingDefinition source);
|
|
||||||
|
|
||||||
public override void BeforeReverseMap(SettingDefinitionDto destination)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void AfterReverseMap(SettingDefinitionDto destination, SettingDefinition source)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -3,14 +3,14 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Mapperly" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.SettingManagement.Application" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.SettingManagement.Application" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\..\Sozsoft.Languages\Sozsoft.Languages.Application.Contracts\Sozsoft.Languages.Application.Contracts.csproj" />
|
<ProjectReference Include="..\..\Sozsoft.Languages\Sozsoft.Languages.Application.Contracts\Sozsoft.Languages.Application.Contracts.csproj" />
|
||||||
<ProjectReference Include="..\Sozsoft.Settings.Application.Contracts\Sozsoft.Settings.Application.Contracts.csproj" />
|
<ProjectReference Include="..\Sozsoft.Settings.Application.Contracts\Sozsoft.Settings.Application.Contracts.csproj" />
|
||||||
<ProjectReference Include="..\Sozsoft.Settings.Domain\Sozsoft.Settings.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.Settings.Domain\Sozsoft.Settings.Domain.csproj" />
|
||||||
|
|
|
||||||
|
|
@ -3,19 +3,19 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
||||||
<GenerateEmbeddedFilesManifest>false</GenerateEmbeddedFilesManifest>
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.SettingManagement.Domain.Shared" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.SettingManagement.Domain.Shared" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Validation" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Validation" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="9.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -28,38 +28,22 @@ public class SettingsDefinitionProvider : SettingDefinitionProvider
|
||||||
foreach (var item in settingDefinitions.OrderBy(a => a.Order))
|
foreach (var item in settingDefinitions.OrderBy(a => a.Order))
|
||||||
{
|
{
|
||||||
var iDescription = item.DescriptionKey.IsNullOrEmpty() ? null : L(item.DescriptionKey);
|
var iDescription = item.DescriptionKey.IsNullOrEmpty() ? null : L(item.DescriptionKey);
|
||||||
var providers = item.Providers.IsNullOrEmpty()
|
|
||||||
? []
|
|
||||||
: item.Providers.Split(MultiValueDelimiter, StringSplitOptions.RemoveEmptyEntries);
|
|
||||||
|
|
||||||
var def = context.GetOrNull(item.Code);
|
var def = new Volo.Abp.Settings.SettingDefinition(
|
||||||
|
item.Code, item.DefaultValue, L(item.NameKey), iDescription,
|
||||||
if (def == null)
|
item.IsVisibleToClients, item.IsInherited, item.IsEncrypted)
|
||||||
{
|
.WithProperty(SettingsConsts.MainGroup, item.MainGroupKey)
|
||||||
def = new Volo.Abp.Settings.SettingDefinition(
|
|
||||||
item.Code, item.DefaultValue, L(item.NameKey), iDescription,
|
|
||||||
item.IsVisibleToClients, item.IsInherited, item.IsEncrypted);
|
|
||||||
|
|
||||||
context.Add(def);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
def.DefaultValue = item.DefaultValue;
|
|
||||||
def.DisplayName = L(item.NameKey);
|
|
||||||
def.Description = iDescription;
|
|
||||||
def.IsVisibleToClients = item.IsVisibleToClients;
|
|
||||||
def.IsInherited = item.IsInherited;
|
|
||||||
def.IsEncrypted = item.IsEncrypted;
|
|
||||||
def.Properties.Clear();
|
|
||||||
def.Providers.Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
def.Providers.AddRange(providers);
|
|
||||||
def.WithProperty(SettingsConsts.MainGroup, item.MainGroupKey)
|
|
||||||
.WithProperty(SettingsConsts.SubGroup, item.SubGroupKey)
|
.WithProperty(SettingsConsts.SubGroup, item.SubGroupKey)
|
||||||
.WithProperty(SettingsConsts.DataType, item.DataType)
|
.WithProperty(SettingsConsts.DataType, item.DataType)
|
||||||
.WithProperty(SettingsConsts.RequiredPermission, item.RequiredPermissionName)
|
.WithProperty(SettingsConsts.RequiredPermission, item.RequiredPermissionName)
|
||||||
.WithProperty(SettingsConsts.SelectOptions, item.SelectOptions?.ToDictionary(x => x.Key, x => L(x.Value)));
|
.WithProperty(SettingsConsts.SelectOptions, item.SelectOptions?.ToDictionary(x => x.Key, x => L(x.Value)));
|
||||||
|
|
||||||
|
if (!item.Providers.IsNullOrEmpty())
|
||||||
|
{
|
||||||
|
def.Providers.AddRange(item.Providers.Split(MultiValueDelimiter));
|
||||||
|
}
|
||||||
|
|
||||||
|
context.Add(def);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
using Volo.Abp.Modularity;
|
using Volo.Abp.Modularity;
|
||||||
using Volo.Abp.SettingManagement;
|
using Volo.Abp.SettingManagement;
|
||||||
using Volo.Abp.Settings;
|
|
||||||
|
|
||||||
namespace Sozsoft.Settings;
|
namespace Sozsoft.Settings;
|
||||||
|
|
||||||
|
|
@ -12,10 +11,7 @@ public class SettingsDomainModule : AbpModule
|
||||||
{
|
{
|
||||||
public override void ConfigureServices(ServiceConfigurationContext context)
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||||||
{
|
{
|
||||||
Configure<AbpSettingOptions>(options =>
|
|
||||||
{
|
|
||||||
options.DefinitionProviders.Remove<SettingsDefinitionProvider>();
|
|
||||||
options.DefinitionProviders.Add<SettingsDefinitionProvider>();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,13 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Authorization" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Authorization" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.SettingManagement.Domain" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.SettingManagement.Domain" Version="9.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,12 @@
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
<RootNamespace>Sozsoft.Settings</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.Settings.Domain\Sozsoft.Settings.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.Settings.Domain\Sozsoft.Settings.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,11 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ConfigureAwait.Fody" Version="3.4.0" PrivateAssets="All" />
|
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.1" PrivateAssets="All" />
|
||||||
<PackageReference Include="Fody" Version="6.9.3">
|
<PackageReference Include="Fody" Version="6.5.3">
|
||||||
<PrivateAssets>All</PrivateAssets>
|
<PrivateAssets>All</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="MimeKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="Scriban" Version="7.2.3" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -24,4 +21,4 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -4,10 +4,7 @@ public class DatabaseTableDto
|
||||||
{
|
{
|
||||||
public string SchemaName { get; set; }
|
public string SchemaName { get; set; }
|
||||||
public string TableName { get; set; }
|
public string TableName { get; set; }
|
||||||
public string DataSourceType { get; set; }
|
public string FullName => $"{SchemaName}.{TableName}";
|
||||||
public string FullName => DataSourceType == "Postgresql"
|
|
||||||
? $"\"{SchemaName}\".\"{TableName}\""
|
|
||||||
: $"[{SchemaName}].[{TableName}]";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class DatabaseColumnDto
|
public class DatabaseColumnDto
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@ public interface ISqlObjectManagerAppService : IApplicationService
|
||||||
|
|
||||||
// Database Metadata Operations
|
// Database Metadata Operations
|
||||||
Task<List<DatabaseColumnDto>> GetTableColumnsAsync(string dataSourceCode, string schemaName, string tableName);
|
Task<List<DatabaseColumnDto>> GetTableColumnsAsync(string dataSourceCode, string schemaName, string tableName);
|
||||||
Task<string> GetTableCreateScriptAsync(string dataSourceCode, string schemaName, string tableName);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the SQL definition/body of a native SQL Server object (Stored Procedure, View, or Function)
|
/// Gets the SQL definition/body of a native SQL Server object (Stored Procedure, View, or Function)
|
||||||
|
|
@ -44,15 +43,5 @@ public interface ISqlObjectManagerAppService : IApplicationService
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Lists .sql files currently available under DbMigrator Seeds/SqlData.
|
/// Lists .sql files currently available under DbMigrator Seeds/SqlData.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<List<SqlDataFileDto>> GetSqlDataFilesAsync(string dataDirectoryName = "SqlData", string relativePath = "");
|
Task<List<SqlDataFileDto>> GetSqlDataFilesAsync();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Reads a .sql seed file content from the selected data directory.
|
|
||||||
/// </summary>
|
|
||||||
Task<string> GetSqlDataFileContentAsync(string dataDirectoryName = "SqlData", string relativePath = "");
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Moves a SQL seed file between the selected data directory root and HostData.
|
|
||||||
/// </summary>
|
|
||||||
Task MoveSqlDataFileAsync(MoveSqlDataFileDto input);
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Authorization" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Authorization" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain.Shared\Sozsoft.SqlQueryManager.Domain.Shared.csproj" />
|
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain.Shared\Sozsoft.SqlQueryManager.Domain.Shared.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,5 @@ namespace Sozsoft.SqlQueryManager.Application.Contracts;
|
||||||
public class SqlDataFileDto
|
public class SqlDataFileDto
|
||||||
{
|
{
|
||||||
public string FileName { get; set; } = string.Empty;
|
public string FileName { get; set; } = string.Empty;
|
||||||
public string Name { get; set; } = string.Empty;
|
|
||||||
public string RelativePath { get; set; } = string.Empty;
|
|
||||||
public bool IsDirectory { get; set; }
|
|
||||||
public DateTime CreatedAt { get; set; }
|
public DateTime CreatedAt { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -46,10 +46,3 @@ public class DeleteSqlDataFilesDto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public List<string> FileNames { get; set; } = new();
|
public List<string> FileNames { get; set; } = new();
|
||||||
}
|
}
|
||||||
|
|
||||||
public class MoveSqlDataFileDto
|
|
||||||
{
|
|
||||||
public string DataDirectoryName { get; set; } = string.Empty;
|
|
||||||
public string SourceRelativePath { get; set; } = string.Empty;
|
|
||||||
public string TargetRelativePath { get; set; } = string.Empty;
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -9,10 +9,7 @@ public class SqlNativeObjectDto
|
||||||
{
|
{
|
||||||
public string SchemaName { get; set; } = "dbo";
|
public string SchemaName { get; set; } = "dbo";
|
||||||
public string ObjectName { get; set; } = "";
|
public string ObjectName { get; set; } = "";
|
||||||
public string DataSourceType { get; set; } = "";
|
public string FullName => $"[{SchemaName}].[{ObjectName}]";
|
||||||
public string FullName => DataSourceType == "Postgresql"
|
|
||||||
? $"\"{SchemaName}\".\"{ObjectName}\""
|
|
||||||
: $"[{SchemaName}].[{ObjectName}]";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Mapperly" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Application" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Application" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Application.Contracts\Sozsoft.SqlQueryManager.Application.Contracts.csproj" />
|
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Application.Contracts\Sozsoft.SqlQueryManager.Application.Contracts.csproj" />
|
||||||
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain\Sozsoft.SqlQueryManager.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain\Sozsoft.SqlQueryManager.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@ using Microsoft.Extensions.Logging;
|
||||||
using Volo.Abp.Application.Services;
|
using Volo.Abp.Application.Services;
|
||||||
using Volo.Abp.MultiTenancy;
|
using Volo.Abp.MultiTenancy;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using Sozsoft.Platform.Enums;
|
|
||||||
using Sozsoft.Platform.Queries;
|
|
||||||
|
|
||||||
namespace Sozsoft.SqlQueryManager.Application;
|
namespace Sozsoft.SqlQueryManager.Application;
|
||||||
|
|
||||||
|
|
@ -45,7 +43,6 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
|
|
||||||
private readonly ISqlExecutorService _sqlExecutorService;
|
private readonly ISqlExecutorService _sqlExecutorService;
|
||||||
private readonly ISqlTemplateProvider _templateProvider;
|
private readonly ISqlTemplateProvider _templateProvider;
|
||||||
private readonly IDataSourceManager _dataSourceManager;
|
|
||||||
private readonly ICurrentTenant _currentTenant;
|
private readonly ICurrentTenant _currentTenant;
|
||||||
private readonly IHttpContextAccessor _httpContextAccessor;
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
||||||
private readonly IHostEnvironment _hostEnvironment;
|
private readonly IHostEnvironment _hostEnvironment;
|
||||||
|
|
@ -54,7 +51,6 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
public SqlObjectManagerAppService(
|
public SqlObjectManagerAppService(
|
||||||
ISqlExecutorService sqlExecutorService,
|
ISqlExecutorService sqlExecutorService,
|
||||||
ISqlTemplateProvider templateProvider,
|
ISqlTemplateProvider templateProvider,
|
||||||
IDataSourceManager dataSourceManager,
|
|
||||||
ICurrentTenant currentTenant,
|
ICurrentTenant currentTenant,
|
||||||
IHttpContextAccessor httpContextAccessor,
|
IHttpContextAccessor httpContextAccessor,
|
||||||
IHostEnvironment hostEnvironment,
|
IHostEnvironment hostEnvironment,
|
||||||
|
|
@ -62,7 +58,6 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
{
|
{
|
||||||
_sqlExecutorService = sqlExecutorService;
|
_sqlExecutorService = sqlExecutorService;
|
||||||
_templateProvider = templateProvider;
|
_templateProvider = templateProvider;
|
||||||
_dataSourceManager = dataSourceManager;
|
|
||||||
_currentTenant = currentTenant;
|
_currentTenant = currentTenant;
|
||||||
_httpContextAccessor = httpContextAccessor;
|
_httpContextAccessor = httpContextAccessor;
|
||||||
_hostEnvironment = hostEnvironment;
|
_hostEnvironment = hostEnvironment;
|
||||||
|
|
@ -95,12 +90,11 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
{
|
{
|
||||||
ValidateTenantAccess();
|
ValidateTenantAccess();
|
||||||
var result = new SqlObjectExplorerDto();
|
var result = new SqlObjectExplorerDto();
|
||||||
var dataSourceType = await GetDataSourceTypeAsync(dataSourceCode);
|
|
||||||
|
|
||||||
result.Tables = await GetTablesAsync(dataSourceCode, dataSourceType);
|
result.Tables = await GetTablesAsync(dataSourceCode);
|
||||||
result.Views = await GetNativeObjectsAsync(dataSourceCode, dataSourceType, "V");
|
result.Views = await GetNativeObjectsAsync(dataSourceCode, "V");
|
||||||
result.StoredProcedures = await GetNativeObjectsAsync(dataSourceCode, dataSourceType, "P");
|
result.StoredProcedures = await GetNativeObjectsAsync(dataSourceCode, "P");
|
||||||
result.Functions = await GetNativeObjectsAsync(dataSourceCode, dataSourceType, "FN", "IF", "TF");
|
result.Functions = await GetNativeObjectsAsync(dataSourceCode, "FN", "IF", "TF");
|
||||||
|
|
||||||
result.Templates = _templateProvider.GetAvailableQueryTemplates()
|
result.Templates = _templateProvider.GetAvailableQueryTemplates()
|
||||||
.Select(t => new SqlTemplateDto
|
.Select(t => new SqlTemplateDto
|
||||||
|
|
@ -115,25 +109,20 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<DataSourceTypeEnum> GetDataSourceTypeAsync(string dataSourceCode)
|
private async Task<List<SqlNativeObjectDto>> GetNativeObjectsAsync(string dataSourceCode, params string[] objectTypes)
|
||||||
{
|
{
|
||||||
var dataSource = await _dataSourceManager.GetDataSourceAsync(_currentTenant.IsAvailable, dataSourceCode);
|
var typeList = string.Join(",", objectTypes.Select(t => $"'{t}'"));
|
||||||
if (dataSource == null)
|
var query = $@"
|
||||||
{
|
SELECT
|
||||||
throw new Volo.Abp.UserFriendlyException($"Data source '{dataSourceCode}' was not found.");
|
SCHEMA_NAME(o.schema_id) AS SchemaName,
|
||||||
}
|
o.name AS ObjectName
|
||||||
|
FROM
|
||||||
return dataSource.DataSourceType;
|
sys.objects o
|
||||||
}
|
WHERE
|
||||||
|
o.type IN ({typeList})
|
||||||
private async Task<List<SqlNativeObjectDto>> GetNativeObjectsAsync(
|
AND o.is_ms_shipped = 0
|
||||||
string dataSourceCode,
|
ORDER BY
|
||||||
DataSourceTypeEnum dataSourceType,
|
SCHEMA_NAME(o.schema_id), o.name";
|
||||||
params string[] objectTypes)
|
|
||||||
{
|
|
||||||
var query = dataSourceType == DataSourceTypeEnum.Postgresql
|
|
||||||
? BuildPostgreSqlNativeObjectsQuery(objectTypes)
|
|
||||||
: BuildSqlServerNativeObjectsQuery(objectTypes);
|
|
||||||
|
|
||||||
var result = await _sqlExecutorService.ExecuteQueryAsync(query, dataSourceCode);
|
var result = await _sqlExecutorService.ExecuteQueryAsync(query, dataSourceCode);
|
||||||
|
|
||||||
|
|
@ -147,9 +136,8 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
{
|
{
|
||||||
objects.Add(new SqlNativeObjectDto
|
objects.Add(new SqlNativeObjectDto
|
||||||
{
|
{
|
||||||
SchemaName = GetDictionaryValue(dict, "SchemaName")?.ToString() ?? GetDefaultSchemaName(dataSourceType),
|
SchemaName = dict["SchemaName"]?.ToString() ?? "dbo",
|
||||||
ObjectName = GetDictionaryValue(dict, "ObjectName")?.ToString() ?? "",
|
ObjectName = dict["ObjectName"]?.ToString() ?? ""
|
||||||
DataSourceType = dataSourceType.ToString()
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -158,73 +146,9 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
return objects;
|
return objects;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string BuildSqlServerNativeObjectsQuery(params string[] objectTypes)
|
private async Task<List<DatabaseTableDto>> GetTablesAsync(string dataSourceCode)
|
||||||
{
|
{
|
||||||
var typeList = string.Join(",", objectTypes.Select(t => $"'{t}'"));
|
var query = @"
|
||||||
return $@"
|
|
||||||
SELECT
|
|
||||||
SCHEMA_NAME(o.schema_id) AS SchemaName,
|
|
||||||
o.name AS ObjectName
|
|
||||||
FROM
|
|
||||||
sys.objects o
|
|
||||||
WHERE
|
|
||||||
o.type IN ({typeList})
|
|
||||||
AND o.is_ms_shipped = 0
|
|
||||||
ORDER BY
|
|
||||||
SCHEMA_NAME(o.schema_id), o.name";
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string BuildPostgreSqlNativeObjectsQuery(params string[] objectTypes)
|
|
||||||
{
|
|
||||||
var wantsViews = objectTypes.Contains("V");
|
|
||||||
var wantsProcedures = objectTypes.Contains("P");
|
|
||||||
var wantsFunctions = objectTypes.Any(t => t is "FN" or "IF" or "TF");
|
|
||||||
|
|
||||||
if (wantsViews)
|
|
||||||
{
|
|
||||||
return @"
|
|
||||||
SELECT
|
|
||||||
table_schema AS ""SchemaName"",
|
|
||||||
table_name AS ""ObjectName""
|
|
||||||
FROM information_schema.views
|
|
||||||
WHERE table_schema NOT IN ('pg_catalog', 'information_schema')
|
|
||||||
ORDER BY table_schema, table_name";
|
|
||||||
}
|
|
||||||
|
|
||||||
var proKinds = new List<string>();
|
|
||||||
if (wantsProcedures)
|
|
||||||
{
|
|
||||||
proKinds.Add("'p'");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (wantsFunctions)
|
|
||||||
{
|
|
||||||
proKinds.Add("'f'");
|
|
||||||
}
|
|
||||||
|
|
||||||
return $@"
|
|
||||||
SELECT
|
|
||||||
n.nspname AS ""SchemaName"",
|
|
||||||
p.proname AS ""ObjectName""
|
|
||||||
FROM pg_proc p
|
|
||||||
INNER JOIN pg_namespace n ON n.oid = p.pronamespace
|
|
||||||
WHERE n.nspname NOT IN ('pg_catalog', 'information_schema')
|
|
||||||
AND p.prokind IN ({string.Join(",", proKinds)})
|
|
||||||
ORDER BY n.nspname, p.proname";
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task<List<DatabaseTableDto>> GetTablesAsync(string dataSourceCode, DataSourceTypeEnum dataSourceType)
|
|
||||||
{
|
|
||||||
var query = dataSourceType == DataSourceTypeEnum.Postgresql
|
|
||||||
? @"
|
|
||||||
SELECT
|
|
||||||
table_schema AS ""SchemaName"",
|
|
||||||
table_name AS ""TableName""
|
|
||||||
FROM information_schema.tables
|
|
||||||
WHERE table_type = 'BASE TABLE'
|
|
||||||
AND table_schema NOT IN ('pg_catalog', 'information_schema')
|
|
||||||
ORDER BY table_schema, table_name"
|
|
||||||
: @"
|
|
||||||
SELECT
|
SELECT
|
||||||
SCHEMA_NAME(t.schema_id) AS SchemaName,
|
SCHEMA_NAME(t.schema_id) AS SchemaName,
|
||||||
t.name AS TableName
|
t.name AS TableName
|
||||||
|
|
@ -247,9 +171,8 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
{
|
{
|
||||||
tables.Add(new DatabaseTableDto
|
tables.Add(new DatabaseTableDto
|
||||||
{
|
{
|
||||||
SchemaName = GetDictionaryValue(dict, "SchemaName")?.ToString() ?? GetDefaultSchemaName(dataSourceType),
|
SchemaName = dict["SchemaName"]?.ToString() ?? "dbo",
|
||||||
TableName = GetDictionaryValue(dict, "TableName")?.ToString() ?? "",
|
TableName = dict["TableName"]?.ToString() ?? ""
|
||||||
DataSourceType = dataSourceType.ToString()
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -306,9 +229,12 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
public async Task<string> GetNativeObjectDefinitionAsync(string dataSourceCode, string schemaName, string objectName)
|
public async Task<string> GetNativeObjectDefinitionAsync(string dataSourceCode, string schemaName, string objectName)
|
||||||
{
|
{
|
||||||
ValidateTenantAccess();
|
ValidateTenantAccess();
|
||||||
var dataSourceType = await GetDataSourceTypeAsync(dataSourceCode);
|
var query = @"
|
||||||
|
SELECT OBJECT_DEFINITION(OBJECT_ID(@ObjectName)) AS Definition";
|
||||||
|
|
||||||
|
var fullObjectName = $"[{schemaName}].[{objectName}]";
|
||||||
var result = await _sqlExecutorService.ExecuteQueryAsync(
|
var result = await _sqlExecutorService.ExecuteQueryAsync(
|
||||||
BuildNativeObjectDefinitionQuery(dataSourceType, schemaName, objectName),
|
query.Replace("@ObjectName", $"'{fullObjectName}'"),
|
||||||
dataSourceCode);
|
dataSourceCode);
|
||||||
|
|
||||||
if (result.Success && result.Data != null)
|
if (result.Success && result.Data != null)
|
||||||
|
|
@ -317,18 +243,15 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
if (dataList.Count > 0)
|
if (dataList.Count > 0)
|
||||||
{
|
{
|
||||||
var row = dataList[0] as IDictionary<string, object>;
|
var row = dataList[0] as IDictionary<string, object>;
|
||||||
if (row != null)
|
if (row != null && row.ContainsKey("Definition"))
|
||||||
{
|
{
|
||||||
var definition = GetDictionaryValue(row, "Definition")?.ToString() ?? string.Empty;
|
var definition = row["Definition"]?.ToString() ?? string.Empty;
|
||||||
// Always open object script as CREATE OR ALTER in editor.
|
// Always open object script as CREATE OR ALTER in editor.
|
||||||
if (dataSourceType == DataSourceTypeEnum.Mssql)
|
definition = Regex.Replace(
|
||||||
{
|
definition,
|
||||||
definition = Regex.Replace(
|
@"^\s*(?:CREATE|ALTER)\s+(?:OR\s+ALTER\s+)?",
|
||||||
definition,
|
"CREATE OR ALTER ",
|
||||||
@"^\s*(?:CREATE|ALTER)\s+(?:OR\s+ALTER\s+)?",
|
RegexOptions.IgnoreCase);
|
||||||
"CREATE OR ALTER ",
|
|
||||||
RegexOptions.IgnoreCase);
|
|
||||||
}
|
|
||||||
return definition;
|
return definition;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -337,59 +260,10 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string BuildNativeObjectDefinitionQuery(
|
|
||||||
DataSourceTypeEnum dataSourceType,
|
|
||||||
string schemaName,
|
|
||||||
string objectName)
|
|
||||||
{
|
|
||||||
if (dataSourceType == DataSourceTypeEnum.Postgresql)
|
|
||||||
{
|
|
||||||
var schema = ToSqlLiteral(schemaName);
|
|
||||||
var name = ToSqlLiteral(objectName);
|
|
||||||
|
|
||||||
return $@"
|
|
||||||
SELECT ""Definition""
|
|
||||||
FROM (
|
|
||||||
SELECT pg_get_viewdef(c.oid, true) AS ""Definition""
|
|
||||||
FROM pg_class c
|
|
||||||
INNER JOIN pg_namespace n ON n.oid = c.relnamespace
|
|
||||||
WHERE n.nspname = {schema}
|
|
||||||
AND c.relname = {name}
|
|
||||||
AND c.relkind IN ('v', 'm')
|
|
||||||
|
|
||||||
UNION ALL
|
|
||||||
|
|
||||||
SELECT pg_get_functiondef(p.oid) AS ""Definition""
|
|
||||||
FROM pg_proc p
|
|
||||||
INNER JOIN pg_namespace n ON n.oid = p.pronamespace
|
|
||||||
WHERE n.nspname = {schema}
|
|
||||||
AND p.proname = {name}
|
|
||||||
AND p.prokind IN ('f', 'p')
|
|
||||||
) d
|
|
||||||
LIMIT 1";
|
|
||||||
}
|
|
||||||
|
|
||||||
var fullObjectName = $"[{schemaName.Replace("]", "]]")}].[{objectName.Replace("]", "]]")}]";
|
|
||||||
return $@"
|
|
||||||
SELECT OBJECT_DEFINITION(OBJECT_ID({ToSqlLiteral(fullObjectName)})) AS Definition";
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<List<DatabaseColumnDto>> GetTableColumnsAsync(string dataSourceCode, string schemaName, string tableName)
|
public async Task<List<DatabaseColumnDto>> GetTableColumnsAsync(string dataSourceCode, string schemaName, string tableName)
|
||||||
{
|
{
|
||||||
ValidateTenantAccess();
|
ValidateTenantAccess();
|
||||||
var dataSourceType = await GetDataSourceTypeAsync(dataSourceCode);
|
var query = $@"
|
||||||
var query = dataSourceType == DataSourceTypeEnum.Postgresql
|
|
||||||
? $@"
|
|
||||||
SELECT
|
|
||||||
column_name AS ""ColumnName"",
|
|
||||||
COALESCE(NULLIF(udt_name, ''), data_type) AS ""DataType"",
|
|
||||||
CASE WHEN is_nullable = 'YES' THEN TRUE ELSE FALSE END AS ""IsNullable"",
|
|
||||||
character_maximum_length AS ""MaxLength""
|
|
||||||
FROM information_schema.columns
|
|
||||||
WHERE table_schema = {ToSqlLiteral(schemaName)}
|
|
||||||
AND table_name = {ToSqlLiteral(tableName)}
|
|
||||||
ORDER BY ordinal_position"
|
|
||||||
: $@"
|
|
||||||
SELECT
|
SELECT
|
||||||
c.name AS ColumnName,
|
c.name AS ColumnName,
|
||||||
TYPE_NAME(c.user_type_id) AS DataType,
|
TYPE_NAME(c.user_type_id) AS DataType,
|
||||||
|
|
@ -400,8 +274,8 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
INNER JOIN sys.tables t ON c.object_id = t.object_id
|
INNER JOIN sys.tables t ON c.object_id = t.object_id
|
||||||
INNER JOIN sys.schemas s ON t.schema_id = s.schema_id
|
INNER JOIN sys.schemas s ON t.schema_id = s.schema_id
|
||||||
WHERE
|
WHERE
|
||||||
s.name = {ToSqlLiteral(schemaName)}
|
s.name = '{schemaName}'
|
||||||
AND t.name = {ToSqlLiteral(tableName)}
|
AND t.name = '{tableName}'
|
||||||
ORDER BY
|
ORDER BY
|
||||||
c.column_id";
|
c.column_id";
|
||||||
|
|
||||||
|
|
@ -417,10 +291,10 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
{
|
{
|
||||||
columns.Add(new DatabaseColumnDto
|
columns.Add(new DatabaseColumnDto
|
||||||
{
|
{
|
||||||
ColumnName = GetDictionaryValue(dict, "ColumnName")?.ToString() ?? "",
|
ColumnName = dict["ColumnName"]?.ToString() ?? "",
|
||||||
DataType = GetDictionaryValue(dict, "DataType")?.ToString() ?? "",
|
DataType = dict["DataType"]?.ToString() ?? "",
|
||||||
IsNullable = ToBoolean(GetDictionaryValue(dict, "IsNullable")),
|
IsNullable = dict["IsNullable"] is bool b && b,
|
||||||
MaxLength = ToNullableInt(GetDictionaryValue(dict, "MaxLength"))
|
MaxLength = dict["MaxLength"] != null ? int.Parse(dict["MaxLength"].ToString()) : null
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -429,218 +303,6 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
return columns;
|
return columns;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("api/app/sql-object-manager/table-create-script")]
|
|
||||||
public async Task<string> GetTableCreateScriptAsync(string dataSourceCode, string schemaName, string tableName)
|
|
||||||
{
|
|
||||||
ValidateTenantAccess();
|
|
||||||
var dataSourceType = await GetDataSourceTypeAsync(dataSourceCode);
|
|
||||||
|
|
||||||
var result = await _sqlExecutorService.ExecuteQueryAsync(
|
|
||||||
BuildTableCreateScriptQuery(dataSourceType, schemaName, tableName),
|
|
||||||
dataSourceCode);
|
|
||||||
|
|
||||||
if (!result.Success || result.Data == null)
|
|
||||||
{
|
|
||||||
return string.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
var row = result.Data.FirstOrDefault() as IDictionary<string, object>;
|
|
||||||
return GetDictionaryValue(row, "Script")?.ToString() ?? string.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string BuildTableCreateScriptQuery(
|
|
||||||
DataSourceTypeEnum dataSourceType,
|
|
||||||
string schemaName,
|
|
||||||
string tableName)
|
|
||||||
{
|
|
||||||
if (dataSourceType == DataSourceTypeEnum.Postgresql)
|
|
||||||
{
|
|
||||||
return BuildPostgreSqlTableCreateScriptQuery(schemaName, tableName);
|
|
||||||
}
|
|
||||||
|
|
||||||
return BuildSqlServerTableCreateScriptQuery(schemaName, tableName);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string BuildSqlServerTableCreateScriptQuery(string schemaName, string tableName)
|
|
||||||
{
|
|
||||||
var fullName = $"[{schemaName.Replace("]", "]]")}].[{tableName.Replace("]", "]]")}]";
|
|
||||||
var escapedFullName = ToSqlLiteral(fullName);
|
|
||||||
|
|
||||||
return $@"
|
|
||||||
DECLARE @ObjectId INT = OBJECT_ID({escapedFullName});
|
|
||||||
|
|
||||||
IF @ObjectId IS NULL
|
|
||||||
BEGIN
|
|
||||||
SELECT CAST('' AS NVARCHAR(MAX)) AS Script;
|
|
||||||
RETURN;
|
|
||||||
END;
|
|
||||||
|
|
||||||
;WITH cols AS
|
|
||||||
(
|
|
||||||
SELECT
|
|
||||||
c.column_id,
|
|
||||||
' ' + QUOTENAME(c.name) + ' ' +
|
|
||||||
CASE
|
|
||||||
WHEN t.name IN ('varchar', 'char', 'varbinary', 'binary') THEN
|
|
||||||
t.name + '(' + CASE WHEN c.max_length = -1 THEN 'MAX' ELSE CAST(c.max_length AS VARCHAR(10)) END + ')'
|
|
||||||
WHEN t.name IN ('nvarchar', 'nchar') THEN
|
|
||||||
t.name + '(' + CASE WHEN c.max_length = -1 THEN 'MAX' ELSE CAST(c.max_length / 2 AS VARCHAR(10)) END + ')'
|
|
||||||
WHEN t.name IN ('decimal', 'numeric') THEN
|
|
||||||
t.name + '(' + CAST(c.precision AS VARCHAR(10)) + ',' + CAST(c.scale AS VARCHAR(10)) + ')'
|
|
||||||
WHEN t.name IN ('datetime2', 'datetimeoffset', 'time') THEN
|
|
||||||
t.name + '(' + CAST(c.scale AS VARCHAR(10)) + ')'
|
|
||||||
ELSE t.name
|
|
||||||
END +
|
|
||||||
CASE
|
|
||||||
WHEN ic.object_id IS NOT NULL
|
|
||||||
THEN ' IDENTITY(' + CAST(ic.seed_value AS VARCHAR(30)) + ',' + CAST(ic.increment_value AS VARCHAR(30)) + ')'
|
|
||||||
ELSE ''
|
|
||||||
END +
|
|
||||||
CASE WHEN c.is_nullable = 1 THEN ' NULL' ELSE ' NOT NULL' END +
|
|
||||||
ISNULL(' DEFAULT ' + dc.definition, '') AS line
|
|
||||||
FROM sys.columns c
|
|
||||||
INNER JOIN sys.types t ON c.user_type_id = t.user_type_id
|
|
||||||
LEFT JOIN sys.identity_columns ic ON c.object_id = ic.object_id AND c.column_id = ic.column_id
|
|
||||||
LEFT JOIN sys.default_constraints dc ON c.default_object_id = dc.object_id
|
|
||||||
WHERE c.object_id = @ObjectId
|
|
||||||
),
|
|
||||||
pk AS
|
|
||||||
(
|
|
||||||
SELECT
|
|
||||||
' CONSTRAINT ' + QUOTENAME(k.name) + ' PRIMARY KEY ' +
|
|
||||||
CASE WHEN i.type = 1 THEN 'CLUSTERED' ELSE 'NONCLUSTERED' END +
|
|
||||||
CHAR(13) + CHAR(10) + ' (' + CHAR(13) + CHAR(10) +
|
|
||||||
(
|
|
||||||
SELECT ' ' + QUOTENAME(c.name) + CASE WHEN ic.is_descending_key = 1 THEN ' DESC' ELSE ' ASC' END + CHAR(13) + CHAR(10)
|
|
||||||
FROM sys.index_columns ic
|
|
||||||
INNER JOIN sys.columns c ON ic.object_id = c.object_id AND ic.column_id = c.column_id
|
|
||||||
WHERE ic.object_id = i.object_id
|
|
||||||
AND ic.index_id = i.index_id
|
|
||||||
AND ic.is_included_column = 0
|
|
||||||
ORDER BY ic.key_ordinal
|
|
||||||
FOR XML PATH(''), TYPE
|
|
||||||
).value('.', 'NVARCHAR(MAX)') +
|
|
||||||
' )' AS line
|
|
||||||
FROM sys.key_constraints k
|
|
||||||
INNER JOIN sys.indexes i ON k.parent_object_id = i.object_id AND k.unique_index_id = i.index_id
|
|
||||||
WHERE k.parent_object_id = @ObjectId
|
|
||||||
AND k.type = 'PK'
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
'IF OBJECT_ID(N''{fullName.Replace("'", "''")}'', ''U'') IS NULL' + CHAR(13) + CHAR(10) +
|
|
||||||
'BEGIN' + CHAR(13) + CHAR(10) +
|
|
||||||
' CREATE TABLE {fullName}' + CHAR(13) + CHAR(10) +
|
|
||||||
' (' + CHAR(13) + CHAR(10) +
|
|
||||||
STUFF(
|
|
||||||
(
|
|
||||||
SELECT ',' + CHAR(13) + CHAR(10) + line
|
|
||||||
FROM cols
|
|
||||||
ORDER BY column_id
|
|
||||||
FOR XML PATH(''), TYPE
|
|
||||||
).value('.', 'NVARCHAR(MAX)')
|
|
||||||
,1,3,'') +
|
|
||||||
ISNULL(
|
|
||||||
(
|
|
||||||
SELECT ',' + CHAR(13) + CHAR(10) + line
|
|
||||||
FROM pk
|
|
||||||
),
|
|
||||||
''
|
|
||||||
) + CHAR(13) + CHAR(10) + ' )' + CHAR(13) + CHAR(10) + 'END' + CHAR(13) + CHAR(10) + 'GO' AS Script;";
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string BuildPostgreSqlTableCreateScriptQuery(string schemaName, string tableName)
|
|
||||||
{
|
|
||||||
return $@"
|
|
||||||
WITH cols AS (
|
|
||||||
SELECT
|
|
||||||
c.ordinal_position,
|
|
||||||
' ' || quote_ident(c.column_name) || ' ' ||
|
|
||||||
CASE
|
|
||||||
WHEN c.data_type = 'character varying' THEN 'varchar(' || c.character_maximum_length || ')'
|
|
||||||
WHEN c.data_type = 'character' THEN 'char(' || c.character_maximum_length || ')'
|
|
||||||
WHEN c.data_type = 'numeric' AND c.numeric_precision IS NOT NULL THEN 'numeric(' || c.numeric_precision || ',' || c.numeric_scale || ')'
|
|
||||||
WHEN c.data_type = 'USER-DEFINED' THEN c.udt_name
|
|
||||||
ELSE c.data_type
|
|
||||||
END ||
|
|
||||||
CASE WHEN c.is_nullable = 'NO' THEN ' NOT NULL' ELSE '' END ||
|
|
||||||
COALESCE(' DEFAULT ' || c.column_default, '') AS line
|
|
||||||
FROM information_schema.columns c
|
|
||||||
WHERE c.table_schema = {ToSqlLiteral(schemaName)}
|
|
||||||
AND c.table_name = {ToSqlLiteral(tableName)}
|
|
||||||
),
|
|
||||||
pk AS (
|
|
||||||
SELECT
|
|
||||||
' CONSTRAINT ' || quote_ident(tc.constraint_name) || ' PRIMARY KEY (' ||
|
|
||||||
string_agg(quote_ident(kcu.column_name), ', ' ORDER BY kcu.ordinal_position) || ')' AS line
|
|
||||||
FROM information_schema.table_constraints tc
|
|
||||||
JOIN information_schema.key_column_usage kcu
|
|
||||||
ON tc.constraint_name = kcu.constraint_name
|
|
||||||
AND tc.table_schema = kcu.table_schema
|
|
||||||
AND tc.table_name = kcu.table_name
|
|
||||||
WHERE tc.constraint_type = 'PRIMARY KEY'
|
|
||||||
AND tc.table_schema = {ToSqlLiteral(schemaName)}
|
|
||||||
AND tc.table_name = {ToSqlLiteral(tableName)}
|
|
||||||
GROUP BY tc.constraint_name
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
'CREATE TABLE IF NOT EXISTS ' || quote_ident({ToSqlLiteral(schemaName)}) || '.' || quote_ident({ToSqlLiteral(tableName)}) || E'\n(\n' ||
|
|
||||||
string_agg(line, E',\n' ORDER BY sort_order) ||
|
|
||||||
E'\n);' AS ""Script""
|
|
||||||
FROM (
|
|
||||||
SELECT ordinal_position AS sort_order, line FROM cols
|
|
||||||
UNION ALL
|
|
||||||
SELECT 100000 AS sort_order, line FROM pk
|
|
||||||
) s;";
|
|
||||||
}
|
|
||||||
|
|
||||||
private static object GetDictionaryValue(IDictionary<string, object> row, string key)
|
|
||||||
{
|
|
||||||
if (row == null)
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (row.TryGetValue(key, out var value))
|
|
||||||
{
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
var match = row.FirstOrDefault(x => string.Equals(x.Key, key, StringComparison.OrdinalIgnoreCase));
|
|
||||||
return string.IsNullOrEmpty(match.Key) ? null : match.Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string GetDefaultSchemaName(DataSourceTypeEnum dataSourceType)
|
|
||||||
{
|
|
||||||
return dataSourceType == DataSourceTypeEnum.Postgresql ? "public" : "dbo";
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string ToSqlLiteral(string value)
|
|
||||||
{
|
|
||||||
return $"'{(value ?? string.Empty).Replace("'", "''")}'";
|
|
||||||
}
|
|
||||||
|
|
||||||
private static bool ToBoolean(object value)
|
|
||||||
{
|
|
||||||
return value switch
|
|
||||||
{
|
|
||||||
bool boolValue => boolValue,
|
|
||||||
short shortValue => shortValue != 0,
|
|
||||||
int intValue => intValue != 0,
|
|
||||||
long longValue => longValue != 0,
|
|
||||||
_ => bool.TryParse(value?.ToString(), out var parsed) && parsed
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private static int? ToNullableInt(object value)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return int.TryParse(value.ToString(), out var parsed) ? parsed : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private SqlQueryExecutionResultDto MapExecutionResult(SqlExecutionResult result, bool isDeployed = false)
|
private SqlQueryExecutionResultDto MapExecutionResult(SqlExecutionResult result, bool isDeployed = false)
|
||||||
{
|
{
|
||||||
return new SqlQueryExecutionResultDto
|
return new SqlQueryExecutionResultDto
|
||||||
|
|
@ -955,48 +617,27 @@ FROM (
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("api/app/sql-object-manager/sql-data-files")]
|
[HttpGet("api/app/sql-object-manager/sql-data-files")]
|
||||||
public Task<List<SqlDataFileDto>> GetSqlDataFilesAsync(
|
public Task<List<SqlDataFileDto>> GetSqlDataFilesAsync()
|
||||||
[FromQuery] string dataDirectoryName = "SqlData",
|
|
||||||
[FromQuery] string relativePath = "")
|
|
||||||
{
|
{
|
||||||
ValidateTenantAccess();
|
ValidateTenantAccess();
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var rootPath = ResolveSqlDataOutputPath(dataDirectoryName);
|
var outputPath = ResolveSqlDataOutputPath();
|
||||||
var outputPath = ResolveSqlDataChildPath(rootPath, relativePath);
|
|
||||||
if (!Directory.Exists(outputPath))
|
if (!Directory.Exists(outputPath))
|
||||||
return Task.FromResult(new List<SqlDataFileDto>());
|
return Task.FromResult(new List<SqlDataFileDto>());
|
||||||
|
|
||||||
var directories = Directory.GetDirectories(outputPath, "*", SearchOption.TopDirectoryOnly)
|
|
||||||
.Where(d => string.Equals(Path.GetFileName(d), "HostData", StringComparison.OrdinalIgnoreCase))
|
|
||||||
.Select(d => new SqlDataFileDto
|
|
||||||
{
|
|
||||||
FileName = Path.GetFileName(d)!,
|
|
||||||
Name = Path.GetFileName(d)!,
|
|
||||||
RelativePath = BuildSqlDataRelativePath(relativePath, Path.GetFileName(d)!),
|
|
||||||
IsDirectory = true,
|
|
||||||
CreatedAt = Directory.GetCreationTime(d)
|
|
||||||
});
|
|
||||||
|
|
||||||
var files = Directory.GetFiles(outputPath, "*.sql", SearchOption.TopDirectoryOnly)
|
var files = Directory.GetFiles(outputPath, "*.sql", SearchOption.TopDirectoryOnly)
|
||||||
.Select(f => new SqlDataFileDto
|
.Select(f => new SqlDataFileDto
|
||||||
{
|
{
|
||||||
FileName = Path.GetFileName(f)!,
|
FileName = Path.GetFileName(f)!,
|
||||||
Name = Path.GetFileName(f)!,
|
|
||||||
RelativePath = BuildSqlDataRelativePath(relativePath, Path.GetFileName(f)!),
|
|
||||||
IsDirectory = false,
|
|
||||||
CreatedAt = File.GetCreationTime(f)
|
CreatedAt = File.GetCreationTime(f)
|
||||||
})
|
})
|
||||||
.Where(x => !string.IsNullOrWhiteSpace(x.Name));
|
.Where(x => !string.IsNullOrWhiteSpace(x.FileName))
|
||||||
|
.OrderBy(x => x.FileName, StringComparer.OrdinalIgnoreCase)
|
||||||
var entries = directories
|
|
||||||
.Concat(files)
|
|
||||||
.OrderByDescending(x => x.IsDirectory)
|
|
||||||
.ThenBy(x => x.Name, StringComparer.OrdinalIgnoreCase)
|
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
return Task.FromResult(entries);
|
return Task.FromResult(files);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
@ -1005,140 +646,24 @@ FROM (
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("api/app/sql-object-manager/sql-data-file-content")]
|
|
||||||
public async Task<string> GetSqlDataFileContentAsync(
|
|
||||||
[FromQuery] string dataDirectoryName = "SqlData",
|
|
||||||
[FromQuery] string relativePath = "")
|
|
||||||
{
|
|
||||||
ValidateTenantAccess();
|
|
||||||
|
|
||||||
var rootPath = ResolveSqlDataOutputPath(dataDirectoryName);
|
|
||||||
var filePath = ResolveSqlDataChildPath(rootPath, relativePath);
|
|
||||||
|
|
||||||
if (!File.Exists(filePath))
|
|
||||||
throw new Volo.Abp.UserFriendlyException("SQL seed file was not found.");
|
|
||||||
|
|
||||||
if (!string.Equals(Path.GetExtension(filePath), ".sql", StringComparison.OrdinalIgnoreCase))
|
|
||||||
throw new Volo.Abp.UserFriendlyException("Only .sql files can be previewed.");
|
|
||||||
|
|
||||||
return await File.ReadAllTextAsync(filePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpPost("api/app/sql-object-manager/move-sql-data-file")]
|
|
||||||
public Task MoveSqlDataFileAsync(MoveSqlDataFileDto input)
|
|
||||||
{
|
|
||||||
ValidateTenantAccess();
|
|
||||||
|
|
||||||
if (input == null)
|
|
||||||
throw new Volo.Abp.UserFriendlyException("Invalid move request.");
|
|
||||||
|
|
||||||
var rootPath = ResolveSqlDataOutputPath(input.DataDirectoryName);
|
|
||||||
var sourcePath = ResolveSqlDataChildPath(rootPath, input.SourceRelativePath);
|
|
||||||
var targetPath = ResolveSqlDataChildPath(rootPath, input.TargetRelativePath);
|
|
||||||
|
|
||||||
if (!File.Exists(sourcePath))
|
|
||||||
throw new Volo.Abp.UserFriendlyException("Source file was not found.");
|
|
||||||
|
|
||||||
if (!string.Equals(Path.GetExtension(sourcePath), ".sql", StringComparison.OrdinalIgnoreCase) ||
|
|
||||||
!string.Equals(Path.GetExtension(targetPath), ".sql", StringComparison.OrdinalIgnoreCase))
|
|
||||||
{
|
|
||||||
throw new Volo.Abp.UserFriendlyException("Only .sql files can be moved.");
|
|
||||||
}
|
|
||||||
|
|
||||||
Directory.CreateDirectory(Path.GetDirectoryName(targetPath)!);
|
|
||||||
|
|
||||||
if (File.Exists(targetPath))
|
|
||||||
throw new Volo.Abp.UserFriendlyException("A file with the same name already exists in the target folder.");
|
|
||||||
|
|
||||||
File.Move(sourcePath, targetPath);
|
|
||||||
_logger.LogInformation("SQL seed file moved from {SourcePath} to {TargetPath}", sourcePath, targetPath);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string ResolveSqlDataOutputPath()
|
private string ResolveSqlDataOutputPath()
|
||||||
{
|
|
||||||
return ResolveSqlDataOutputPath("SqlData");
|
|
||||||
}
|
|
||||||
|
|
||||||
private string ResolveSqlDataOutputPath(string dataDirectoryName)
|
|
||||||
{
|
{
|
||||||
const string dbMigratorName = "Sozsoft.Platform.DbMigrator";
|
const string dbMigratorName = "Sozsoft.Platform.DbMigrator";
|
||||||
var safeDirectoryName = NormalizeSqlDataDirectoryName(dataDirectoryName);
|
|
||||||
var dir = new DirectoryInfo(_hostEnvironment.ContentRootPath);
|
var dir = new DirectoryInfo(_hostEnvironment.ContentRootPath);
|
||||||
|
|
||||||
while (dir != null)
|
while (dir != null)
|
||||||
{
|
{
|
||||||
var candidate = Path.Combine(dir.FullName, "src", dbMigratorName, "Seeds");
|
var candidate = Path.Combine(dir.FullName, "src", dbMigratorName, "Seeds");
|
||||||
if (Directory.Exists(candidate))
|
if (Directory.Exists(candidate))
|
||||||
return Path.Combine(candidate, safeDirectoryName);
|
return Path.Combine(candidate, "SqlData");
|
||||||
|
|
||||||
candidate = Path.Combine(dir.FullName, dbMigratorName, "Seeds");
|
candidate = Path.Combine(dir.FullName, dbMigratorName, "Seeds");
|
||||||
if (Directory.Exists(candidate))
|
if (Directory.Exists(candidate))
|
||||||
return Path.Combine(candidate, safeDirectoryName);
|
return Path.Combine(candidate, "SqlData");
|
||||||
|
|
||||||
dir = dir.Parent;
|
dir = dir.Parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Path.Combine(_hostEnvironment.ContentRootPath, "Seeds", safeDirectoryName);
|
return Path.Combine(_hostEnvironment.ContentRootPath, "Seeds", "SqlData");
|
||||||
}
|
|
||||||
|
|
||||||
private static string NormalizeSqlDataDirectoryName(string dataDirectoryName)
|
|
||||||
{
|
|
||||||
return string.Equals(dataDirectoryName, "PostgresData", StringComparison.OrdinalIgnoreCase)
|
|
||||||
? "PostgresData"
|
|
||||||
: "SqlData";
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string ResolveSqlDataChildPath(string rootPath, string relativePath)
|
|
||||||
{
|
|
||||||
var normalized = NormalizeSqlDataRelativePath(relativePath);
|
|
||||||
var fullPath = Path.GetFullPath(Path.Combine(rootPath, normalized));
|
|
||||||
var fullRoot = Path.GetFullPath(rootPath);
|
|
||||||
var fullRootWithSeparator = fullRoot.EndsWith(Path.DirectorySeparatorChar)
|
|
||||||
? fullRoot
|
|
||||||
: fullRoot + Path.DirectorySeparatorChar;
|
|
||||||
|
|
||||||
if (!string.Equals(fullPath, fullRoot, StringComparison.OrdinalIgnoreCase) &&
|
|
||||||
!fullPath.StartsWith(fullRootWithSeparator, StringComparison.OrdinalIgnoreCase))
|
|
||||||
{
|
|
||||||
throw new Volo.Abp.UserFriendlyException("Invalid path.");
|
|
||||||
}
|
|
||||||
|
|
||||||
return fullPath;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string NormalizeSqlDataRelativePath(string relativePath)
|
|
||||||
{
|
|
||||||
if (string.IsNullOrWhiteSpace(relativePath))
|
|
||||||
return string.Empty;
|
|
||||||
|
|
||||||
var normalized = relativePath.Replace('\\', '/').Trim('/');
|
|
||||||
var parts = normalized.Split('/', StringSplitOptions.RemoveEmptyEntries);
|
|
||||||
|
|
||||||
if (parts.Length == 0)
|
|
||||||
return string.Empty;
|
|
||||||
|
|
||||||
if (parts.Any(p => p == "." || p == ".." || p.IndexOfAny(Path.GetInvalidFileNameChars()) >= 0))
|
|
||||||
throw new Volo.Abp.UserFriendlyException("Invalid path.");
|
|
||||||
|
|
||||||
var isRootFile = parts.Length == 1 && parts[0].EndsWith(".sql", StringComparison.OrdinalIgnoreCase);
|
|
||||||
var isHostDataFolder = parts.Length == 1 && string.Equals(parts[0], "HostData", StringComparison.OrdinalIgnoreCase);
|
|
||||||
var isHostDataFile = parts.Length == 2 &&
|
|
||||||
string.Equals(parts[0], "HostData", StringComparison.OrdinalIgnoreCase) &&
|
|
||||||
parts[1].EndsWith(".sql", StringComparison.OrdinalIgnoreCase);
|
|
||||||
|
|
||||||
if (!isRootFile && !isHostDataFolder && !isHostDataFile)
|
|
||||||
throw new Volo.Abp.UserFriendlyException("Invalid path.");
|
|
||||||
|
|
||||||
return Path.Combine(parts);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string BuildSqlDataRelativePath(string parentRelativePath, string name)
|
|
||||||
{
|
|
||||||
if (string.IsNullOrWhiteSpace(parentRelativePath))
|
|
||||||
return name;
|
|
||||||
|
|
||||||
return $"{parentRelativePath.Trim('/', '\\')}/{name}";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Volo.Abp.Application;
|
using Volo.Abp.Application;
|
||||||
using Volo.Abp.Mapperly;
|
using Volo.Abp.AutoMapper;
|
||||||
using Volo.Abp.Modularity;
|
using Volo.Abp.Modularity;
|
||||||
|
|
||||||
namespace Sozsoft.SqlQueryManager;
|
namespace Sozsoft.SqlQueryManager;
|
||||||
|
|
@ -9,12 +9,17 @@ namespace Sozsoft.SqlQueryManager;
|
||||||
typeof(SqlQueryManagerDomainModule),
|
typeof(SqlQueryManagerDomainModule),
|
||||||
typeof(SqlQueryManagerApplicationContractsModule),
|
typeof(SqlQueryManagerApplicationContractsModule),
|
||||||
typeof(AbpDddApplicationModule),
|
typeof(AbpDddApplicationModule),
|
||||||
typeof(AbpMapperlyModule)
|
typeof(AbpAutoMapperModule)
|
||||||
)]
|
)]
|
||||||
public class SqlQueryManagerApplicationModule : AbpModule
|
public class SqlQueryManagerApplicationModule : AbpModule
|
||||||
{
|
{
|
||||||
public override void ConfigureServices(ServiceConfigurationContext context)
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||||||
{
|
{
|
||||||
context.Services.AddMapperlyObjectMapper<SqlQueryManagerApplicationModule>();
|
context.Services.AddAutoMapperObjectMapper<SqlQueryManagerApplicationModule>();
|
||||||
|
|
||||||
|
Configure<AbpAutoMapperOptions>(options =>
|
||||||
|
{
|
||||||
|
options.AddMaps<SqlQueryManagerApplicationModule>(validate: true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
using AutoMapper;
|
||||||
|
|
||||||
|
namespace Sozsoft.SqlQueryManager.Application;
|
||||||
|
|
||||||
|
// No entity-to-DTO mappings needed; SQL objects are no longer persisted in this module.
|
||||||
|
public class SqlQueryManagerAutoMapperProfile : Profile
|
||||||
|
{
|
||||||
|
public SqlQueryManagerAutoMapperProfile()
|
||||||
|
{
|
||||||
|
// intentionally empty
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
namespace Sozsoft.SqlQueryManager.Application;
|
|
||||||
|
|
@ -1,20 +1,20 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<GenerateEmbeddedFilesManifest>false</GenerateEmbeddedFilesManifest>
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
||||||
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="9.0.2" />
|
||||||
<PackageReference Include="Volo.Abp.Validation" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Validation" Version="9.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ using System.Linq;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Sozsoft.Platform.DynamicData;
|
using Sozsoft.Platform.DynamicData;
|
||||||
using Sozsoft.Platform.Enums;
|
|
||||||
using Sozsoft.Platform.Queries;
|
using Sozsoft.Platform.Queries;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Volo.Abp;
|
using Volo.Abp;
|
||||||
|
|
@ -39,25 +38,14 @@ public class SqlExecutorService : DomainService, ISqlExecutorService
|
||||||
.WithData("DataSourceCode", dataSourceCode);
|
.WithData("DataSourceCode", dataSourceCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
var repositoryKey = dataSource.DataSourceType switch
|
// Get appropriate repository based on database type
|
||||||
{
|
// For now, using MS SQL Server repository
|
||||||
DataSourceTypeEnum.Mssql => "Ms",
|
var repository = _serviceProvider.GetKeyedService<IDynamicDataRepository>("Ms");
|
||||||
DataSourceTypeEnum.Postgresql => "Pg",
|
|
||||||
_ => null
|
|
||||||
};
|
|
||||||
|
|
||||||
if (repositoryKey == null)
|
|
||||||
{
|
|
||||||
throw new BusinessException("SqlQueryManager:DataSourceTypeNotSupported")
|
|
||||||
.WithData("DatabaseType", dataSource.DataSourceType);
|
|
||||||
}
|
|
||||||
|
|
||||||
var repository = _serviceProvider.GetKeyedService<IDynamicDataRepository>(repositoryKey);
|
|
||||||
|
|
||||||
if (repository == null)
|
if (repository == null)
|
||||||
{
|
{
|
||||||
throw new BusinessException("SqlQueryManager:RepositoryNotFound")
|
throw new BusinessException("SqlQueryManager:RepositoryNotFound")
|
||||||
.WithData("DatabaseType", repositoryKey);
|
.WithData("DatabaseType", "Ms");
|
||||||
}
|
}
|
||||||
|
|
||||||
return repository;
|
return repository;
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain.Shared\Sozsoft.SqlQueryManager.Domain.Shared.csproj" />
|
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain.Shared\Sozsoft.SqlQueryManager.Domain.Shared.csproj" />
|
||||||
<ProjectReference Include="..\..\..\src\Sozsoft.Platform.Domain\Sozsoft.Platform.Domain.csproj" />
|
<ProjectReference Include="..\..\..\src\Sozsoft.Platform.Domain\Sozsoft.Platform.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<Import Project="..\common.props" />
|
<Import Project="..\common.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
<RootNamespace>Sozsoft.SqlQueryManager</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="10.0.0" />
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.0.2" />
|
||||||
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain\Sozsoft.SqlQueryManager.Domain.csproj" />
|
<ProjectReference Include="..\Sozsoft.SqlQueryManager.Domain\Sozsoft.SqlQueryManager.Domain.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,11 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ConfigureAwait.Fody" Version="3.4.0" PrivateAssets="All" />
|
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.1" PrivateAssets="All" />
|
||||||
<PackageReference Include="Fody" Version="6.9.3">
|
<PackageReference Include="Fody" Version="6.5.3">
|
||||||
<PrivateAssets>All</PrivateAssets>
|
<PrivateAssets>All</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="MimeKit" Version="4.16.0" />
|
|
||||||
<PackageReference Include="Scriban" Version="7.2.3" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -24,4 +21,4 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -5,11 +5,11 @@ namespace Sozsoft.Platform.AuditLogs;
|
||||||
|
|
||||||
public class AuditLogActionDto : EntityDto<Guid>
|
public class AuditLogActionDto : EntityDto<Guid>
|
||||||
{
|
{
|
||||||
public virtual Guid AuditLogId { get; set; }
|
public virtual Guid AuditLogId { get; protected set; }
|
||||||
public virtual string ServiceName { get; set; }
|
public virtual string ServiceName { get; protected set; }
|
||||||
public virtual string MethodName { get; set; }
|
public virtual string MethodName { get; protected set; }
|
||||||
public virtual string Parameters { get; set; }
|
public virtual string Parameters { get; protected set; }
|
||||||
public virtual DateTime ExecutionTime { get; set; }
|
public virtual DateTime ExecutionTime { get; protected set; }
|
||||||
public virtual int ExecutionDuration { get; set; }
|
public virtual int ExecutionDuration { get; protected set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,24 +13,24 @@ public class AuditLogDto : EntityDto<Guid>
|
||||||
}
|
}
|
||||||
|
|
||||||
public string ApplicationName { get; set; }
|
public string ApplicationName { get; set; }
|
||||||
public Guid? UserId { get; set; }
|
public Guid? UserId { get; protected set; }
|
||||||
public string UserName { get; set; }
|
public string UserName { get; protected set; }
|
||||||
public Guid? TenantId { get; set; }
|
public Guid? TenantId { get; protected set; }
|
||||||
public string TenantName { get; set; }
|
public string TenantName { get; protected set; }
|
||||||
public DateTime ExecutionTime { get; set; }
|
public DateTime ExecutionTime { get; protected set; }
|
||||||
public int ExecutionDuration { get; set; }
|
public int ExecutionDuration { get; protected set; }
|
||||||
public string ClientIpAddress { get; set; }
|
public string ClientIpAddress { get; protected set; }
|
||||||
public string ClientName { get; set; }
|
public string ClientName { get; protected set; }
|
||||||
public string ClientId { get; set; }
|
public string ClientId { get; set; }
|
||||||
public string CorrelationId { get; set; }
|
public string CorrelationId { get; set; }
|
||||||
public string BrowserInfo { get; set; }
|
public string BrowserInfo { get; protected set; }
|
||||||
public string HttpMethod { get; set; }
|
public string HttpMethod { get; protected set; }
|
||||||
public string Url { get; set; }
|
public string Url { get; protected set; }
|
||||||
public string Exceptions { get; set; }
|
public string Exceptions { get; protected set; }
|
||||||
public string Comments { get; set; }
|
public string Comments { get; protected set; }
|
||||||
public int? HttpStatusCode { get; set; }
|
public int? HttpStatusCode { get; set; }
|
||||||
public ICollection<EntityChangeDto> EntityChanges { get; set; }
|
public ICollection<EntityChangeDto> EntityChanges { get; protected set; }
|
||||||
public ICollection<AuditLogActionDto> Actions { get; set; }
|
public ICollection<AuditLogActionDto> Actions { get; protected set; }
|
||||||
|
|
||||||
public int? EntityChangeCount { get; set; }
|
public int? EntityChangeCount { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
using Volo.Abp.Application.Dtos;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.AuditLogs;
|
|
||||||
|
|
||||||
public class AuditLogListRequestDto : PagedAndSortedResultRequestDto
|
|
||||||
{
|
|
||||||
public string ListFormCode { get; set; }
|
|
||||||
public string EntityId { get; set; }
|
|
||||||
}
|
|
||||||
|
|
@ -12,12 +12,12 @@ public class EntityChangeDto : EntityDto<Guid>
|
||||||
PropertyChanges = new List<EntityPropertyChangeDto>();
|
PropertyChanges = new List<EntityPropertyChangeDto>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual Guid AuditLogId { get; set; }
|
public virtual Guid AuditLogId { get; protected set; }
|
||||||
public virtual DateTime ChangeTime { get; set; }
|
public virtual DateTime ChangeTime { get; protected set; }
|
||||||
public virtual EntityChangeType ChangeType { get; set; }
|
public virtual EntityChangeType ChangeType { get; protected set; }
|
||||||
public virtual Guid? EntityTenantId { get; set; }
|
public virtual Guid? EntityTenantId { get; protected set; }
|
||||||
public virtual string EntityId { get; set; }
|
public virtual string EntityId { get; protected set; }
|
||||||
public virtual string EntityTypeFullName { get; set; }
|
public virtual string EntityTypeFullName { get; protected set; }
|
||||||
public virtual ICollection<EntityPropertyChangeDto> PropertyChanges { get; set; }
|
public virtual ICollection<EntityPropertyChangeDto> PropertyChanges { get; protected set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,10 @@ namespace Sozsoft.Platform.AuditLogs;
|
||||||
|
|
||||||
public class EntityPropertyChangeDto : EntityDto<Guid>
|
public class EntityPropertyChangeDto : EntityDto<Guid>
|
||||||
{
|
{
|
||||||
public virtual Guid EntityChangeId { get; set; }
|
public virtual Guid EntityChangeId { get; protected set; }
|
||||||
public virtual string NewValue { get; set; }
|
public virtual string NewValue { get; protected set; }
|
||||||
public virtual string OriginalValue { get; set; }
|
public virtual string OriginalValue { get; protected set; }
|
||||||
public virtual string PropertyName { get; set; }
|
public virtual string PropertyName { get; protected set; }
|
||||||
public virtual string PropertyTypeFullName { get; set; }
|
public virtual string PropertyTypeFullName { get; protected set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
using System;
|
|
||||||
using Volo.Abp.Content;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.Identity.Dto;
|
|
||||||
|
|
||||||
public class UserAvatarUpdateInput
|
|
||||||
{
|
|
||||||
public Guid UserId { get; set; }
|
|
||||||
|
|
||||||
public IRemoteStreamContent Avatar { get; set; }
|
|
||||||
}
|
|
||||||
|
|
@ -8,16 +8,16 @@ public class AnnouncementDto : FullAuditedEntityDto<Guid>
|
||||||
{
|
{
|
||||||
public Guid? TenantId { get; set; }
|
public Guid? TenantId { get; set; }
|
||||||
|
|
||||||
public string Title { get; set; } = string.Empty;
|
public string Title { get; set; }
|
||||||
public string Excerpt { get; set; } = string.Empty;
|
public string Excerpt { get; set; }
|
||||||
public string Content { get; set; } = string.Empty;
|
public string Content { get; set; }
|
||||||
public string ImageUrl { get; set; } = string.Empty;
|
public string ImageUrl { get; set; }
|
||||||
public string Category { get; set; } = string.Empty;
|
public string Category { get; set; }
|
||||||
public Guid? UserId { get; set; }
|
public Guid? UserId { get; set; }
|
||||||
public UserInfoViewModel? User { get; set; }
|
public UserInfoViewModel User { get; set; }
|
||||||
public DateTime PublishDate { get; set; }
|
public DateTime PublishDate { get; set; }
|
||||||
public DateTime? ExpiryDate { get; set; }
|
public DateTime? ExpiryDate { get; set; }
|
||||||
public bool IsPinned { get; set; }
|
public bool IsPinned { get; set; }
|
||||||
public int ViewCount { get; set; }
|
public int ViewCount { get; set; }
|
||||||
public string Attachments { get; set; } = string.Empty;
|
public string Attachments { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ public class SocialPostDto : FullAuditedEntityDto<Guid>
|
||||||
{
|
{
|
||||||
public Guid? UserId { get; set; }
|
public Guid? UserId { get; set; }
|
||||||
public UserInfoViewModel? User { get; set; }
|
public UserInfoViewModel? User { get; set; }
|
||||||
public string Content { get; set; } = string.Empty;
|
public string Content { get; set; }
|
||||||
|
|
||||||
public int LikeCount { get; set; }
|
public int LikeCount { get; set; }
|
||||||
public bool IsLiked { get; set; }
|
public bool IsLiked { get; set; }
|
||||||
|
|
@ -17,14 +17,14 @@ public class SocialPostDto : FullAuditedEntityDto<Guid>
|
||||||
|
|
||||||
public SocialLocationDto? Location { get; set; }
|
public SocialLocationDto? Location { get; set; }
|
||||||
public SocialMediaDto? Media { get; set; }
|
public SocialMediaDto? Media { get; set; }
|
||||||
public List<SocialCommentDto> Comments { get; set; } = [];
|
public List<SocialCommentDto> Comments { get; set; }
|
||||||
public List<SocialLikeDto> Likes { get; set; } = [];
|
public List<SocialLikeDto> Likes { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SocialLocationDto : FullAuditedEntityDto<Guid>
|
public class SocialLocationDto : FullAuditedEntityDto<Guid>
|
||||||
{
|
{
|
||||||
public Guid SocialPostId { get; set; }
|
public Guid SocialPostId { get; set; }
|
||||||
public string Name { get; set; } = string.Empty;
|
public string Name { get; set; }
|
||||||
public string? Address { get; set; }
|
public string? Address { get; set; }
|
||||||
public double? Lat { get; set; }
|
public double? Lat { get; set; }
|
||||||
public double? Lng { get; set; }
|
public double? Lng { get; set; }
|
||||||
|
|
@ -34,8 +34,8 @@ public class SocialLocationDto : FullAuditedEntityDto<Guid>
|
||||||
public class SocialMediaDto : FullAuditedEntityDto<Guid>
|
public class SocialMediaDto : FullAuditedEntityDto<Guid>
|
||||||
{
|
{
|
||||||
public Guid SocialPostId { get; set; }
|
public Guid SocialPostId { get; set; }
|
||||||
public string Type { get; set; } = string.Empty; // image | video | poll
|
public string Type { get; set; } // image | video | poll
|
||||||
public string[] Urls { get; set; } = [];
|
public string[] Urls { get; set; }
|
||||||
|
|
||||||
// Poll Fields
|
// Poll Fields
|
||||||
public string? PollQuestion { get; set; }
|
public string? PollQuestion { get; set; }
|
||||||
|
|
@ -43,13 +43,13 @@ public class SocialMediaDto : FullAuditedEntityDto<Guid>
|
||||||
public DateTime? PollEndsAt { get; set; }
|
public DateTime? PollEndsAt { get; set; }
|
||||||
public string? PollUserVoteId { get; set; }
|
public string? PollUserVoteId { get; set; }
|
||||||
|
|
||||||
public List<SocialPollOptionDto> PollOptions { get; set; } = [];
|
public List<SocialPollOptionDto> PollOptions { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SocialPollOptionDto : FullAuditedEntityDto<Guid>
|
public class SocialPollOptionDto : FullAuditedEntityDto<Guid>
|
||||||
{
|
{
|
||||||
public Guid SocialMediaId { get; set; }
|
public Guid SocialMediaId { get; set; }
|
||||||
public string Text { get; set; } = string.Empty;
|
public string Text { get; set; }
|
||||||
public int Votes { get; set; }
|
public int Votes { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -58,7 +58,7 @@ public class SocialCommentDto : FullAuditedEntityDto<Guid>
|
||||||
public Guid SocialPostId { get; set; }
|
public Guid SocialPostId { get; set; }
|
||||||
public Guid? UserId { get; set; }
|
public Guid? UserId { get; set; }
|
||||||
public UserInfoViewModel? User { get; set; }
|
public UserInfoViewModel? User { get; set; }
|
||||||
public string Content { get; set; } = string.Empty;
|
public string Content { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SocialLikeDto : FullAuditedEntityDto<Guid>
|
public class SocialLikeDto : FullAuditedEntityDto<Guid>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ using System.Collections.Generic;
|
||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
using Sozsoft.Platform.Enums;
|
|
||||||
using Volo.Abp.Application.Dtos;
|
using Volo.Abp.Application.Dtos;
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
namespace Sozsoft.Platform.ListForms;
|
||||||
|
|
@ -223,7 +222,6 @@ public class ColumnFormatDto : AuditedEntityDto<Guid>
|
||||||
public bool CanExport { get; set; }
|
public bool CanExport { get; set; }
|
||||||
|
|
||||||
public object DefaultValue { get; set; }
|
public object DefaultValue { get; set; }
|
||||||
public FieldCustomValueTypeEnum DefaultValueType { get; set; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public string PivotSettingsJson { get; set; }
|
public string PivotSettingsJson { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ using Volo.Abp.Application.Dtos;
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
namespace Sozsoft.Platform.ListForms;
|
||||||
|
|
||||||
public class ListFormImportLogDto : AuditedEntityDto<Guid>
|
public class ListFormImportExecuteDto : AuditedEntityDto<Guid>
|
||||||
{
|
{
|
||||||
public Guid ImportId { get; set; }
|
public Guid ImportId { get; set; }
|
||||||
public string BlobName { get; set; }
|
public string BlobName { get; set; }
|
||||||
|
|
@ -17,13 +17,5 @@ public class GridEditingPopupDto
|
||||||
/// <summary> popup ekranin küçültülüp büyütülebilmesini saglar
|
/// <summary> popup ekranin küçültülüp büyütülebilmesini saglar
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool ResizeEnabled { get; set; } = true;
|
public bool ResizeEnabled { get; set; } = true;
|
||||||
/// <summary> popup ekranin sürüklenebilmesini saglar
|
|
||||||
public bool DragEnabled { get; set; } = true;
|
|
||||||
/// <summary> popup ekranin kapatildiktan sonra eski konumunu hatirlamasini saglar
|
|
||||||
/// </summary>
|
|
||||||
public bool RestorePosition { get; set; } = true;
|
|
||||||
/// <summary>Accepted Values: 'top' | 'bottom' | 'left' | 'right' | 'center'
|
|
||||||
/// </summary>
|
|
||||||
public string Position { get; set; } = "center";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -394,19 +394,6 @@ public class GridOptionsDto : AuditedEntityDto<Guid>
|
||||||
set { LayoutJson = JsonSerializer.Serialize(value); }
|
set { LayoutJson = JsonSerializer.Serialize(value); }
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public string WorkflowJson { get; set; }
|
|
||||||
public WorkflowDto WorkflowDto
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
if (!string.IsNullOrEmpty(WorkflowJson))
|
|
||||||
return JsonSerializer.Deserialize<WorkflowDto>(WorkflowJson);
|
|
||||||
return new WorkflowDto();
|
|
||||||
}
|
|
||||||
set { WorkflowJson = JsonSerializer.Serialize(value); }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary> Chart a yetkili kullanıcı. UserId ve RoleId boş ise herkes yetkilidir
|
/// <summary> Chart a yetkili kullanıcı. UserId ve RoleId boş ise herkes yetkilidir
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string UserId { get; set; }
|
public string UserId { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class WorkflowDto
|
|
||||||
{
|
|
||||||
public string ApprovalUserFieldName { get; set; }
|
|
||||||
public bool IsFilterUserName { get; set; }
|
|
||||||
public string ApprovalDateFieldName { get; set; }
|
|
||||||
public string ApprovalStatusFieldName { get; set; }
|
|
||||||
public string ApprovalDescriptionFieldName { get; set; }
|
|
||||||
|
|
||||||
public List<ListFormWorkflowCriteriaDto> Criteria { get; set; } = [];
|
|
||||||
}
|
|
||||||
|
|
@ -6,6 +6,5 @@ public interface IListFormSelectAppService
|
||||||
{
|
{
|
||||||
Task<SelectDto> GetSelectAsync(SelectRequestDto input);
|
Task<SelectDto> GetSelectAsync(SelectRequestDto input);
|
||||||
Task<GridDto> GetGridAsync(string ListFormCode);
|
Task<GridDto> GetGridAsync(string ListFormCode);
|
||||||
Task<string> GetNextSequenceValueAsync(string SequenceName);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms.ImportManager;
|
namespace Sozsoft.Platform.ListForms.ImportManager;
|
||||||
|
|
||||||
public class ImportExecuteRequest
|
public class ExecuteImportRequest
|
||||||
{
|
{
|
||||||
public Guid SessionId { get; set; }
|
public Guid SessionId { get; set; }
|
||||||
public string ListFormCode { get; set; }
|
public string ListFormCode { get; set; }
|
||||||
|
|
@ -11,7 +11,7 @@ public interface IImportAppService
|
||||||
Task<ListFormsImportDto> GetAsync(Guid sessionId);
|
Task<ListFormsImportDto> GetAsync(Guid sessionId);
|
||||||
Task<List<ListFormsImportDto>> GetListByListFormCodeAsync(string name);
|
Task<List<ListFormsImportDto>> GetListByListFormCodeAsync(string name);
|
||||||
Task<ListFormsImportDto> UpdateAsync(Guid sessionId, ListFormsImportDto input);
|
Task<ListFormsImportDto> UpdateAsync(Guid sessionId, ListFormsImportDto input);
|
||||||
Task<ListFormImportLogDto> ExecuteAsync(ImportExecuteRequest request);
|
Task<ListFormImportExecuteDto> ExecuteAsync(ExecuteImportRequest request);
|
||||||
Task DeleteAsync(Guid id);
|
Task DeleteAsync(Guid id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,6 @@ public class ListFormEditTabs
|
||||||
public const string StateForm = "state";
|
public const string StateForm = "state";
|
||||||
public const string SubFormJsonRow = "subForm";
|
public const string SubFormJsonRow = "subForm";
|
||||||
public const string WidgetForm = "widget";
|
public const string WidgetForm = "widget";
|
||||||
public const string WorkflowForm = "workflow";
|
|
||||||
public const string Fields = "fields";
|
public const string Fields = "fields";
|
||||||
public const string Customization = "customization";
|
public const string Customization = "customization";
|
||||||
public const string ExtraFilterForm = "extraFilter";
|
public const string ExtraFilterForm = "extraFilter";
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,6 @@ public class ListFormWizardDto
|
||||||
|
|
||||||
public string PermissionGroupName { get; set; }
|
public string PermissionGroupName { get; set; }
|
||||||
public string MenuParentCode { get; set; }
|
public string MenuParentCode { get; set; }
|
||||||
public string MenuParentIcon { get; set; }
|
|
||||||
public string MenuIcon { get; set; }
|
public string MenuIcon { get; set; }
|
||||||
public string DataSourceCode { get; set; }
|
public string DataSourceCode { get; set; }
|
||||||
public string DataSourceConnectionString { get; set; }
|
public string DataSourceConnectionString { get; set; }
|
||||||
|
|
@ -69,8 +68,5 @@ public class ListFormWizardDto
|
||||||
public string SchedulerEndDateExpr { get; set; }
|
public string SchedulerEndDateExpr { get; set; }
|
||||||
|
|
||||||
public List<WizardColumnGroupInputDto> Groups { get; set; } = new();
|
public List<WizardColumnGroupInputDto> Groups { get; set; } = new();
|
||||||
public List<SubFormDto> SubForms { get; set; } = new();
|
|
||||||
public List<WidgetEditDto> Widgets { get; set; } = new();
|
|
||||||
public WorkflowDto Workflow { get; set; } = new();
|
|
||||||
public List<ListFormWorkflowCriteriaDto> WorkflowCriteria { get; set; } = new();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ public class WizardColumnItemInputDto
|
||||||
public string EditorScript { get; set; }
|
public string EditorScript { get; set; }
|
||||||
public int ColSpan { get; set; } = 1;
|
public int ColSpan { get; set; } = 1;
|
||||||
public bool IsRequired { get; set; }
|
public bool IsRequired { get; set; }
|
||||||
public bool IncludeInEditingForm { get; set; } = true;
|
|
||||||
public DbType DbSourceType { get; set; } = DbType.String;
|
public DbType DbSourceType { get; set; } = DbType.String;
|
||||||
public string TurkishCaption { get; set; }
|
public string TurkishCaption { get; set; }
|
||||||
public string EnglishCaption { get; set; }
|
public string EnglishCaption { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class CompareOutcomeDto
|
|
||||||
{
|
|
||||||
public string Label { get; set; }
|
|
||||||
public string TargetId { get; set; }
|
|
||||||
public List<WorkflowConditionDto> Conditions { get; set; } = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class CreateUpdateListFormWorkflowCriteriaDto
|
|
||||||
{
|
|
||||||
public string Id { get; set; }
|
|
||||||
public string ListFormCode { get; set; }
|
|
||||||
public string Kind { get; set; }
|
|
||||||
public string Title { get; set; }
|
|
||||||
public string CompareColumn { get; set; }
|
|
||||||
public string CompareOperator { get; set; }
|
|
||||||
public decimal CompareValue { get; set; }
|
|
||||||
public string Approver { get; set; }
|
|
||||||
public string NextOnStart { get; set; }
|
|
||||||
public string NextOnTrue { get; set; }
|
|
||||||
public string NextOnFalse { get; set; }
|
|
||||||
public string NextOnApprove { get; set; }
|
|
||||||
public string NextOnReject { get; set; }
|
|
||||||
public int PositionX { get; set; }
|
|
||||||
public int PositionY { get; set; }
|
|
||||||
public List<CompareOutcomeDto> CompareOutcomes { get; set; } = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class DecisionWorkflowDto
|
|
||||||
{
|
|
||||||
public string ListFormCode { get; set; }
|
|
||||||
public object[] Keys { get; set; }
|
|
||||||
public string CurrentNodeId { get; set; }
|
|
||||||
public bool Approved { get; set; }
|
|
||||||
public string Note { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Volo.Abp.Application.Services;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public interface IListFormWorkflowAppService : IApplicationService
|
|
||||||
{
|
|
||||||
Task<ListFormWorkflowStateDto> GetCriteriaAsync(string listFormCode = null);
|
|
||||||
Task<ListFormWorkflowCriteriaDto> SaveCriteriaAsync(CreateUpdateListFormWorkflowCriteriaDto input);
|
|
||||||
Task DeleteCriteriaAsync(string id);
|
|
||||||
Task<ListFormWorkflowStateDto> ResetDemoAsync(string listFormCode = null);
|
|
||||||
Task<WorkflowRunResultDto> StartAsync(StartWorkflowDto input);
|
|
||||||
Task<WorkflowRunResultDto> DecisionAsync(DecisionWorkflowDto input);
|
|
||||||
}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using Volo.Abp.Application.Dtos;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class ListFormWorkflowCriteriaDto : EntityDto<string>
|
|
||||||
{
|
|
||||||
public string ListFormCode { get; set; }
|
|
||||||
public string Kind { get; set; }
|
|
||||||
public string Title { get; set; }
|
|
||||||
public string CompareColumn { get; set; }
|
|
||||||
public string CompareOperator { get; set; }
|
|
||||||
public decimal CompareValue { get; set; }
|
|
||||||
public string Approver { get; set; }
|
|
||||||
public string NextOnStart { get; set; }
|
|
||||||
public string NextOnTrue { get; set; }
|
|
||||||
public string NextOnFalse { get; set; }
|
|
||||||
public string NextOnApprove { get; set; }
|
|
||||||
public string NextOnReject { get; set; }
|
|
||||||
public int PositionX { get; set; }
|
|
||||||
public int PositionY { get; set; }
|
|
||||||
public List<CompareOutcomeDto> CompareOutcomes { get; set; } = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class ListFormWorkflowStateDto
|
|
||||||
{
|
|
||||||
public List<ListFormWorkflowCriteriaDto> Criteria { get; set; } = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class StartWorkflowDto
|
|
||||||
{
|
|
||||||
public string ListFormCode { get; set; }
|
|
||||||
public object[] Keys { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class WorkflowConditionDto
|
|
||||||
{
|
|
||||||
public string CompareColumn { get; set; }
|
|
||||||
public string CompareOperator { get; set; }
|
|
||||||
public decimal CompareValue { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class WorkflowHistoryDto
|
|
||||||
{
|
|
||||||
public DateTime Time { get; set; }
|
|
||||||
public string Action { get; set; }
|
|
||||||
public string Note { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Sozsoft.Platform.ListForms;
|
|
||||||
|
|
||||||
public class WorkflowRunResultDto
|
|
||||||
{
|
|
||||||
public object[] Keys { get; set; }
|
|
||||||
public string CurrentNodeId { get; set; }
|
|
||||||
public string CurrentNodeTitle { get; set; }
|
|
||||||
public string CurrentNodeKind { get; set; }
|
|
||||||
public bool WaitingApproval { get; set; }
|
|
||||||
public bool Completed { get; set; }
|
|
||||||
public List<string> ToastMessages { get; set; } = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -220,7 +220,7 @@ public static class LookupQueryValues
|
||||||
$"\"Name\" AS \"Name\" " +
|
$"\"Name\" AS \"Name\" " +
|
||||||
$"FROM \"{TableNameResolver.GetFullTableName(nameof(TableNameEnum.JobPosition))}\" " +
|
$"FROM \"{TableNameResolver.GetFullTableName(nameof(TableNameEnum.JobPosition))}\" " +
|
||||||
$"WHERE " +
|
$"WHERE " +
|
||||||
$"(\"DepartmentId\" = @param0 OR \"ParentId\" IS NULL OR @param0 IS NULL) " +
|
$"(\"DepartmentId\" = @param0 OR @param0 IS NULL) " +
|
||||||
$"AND \"IsDeleted\" = 'false' " +
|
$"AND \"IsDeleted\" = 'false' " +
|
||||||
$"ORDER BY \"Name\";";
|
$"ORDER BY \"Name\";";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ public class RouteDto : EntityDto<Guid>
|
||||||
{
|
{
|
||||||
public string Key { get; set; }
|
public string Key { get; set; }
|
||||||
public string Path { get; set; }
|
public string Path { get; set; }
|
||||||
public string ComponentType { get; set; }
|
|
||||||
public string ComponentPath { get; set; }
|
public string ComponentPath { get; set; }
|
||||||
public string RouteType { get; set; }
|
public string RouteType { get; set; }
|
||||||
public string[] Authority { get; set; }
|
public string[] Authority { get; set; }
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue