+ Backend LDAP (Get User Info)
This commit is contained in:
parent
841f88e153
commit
0e5076853f
12
Microservicios/MsLdap/.config/dotnet-tools.json
Normal file
12
Microservicios/MsLdap/.config/dotnet-tools.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"version": 1,
|
||||
"isRoot": true,
|
||||
"tools": {
|
||||
"dotnet-ef": {
|
||||
"version": "8.0.3",
|
||||
"commands": [
|
||||
"dotnet-ef"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
66
Microservicios/MsLdap/Controllers/LdapController.cs
Normal file
66
Microservicios/MsLdap/Controllers/LdapController.cs
Normal file
@ -0,0 +1,66 @@
|
||||
using LdapLoginLib;
|
||||
using LdapLoginLib.Models;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace MsLdap.Controllers
|
||||
{
|
||||
[Route("[controller]")]
|
||||
[ApiController]
|
||||
public class LdapController : ControllerBase
|
||||
{
|
||||
[HttpGet("users/by-id/{userID}")]
|
||||
public IActionResult GetUserById(string userID)
|
||||
{
|
||||
try
|
||||
{
|
||||
UserInfo userInfo = LDAP.GetUserInfo(document: userID);
|
||||
|
||||
|
||||
return Ok(userInfo);
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return BadRequest(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
[HttpGet("users/by-username/{username}")]
|
||||
public IActionResult GetUserByUsername(string username)
|
||||
{
|
||||
try
|
||||
{
|
||||
UserInfo userInfo = LDAP.GetUserInfo(username: username);
|
||||
|
||||
|
||||
return Ok(userInfo);
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return BadRequest(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[HttpGet("users/by-mail/{mail}")]
|
||||
public IActionResult GetUserByMail(string mail)
|
||||
{
|
||||
try
|
||||
{
|
||||
UserInfo userInfo = LDAP.GetUserInfo(email: mail);
|
||||
|
||||
|
||||
return Ok(userInfo);
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return BadRequest(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
23
Microservicios/MsLdap/Dockerfile
Normal file
23
Microservicios/MsLdap/Dockerfile
Normal file
@ -0,0 +1,23 @@
|
||||
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
||||
ARG BUILD_CONFIGURATION=Release
|
||||
WORKDIR /src
|
||||
COPY ["Microservicios/MsLdap/MsLdap.csproj", "Microservicios/MsLdap/"]
|
||||
RUN dotnet restore "./Microservicios/MsLdap/./MsLdap.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/Microservicios/MsLdap"
|
||||
RUN dotnet build "./MsLdap.csproj" -c $BUILD_CONFIGURATION -o /app/build
|
||||
|
||||
FROM build AS publish
|
||||
ARG BUILD_CONFIGURATION=Release
|
||||
RUN dotnet publish "./MsLdap.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
|
||||
|
||||
FROM base AS final
|
||||
WORKDIR /app
|
||||
COPY --from=publish /app/publish .
|
||||
ENTRYPOINT ["dotnet", "MsLdap.dll"]
|
24
Microservicios/MsLdap/MsLdap.csproj
Normal file
24
Microservicios/MsLdap/MsLdap.csproj
Normal file
@ -0,0 +1,24 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||
<DockerfileContext>..\..</DockerfileContext>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Models\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\LdapLoginLib\LdapLoginLib.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
42
Microservicios/MsLdap/Program.cs
Normal file
42
Microservicios/MsLdap/Program.cs
Normal file
@ -0,0 +1,42 @@
|
||||
using Microsoft.OpenApi.Models;
|
||||
|
||||
namespace MsLdap
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
|
||||
builder.Services.AddControllers();
|
||||
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||
builder.Services.AddEndpointsApiExplorer();
|
||||
builder.Services.AddSwaggerGen(c =>
|
||||
{
|
||||
c.SwaggerDoc("v1", new OpenApiInfo { Title = "LDAP Api", Version = "v1" });
|
||||
});
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (app.Environment.IsDevelopment() || app.Environment
|
||||
.IsProduction())
|
||||
{
|
||||
app.UseSwagger();
|
||||
app.UseSwaggerUI(c =>
|
||||
{
|
||||
c.SwaggerEndpoint("/swagger/v1/swagger.json", "LDAP Api V1");
|
||||
});
|
||||
}
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
|
||||
app.MapControllers();
|
||||
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
40
Microservicios/MsLdap/Properties/launchSettings.json
Normal file
40
Microservicios/MsLdap/Properties/launchSettings.json
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
"profiles": {
|
||||
"MsLdap": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"dotnetRunMessages": true,
|
||||
"applicationUrl": "http://localhost:5034"
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"Docker": {
|
||||
"commandName": "Docker",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_URLS": "http://+:80"
|
||||
},
|
||||
"publishAllPorts": true
|
||||
}
|
||||
},
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:42244",
|
||||
"sslPort": 0
|
||||
}
|
||||
}
|
||||
}
|
8
Microservicios/MsLdap/appsettings.Development.json
Normal file
8
Microservicios/MsLdap/appsettings.Development.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
9
Microservicios/MsLdap/appsettings.json
Normal file
9
Microservicios/MsLdap/appsettings.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
Loading…
Reference in New Issue
Block a user