Compare commits
No commits in common. "2bc20fccc82f9998ec2994c396d3c71518c5a88d" and "5c06865b1fdc18c1527d78a69618741786880074" have entirely different histories.
2bc20fccc8
...
5c06865b1f
@ -1,10 +1,11 @@
|
|||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Identity;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Newsbot.Collector.Api.Domain;
|
|
||||||
using Newsbot.Collector.Api.Domain.Requests;
|
using Newsbot.Collector.Api.Domain.Requests;
|
||||||
using Newsbot.Collector.Api.Domain.Response;
|
using Newsbot.Collector.Api.Domain.Response;
|
||||||
using Newsbot.Collector.Api.Domain.Results;
|
using Newsbot.Collector.Api.Domain.Results;
|
||||||
using Newsbot.Collector.Api.Services;
|
using Newsbot.Collector.Api.Services;
|
||||||
|
using Newsbot.Collector.Domain.Dto;
|
||||||
|
using Newsbot.Collector.Domain.Entities;
|
||||||
|
|
||||||
namespace Newsbot.Collector.Api.Controllers;
|
namespace Newsbot.Collector.Api.Controllers;
|
||||||
|
|
||||||
@ -70,21 +71,6 @@ public class AccountController : ControllerBase
|
|||||||
return CheckIfSuccessful(response);
|
return CheckIfSuccessful(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("addRole")]
|
|
||||||
[Authorize(Roles = AuthorizationRoles.Administrators)]
|
|
||||||
public ActionResult AddRole([FromBody] AddRoleRequest request)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
_identityService.AddRole(request.RoleName ?? "", request.UserId ?? "");
|
|
||||||
return new OkResult();
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
return new BadRequestResult();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private ActionResult CheckIfSuccessful(AuthenticationResult result)
|
private ActionResult CheckIfSuccessful(AuthenticationResult result)
|
||||||
{
|
{
|
||||||
if (!result.IsSuccessful)
|
if (!result.IsSuccessful)
|
||||||
|
@ -3,7 +3,6 @@ using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using Newsbot.Collector.Api.Domain;
|
|
||||||
using Newsbot.Collector.Domain.Models.Config;
|
using Newsbot.Collector.Domain.Models.Config;
|
||||||
using Newsbot.Collector.Services.Jobs;
|
using Newsbot.Collector.Services.Jobs;
|
||||||
|
|
||||||
@ -25,7 +24,6 @@ public class CodeProjectController
|
|||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("check")]
|
[HttpPost("check")]
|
||||||
[Authorize(Roles = AuthorizationRoles.Administrators)]
|
|
||||||
public void PullNow()
|
public void PullNow()
|
||||||
{
|
{
|
||||||
BackgroundJob.Enqueue<CodeProjectWatcherJob>(x => x.InitAndExecute(new CodeProjectWatcherJobOptions
|
BackgroundJob.Enqueue<CodeProjectWatcherJob>(x => x.InitAndExecute(new CodeProjectWatcherJobOptions
|
||||||
|
@ -3,7 +3,6 @@ using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using Newsbot.Collector.Api.Domain;
|
|
||||||
using Newsbot.Collector.Domain.Models.Config;
|
using Newsbot.Collector.Domain.Models.Config;
|
||||||
using Newsbot.Collector.Domain.Models.Config.Sources;
|
using Newsbot.Collector.Domain.Models.Config.Sources;
|
||||||
using Newsbot.Collector.Services.Jobs;
|
using Newsbot.Collector.Services.Jobs;
|
||||||
@ -28,7 +27,6 @@ public class RssController
|
|||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("check")]
|
[HttpPost("check")]
|
||||||
[Authorize(Roles = AuthorizationRoles.Administrators)]
|
|
||||||
public void CheckReddit()
|
public void CheckReddit()
|
||||||
{
|
{
|
||||||
BackgroundJob.Enqueue<RssWatcherJob>(x => x.InitAndExecute(new RssWatcherJobOptions
|
BackgroundJob.Enqueue<RssWatcherJob>(x => x.InitAndExecute(new RssWatcherJobOptions
|
||||||
|
@ -2,7 +2,6 @@ using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using Newsbot.Collector.Api.Domain;
|
|
||||||
using Newsbot.Collector.Database.Repositories;
|
using Newsbot.Collector.Database.Repositories;
|
||||||
using Newsbot.Collector.Domain.Consts;
|
using Newsbot.Collector.Domain.Consts;
|
||||||
using Newsbot.Collector.Domain.Dto;
|
using Newsbot.Collector.Domain.Dto;
|
||||||
@ -200,14 +199,12 @@ public class SourcesController : ControllerBase
|
|||||||
return SourceDto.Convert(item);
|
return SourceDto.Convert(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Authorize(Roles = AuthorizationRoles.Administrators)]
|
|
||||||
[HttpPost("{id}/disable")]
|
[HttpPost("{id}/disable")]
|
||||||
public void Disable(Guid id)
|
public void Disable(Guid id)
|
||||||
{
|
{
|
||||||
_sources.Disable(id);
|
_sources.Disable(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Authorize(Roles = AuthorizationRoles.Administrators)]
|
|
||||||
[HttpPost("{id}/enable")]
|
[HttpPost("{id}/enable")]
|
||||||
public void Enable(Guid id)
|
public void Enable(Guid id)
|
||||||
{
|
{
|
||||||
@ -215,7 +212,6 @@ public class SourcesController : ControllerBase
|
|||||||
}
|
}
|
||||||
|
|
||||||
[HttpDelete("{id}")]
|
[HttpDelete("{id}")]
|
||||||
[Authorize(Roles = AuthorizationRoles.Administrators)]
|
|
||||||
public void Delete(Guid id, bool purgeOrphanedRecords)
|
public void Delete(Guid id, bool purgeOrphanedRecords)
|
||||||
{
|
{
|
||||||
_sources.Delete(id);
|
_sources.Delete(id);
|
||||||
|
@ -3,7 +3,6 @@ using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using Newsbot.Collector.Api.Domain;
|
|
||||||
using Newsbot.Collector.Domain.Models.Config;
|
using Newsbot.Collector.Domain.Models.Config;
|
||||||
using Newsbot.Collector.Domain.Models.Config.Sources;
|
using Newsbot.Collector.Domain.Models.Config.Sources;
|
||||||
using Newsbot.Collector.Services.Jobs;
|
using Newsbot.Collector.Services.Jobs;
|
||||||
@ -28,7 +27,6 @@ public class YoutubeController
|
|||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("check")]
|
[HttpPost("check")]
|
||||||
[Authorize(Policy = AuthorizationRoles.Administrators)]
|
|
||||||
public void CheckYoutube()
|
public void CheckYoutube()
|
||||||
{
|
{
|
||||||
BackgroundJob.Enqueue<YoutubeWatcherJob>(x => x.InitAndExecute(new YoutubeWatcherJobOptions
|
BackgroundJob.Enqueue<YoutubeWatcherJob>(x => x.InitAndExecute(new YoutubeWatcherJobOptions
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
||||||
using Microsoft.AspNetCore.Authorization;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Newsbot.Collector.Api.Authentication;
|
using Newsbot.Collector.Api.Authentication;
|
||||||
using Newsbot.Collector.Domain.Entities;
|
using Newsbot.Collector.Domain.Entities;
|
||||||
using Newsbot.Collector.Domain.Interfaces;
|
using Newsbot.Collector.Domain.Interfaces;
|
||||||
|
|
||||||
namespace Newsbot.Collector.Api.Controllers.v1;
|
namespace Newsbot.Collector.Api.Controllers;
|
||||||
|
|
||||||
[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
|
|
||||||
[ApiController]
|
[ApiController]
|
||||||
[Route("api/v1/user")]
|
[Route("api/v1/user")]
|
||||||
public class UserController : Controller
|
public class UserController : Controller
|
||||||
{
|
{
|
||||||
private readonly ILogger<UserController> _logger;
|
private ILogger<UserController> _logger;
|
||||||
private readonly IUserSourceSubscription _subscription;
|
private IUserSourceSubscription _subscription;
|
||||||
|
|
||||||
public UserController(ILogger<UserController> logger, IUserSourceSubscription subscription)
|
public UserController(ILogger<UserController> logger, IUserSourceSubscription subscription)
|
||||||
{
|
{
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
namespace Newsbot.Collector.Api.Domain;
|
|
||||||
|
|
||||||
public class AuthorizationRoles
|
|
||||||
{
|
|
||||||
public const string Administrators = "Administrators";
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
namespace Newsbot.Collector.Api.Domain.Requests;
|
|
||||||
|
|
||||||
public class AddRoleRequest
|
|
||||||
{
|
|
||||||
public string? RoleName { get; set; }
|
|
||||||
public string? UserId { get; set; }
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
using Microsoft.AspNetCore.Mvc.Filters;
|
|
||||||
using Newsbot.Collector.Domain.Consts;
|
|
||||||
|
|
||||||
namespace Newsbot.Collector.Api.Filters;
|
|
||||||
|
|
||||||
[AttributeUsage(AttributeTargets.Class| AttributeTargets.Method)]
|
|
||||||
public class ApiKeyAuthAttribute : Attribute, IAsyncActionFilter
|
|
||||||
{
|
|
||||||
private const string ApiKeyHeaderName = "X-API-KEY";
|
|
||||||
|
|
||||||
public async Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)
|
|
||||||
{
|
|
||||||
if (!context.HttpContext.Request.Headers.TryGetValue(ApiKeyHeaderName, out var foundKey))
|
|
||||||
{
|
|
||||||
context.Result = new BadRequestResult();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var config = context.HttpContext.RequestServices.GetRequiredService<IConfiguration>();
|
|
||||||
var apiKeys = config.GetValue<string[]>(ConfigConst.ApiKeys);
|
|
||||||
|
|
||||||
foreach (var key in apiKeys ?? Array.Empty<string?>())
|
|
||||||
{
|
|
||||||
if (key != foundKey) continue;
|
|
||||||
await next();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
context.Result = new BadRequestResult();
|
|
||||||
}
|
|
||||||
}
|
|
@ -10,7 +10,6 @@ using Microsoft.IdentityModel.Tokens;
|
|||||||
using Microsoft.OpenApi.Models;
|
using Microsoft.OpenApi.Models;
|
||||||
using Newsbot.Collector.Api;
|
using Newsbot.Collector.Api;
|
||||||
using Newsbot.Collector.Api.Authentication;
|
using Newsbot.Collector.Api.Authentication;
|
||||||
using Newsbot.Collector.Api.Domain;
|
|
||||||
using Newsbot.Collector.Api.Services;
|
using Newsbot.Collector.Api.Services;
|
||||||
using Newsbot.Collector.Database;
|
using Newsbot.Collector.Database;
|
||||||
using Newsbot.Collector.Database.Repositories;
|
using Newsbot.Collector.Database.Repositories;
|
||||||
@ -40,12 +39,10 @@ Log.Information("Starting up");
|
|||||||
var dbconn = config.GetConnectionString("Database");
|
var dbconn = config.GetConnectionString("Database");
|
||||||
builder.Services.AddDbContext<DatabaseContext>(o => o.UseNpgsql(dbconn ?? ""));
|
builder.Services.AddDbContext<DatabaseContext>(o => o.UseNpgsql(dbconn ?? ""));
|
||||||
|
|
||||||
// Configure how Identity will be managed
|
|
||||||
builder.Services.AddIdentity<IdentityUser, IdentityRole>()
|
builder.Services.AddIdentity<IdentityUser, IdentityRole>()
|
||||||
.AddRoles<IdentityRole>()
|
.AddRoles<IdentityRole>()
|
||||||
.AddEntityFrameworkStores<DatabaseContext>();
|
.AddEntityFrameworkStores<DatabaseContext>();
|
||||||
|
|
||||||
// Allow the controllers to access all the table repositories based on the interface
|
|
||||||
builder.Services.AddScoped<IArticlesRepository, ArticlesTable>();
|
builder.Services.AddScoped<IArticlesRepository, ArticlesTable>();
|
||||||
builder.Services.AddScoped<IDiscordQueueRepository, DiscordQueueTable>();
|
builder.Services.AddScoped<IDiscordQueueRepository, DiscordQueueTable>();
|
||||||
builder.Services.AddScoped<IDiscordWebHooksRepository, DiscordWebhooksTable>();
|
builder.Services.AddScoped<IDiscordWebHooksRepository, DiscordWebhooksTable>();
|
||||||
@ -63,7 +60,7 @@ builder.Services.AddHangfire(f => f.UseMemoryStorage());
|
|||||||
builder.Services.AddHangfireServer();
|
builder.Services.AddHangfireServer();
|
||||||
GlobalConfiguration.Configuration.UseSerilogLogProvider();
|
GlobalConfiguration.Configuration.UseSerilogLogProvider();
|
||||||
|
|
||||||
// Build Health Checks
|
// Add Health Checks
|
||||||
builder.Services.AddHealthChecks()
|
builder.Services.AddHealthChecks()
|
||||||
.AddNpgSql(config.GetValue<string>(ConfigConnectionStringConst.Database) ?? "");
|
.AddNpgSql(config.GetValue<string>(ConfigConnectionStringConst.Database) ?? "");
|
||||||
|
|
||||||
@ -78,13 +75,13 @@ builder.Services.Configure<ConnectionStrings>(config.GetSection("ConnectionStrin
|
|||||||
builder.Services.Configure<ConfigSectionConnectionStrings>(config.GetSection(ConfigSectionsConst.ConnectionStrings));
|
builder.Services.Configure<ConfigSectionConnectionStrings>(config.GetSection(ConfigSectionsConst.ConnectionStrings));
|
||||||
builder.Services.Configure<ConfigSectionRssModel>(config.GetSection(ConfigSectionsConst.Rss));
|
builder.Services.Configure<ConfigSectionRssModel>(config.GetSection(ConfigSectionsConst.Rss));
|
||||||
builder.Services.Configure<ConfigSectionYoutubeModel>(config.GetSection(ConfigSectionsConst.Youtube));
|
builder.Services.Configure<ConfigSectionYoutubeModel>(config.GetSection(ConfigSectionsConst.Youtube));
|
||||||
|
//builder.Services.Configure<
|
||||||
|
|
||||||
// Configure JWT for auth and load it into DI so we can use it in the controllers
|
// Configure JWT for auth
|
||||||
var jwtSettings = new JwtSettings();
|
var jwtSettings = new JwtSettings();
|
||||||
config.Bind(nameof(jwtSettings), jwtSettings);
|
config.Bind(nameof(jwtSettings), jwtSettings);
|
||||||
builder.Services.AddSingleton(jwtSettings);
|
builder.Services.AddSingleton(jwtSettings);
|
||||||
|
|
||||||
// Configure how the Token Validation will be handled
|
|
||||||
var tokenValidationParameters = new TokenValidationParameters
|
var tokenValidationParameters = new TokenValidationParameters
|
||||||
{
|
{
|
||||||
ValidateIssuerSigningKey = true,
|
ValidateIssuerSigningKey = true,
|
||||||
@ -96,7 +93,6 @@ var tokenValidationParameters = new TokenValidationParameters
|
|||||||
};
|
};
|
||||||
builder.Services.AddSingleton(tokenValidationParameters);
|
builder.Services.AddSingleton(tokenValidationParameters);
|
||||||
|
|
||||||
// Build the Authentication that will be used
|
|
||||||
builder.Services.AddAuthentication(x =>
|
builder.Services.AddAuthentication(x =>
|
||||||
{
|
{
|
||||||
x.DefaultScheme = JwtBearerDefaults.AuthenticationScheme;
|
x.DefaultScheme = JwtBearerDefaults.AuthenticationScheme;
|
||||||
@ -108,13 +104,9 @@ builder.Services.AddAuthentication(x =>
|
|||||||
x.TokenValidationParameters = tokenValidationParameters;
|
x.TokenValidationParameters = tokenValidationParameters;
|
||||||
});
|
});
|
||||||
|
|
||||||
// Build the Authorization Policy that the users will conform to.
|
|
||||||
builder.Services.AddAuthorization(options =>
|
|
||||||
options.AddPolicy(Authorization.AdministratorPolicy, b => b.RequireClaim( Authorization.AdministratorClaim, "true") ));
|
|
||||||
|
|
||||||
// Configure swagger authentication
|
|
||||||
builder.Services.AddSwaggerGen(cfg =>
|
builder.Services.AddSwaggerGen(cfg =>
|
||||||
{
|
{
|
||||||
|
|
||||||
cfg.AddSecurityDefinition("ApiKey", new OpenApiSecurityScheme
|
cfg.AddSecurityDefinition("ApiKey", new OpenApiSecurityScheme
|
||||||
{
|
{
|
||||||
Description = "The API key to access the API",
|
Description = "The API key to access the API",
|
||||||
@ -167,9 +159,7 @@ builder.Services.AddSwaggerGen(cfg =>
|
|||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
||||||
// Configure the HTTP request pipeline.
|
// Configure the HTTP request pipeline.
|
||||||
|
if (config.GetValue<bool>("EnableSwagger"))
|
||||||
// Enable Swagger if requested based on config
|
|
||||||
if (config.GetValue<bool>(ConfigConst.EnableSwagger))
|
|
||||||
{
|
{
|
||||||
app.UseSwagger();
|
app.UseSwagger();
|
||||||
app.UseSwaggerUI();
|
app.UseSwaggerUI();
|
||||||
@ -177,17 +167,14 @@ if (config.GetValue<bool>(ConfigConst.EnableSwagger))
|
|||||||
|
|
||||||
app.UseHttpsRedirection();
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
// Enable Hangfire background jobs
|
|
||||||
app.UseHangfireDashboard();
|
app.UseHangfireDashboard();
|
||||||
BackgroundJobs.SetupRecurringJobs(config);
|
BackgroundJobs.SetupRecurringJobs(config);
|
||||||
|
|
||||||
app.UseAuthorization();
|
//app.UseAuthorization();
|
||||||
app.UseAuthentication();
|
app.UseAuthentication();
|
||||||
|
|
||||||
// Add middleware
|
|
||||||
//app.UseMiddleware<ApiKeyAuthAuthentication>();
|
//app.UseMiddleware<ApiKeyAuthAuthentication>();
|
||||||
|
|
||||||
// Add HealthChecks
|
|
||||||
app.MapHealthChecks("/health", new HealthCheckOptions
|
app.MapHealthChecks("/health", new HealthCheckOptions
|
||||||
{
|
{
|
||||||
Predicate = _ => true,
|
Predicate = _ => true,
|
||||||
@ -195,34 +182,6 @@ app.MapHealthChecks("/health", new HealthCheckOptions
|
|||||||
});
|
});
|
||||||
app.MapControllers();
|
app.MapControllers();
|
||||||
|
|
||||||
// Run Database Migrations if requested
|
|
||||||
using var serviceScope = app.Services.CreateScope();
|
|
||||||
if (config.GetValue<bool>(ConfigConst.RunDatabaseMigrationsOnStartup))
|
|
||||||
{
|
|
||||||
var dbContext = serviceScope.ServiceProvider.GetRequiredService<DatabaseContext>();
|
|
||||||
dbContext.Database.Migrate();
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Log.Warning("Database Migrations have been skipped. Make sure you run them on your own");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Inject the roles
|
|
||||||
var roleManager = serviceScope.ServiceProvider.GetRequiredService<RoleManager<IdentityRole>>();
|
|
||||||
if (!await roleManager.RoleExistsAsync("Administrators"))
|
|
||||||
{
|
|
||||||
var adminRole = new IdentityRole("Administrators");
|
|
||||||
await roleManager.CreateAsync(adminRole);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!await roleManager.RoleExistsAsync("Users"))
|
|
||||||
{
|
|
||||||
var userRole = new IdentityRole("Users");
|
|
||||||
await roleManager.CreateAsync(userRole);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Start the application
|
|
||||||
app.Run();
|
app.Run();
|
||||||
|
|
||||||
|
|
||||||
@ -256,4 +215,4 @@ static ILogger GetLogger(IConfiguration configuration)
|
|||||||
{ "service.name", "newsbot-collector-api" }
|
{ "service.name", "newsbot-collector-api" }
|
||||||
})
|
})
|
||||||
.CreateLogger();
|
.CreateLogger();
|
||||||
}
|
}
|
@ -16,7 +16,6 @@ public interface IIdentityService
|
|||||||
AuthenticationResult Register(string email, string password);
|
AuthenticationResult Register(string email, string password);
|
||||||
AuthenticationResult Login(string email, string password);
|
AuthenticationResult Login(string email, string password);
|
||||||
AuthenticationResult RefreshToken(string token, string refreshToken);
|
AuthenticationResult RefreshToken(string token, string refreshToken);
|
||||||
void AddRole(string roleName, string userId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class IdentityService : IIdentityService
|
public class IdentityService : IIdentityService
|
||||||
@ -179,19 +178,6 @@ public class IdentityService : IIdentityService
|
|||||||
return GenerateJwtToken(user.Result);
|
return GenerateJwtToken(user.Result);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddRole(string roleName, string userId)
|
|
||||||
{
|
|
||||||
var user = _userManager.FindByIdAsync(userId);
|
|
||||||
user.Wait();
|
|
||||||
|
|
||||||
if (user.Result is null)
|
|
||||||
{
|
|
||||||
throw new Exception("User was not found");
|
|
||||||
}
|
|
||||||
|
|
||||||
_userManager.AddToRoleAsync(user.Result, roleName);
|
|
||||||
}
|
|
||||||
|
|
||||||
private ClaimsPrincipal? CheckTokenSigner(string token)
|
private ClaimsPrincipal? CheckTokenSigner(string token)
|
||||||
{
|
{
|
||||||
var tokenHandler = new JwtSecurityTokenHandler();
|
var tokenHandler = new JwtSecurityTokenHandler();
|
||||||
|
@ -2,9 +2,6 @@ namespace Newsbot.Collector.Domain.Consts;
|
|||||||
|
|
||||||
public class ConfigConst
|
public class ConfigConst
|
||||||
{
|
{
|
||||||
public const string RunDatabaseMigrationsOnStartup = "RunDatabaseMigrationsOnStartup";
|
|
||||||
public const string ApiKeys = "ApiKeys";
|
|
||||||
|
|
||||||
public const string LoggingDefault = "Logging:LogLevel:Default";
|
public const string LoggingDefault = "Logging:LogLevel:Default";
|
||||||
|
|
||||||
public const string SectionConnectionStrings = "ConnectionStrings";
|
public const string SectionConnectionStrings = "ConnectionStrings";
|
||||||
|
@ -28,14 +28,12 @@ services:
|
|||||||
api:
|
api:
|
||||||
image: newsbot.collector:latest
|
image: newsbot.collector:latest
|
||||||
environment:
|
environment:
|
||||||
# This will run the migrations for you on API Startup.
|
# Used for database migrations
|
||||||
"RunDatabaseMigrationsOnStartup": true
|
GOOSE_DRIVER: "postgres"
|
||||||
|
GOOSE_DBSTRING: "host=localhost user=${PostgresUser} password=${PostgresPassword} dbname=${PostgresDatabaseName} sslmode=disable"
|
||||||
# If this is false then /swagger/index.html will not be active on the API
|
|
||||||
EnableSwagger: true
|
SERVER_ADDRESS: "localhost"
|
||||||
|
|
||||||
JwtSettings__Secret: "ThisNeedsToBeSecretAnd32CharactersLong"
|
|
||||||
|
|
||||||
Logging__LogLevel__Default: "Information"
|
Logging__LogLevel__Default: "Information"
|
||||||
Logging__LogLevel__Microsoft.AspNetCore: "Warning"
|
Logging__LogLevel__Microsoft.AspNetCore: "Warning"
|
||||||
Logging__LogLevel__Hangfire: "Information"
|
Logging__LogLevel__Hangfire: "Information"
|
||||||
@ -58,8 +56,6 @@ services:
|
|||||||
|
|
||||||
# If you want to collect news on Final Fantasy XIV, set this to true
|
# If you want to collect news on Final Fantasy XIV, set this to true
|
||||||
FFXIV__IsEnabled: false
|
FFXIV__IsEnabled: false
|
||||||
|
|
||||||
CodeProjects__IsEnabled: true
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
|
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
|
||||||
interval: "1m"
|
interval: "1m"
|
||||||
|
Loading…
Reference in New Issue
Block a user