-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
291 lines (243 loc) · 9.54 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Authorization;
using Microsoft.EntityFrameworkCore;
using Microsoft.IdentityModel.Tokens;
using Microsoft.AspNetCore.Mvc;
using Microsoft.OpenApi.Models;
using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims;
using System.Text;
using System;
using ChurchSystem.Models;
using ChurchSystem.Services;
//services
var builder = WebApplication.CreateBuilder(args);
var server = builder.Configuration["DB_SERVER"] ?? "";
var port = builder.Configuration["DB_PORT"] ?? "";
var database = builder.Configuration["DATABASE"] ?? "";
var password = builder.Configuration["PASSWORD"] ?? "";
var user = builder.Configuration["DB_USER"] ?? "";
var DbConnectionString = $"Server={server}, {port}; User ID={user}; Password={password}; Database={database};";
ConfigureServices(builder.Services);
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJwtBearer(options =>
{
options.TokenValidationParameters = new TokenValidationParameters()
{
ValidateActor = true,
ValidateAudience = true,
ValidateLifetime = true,
ValidateIssuerSigningKey = true,
ValidIssuer = builder.Configuration["Jwt:Issuer"],
ValidAudience = builder.Configuration["Jwt:Audience"],
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(builder.Configuration["Jwt:Key"]))
};
});
builder.Services.AddAuthorization();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new() { Title = "Church API", Version = "v1" });
c.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme
{
Scheme = "Bearer",
BearerFormat = "JWT",
In = ParameterLocation.Header,
Name = "Authorization",
Description = " Bearer Authentication with JWT Token",
Type = SecuritySchemeType.Http,
});
c.AddSecurityRequirement(new OpenApiSecurityRequirement
{
{ new OpenApiSecurityScheme
{
Reference = new OpenApiReference
{
Id = "Bearer",
Type = ReferenceType.SecurityScheme
}
},
new List<string>()
}
});
});
var app = builder.Build();
AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true);
app.UseCors("CorsPolicy");
app.UseSwagger();
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "v1"));
app.UseAuthorization();
app.UseAuthentication();
DatabaseService.MigrationInitialization(app);
void ConfigureServices(IServiceCollection services)
{
services.AddTransient<ITitheService, TitheService>();
services.AddTransient<IChildrenService, ChildrenService>();
services.AddTransient<IYouthsService, YouthsService>();
services.AddTransient<IAdultsService, AdultsService>();
services.AddTransient<IAuthService, AuthService>();
services.AddEntityFrameworkNpgsql()
.AddDbContext<APIContext>(
opt => opt.UseNpgsql(DbConnectionString));
services.AddCors(options =>
{
options.AddPolicy("CorsPolicy",
builder => builder.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader());
});
}
// Api Endpoints
// authentication endpoints
app.MapPost("/api/register", (UserRegistration user, IAuthService service) => Register(user, service));
app.MapPost("/api/login", (UserLogin user, IAuthService service) => Login(user, service));
// tithe endpoints
app.MapPost("/api/tithe", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(Tithe tithe, ITitheService service) =>
{
var result = service.Create(tithe);
return Results.Ok(result);
});
app.MapGet("/api/tithe/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, ITitheService service) =>
{
var tithe = service.Get(id);
if (tithe is null) return Results.NotFound("Tithe not found");
return Results.Ok(tithe);
});
app.MapGet("/api/tithe", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(ITitheService service) =>
{
var tithe = service.List();
return Results.Ok(tithe);
});
app.MapPut("/api/tithe/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, Tithe tithe, ITitheService service) =>
{
var updatedTithe = service.Update(id, tithe);
if (updatedTithe is null) return Results.NotFound(" Tithe not found ");
return Results.Ok(updatedTithe);
});
// app.MapDelete("/tithe", (int id, ITitheService service) =>
// {
// var tithe = service.Delete(id);
// if (!tithe) return Results.BadRequest(" Something went wrong ");
// return Results.Ok(tithe);
// });
//children endpoints
app.MapPost("/api/children", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(Children children, IChildrenService service) =>
{
var result = service.Create(children);
return Results.Ok(result);
});
app.MapGet("/api/children/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, IChildrenService service) =>
{
var children = service.Get(id);
if (children is null) return Results.NotFound("Selected children attendance not found");
return Results.Ok(children);
});
app.MapGet("/api/children", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(IChildrenService service) =>
{
var children = service.List();
return Results.Ok(children);
});
app.MapPut("/api/children/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, Children children, IChildrenService service) =>
{
var updatedChildren = service.Update(id, children);
if (updatedChildren is null) return Results.NotFound(" Selected children attendance not found");
return Results.Ok(updatedChildren);
});
//youths endpoints
app.MapPost("/api/youths", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(Youths youths, IYouthsService service) =>
{
var result = service.Create(youths);
return Results.Ok(result);
});
app.MapGet("/api/youths/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, IYouthsService service) =>
{
var youths = service.Get(id);
if (youths is null) return Results.NotFound(" Selected youths attendance not found");
return Results.Ok(youths);
});
app.MapGet("/api/youths", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(IYouthsService service) =>
{
var youths = service.List();
return Results.Ok(youths);
});
app.MapPut("/api/youths/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, Youths youths, IYouthsService service) =>
{
var updatedYouths = service.Update(id, youths);
if (updatedYouths is null) return Results.NotFound(" Selected youths attendance not found");
return Results.Ok(updatedYouths);
});
//adults endpoints
app.MapPost("/api/adults", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(Adults adults, IAdultsService service) =>
{
var results = service.Create(adults);
return Results.Ok(results);
});
app.MapGet("/api/adults/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, IAdultsService service) =>
{
var adults = service.Get(id);
if (adults is null) return Results.NotFound(" Selected adults attendance not found");
return Results.Ok(adults);
});
app.MapGet("/api/adults", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(IAdultsService service) =>
{
var adults = service.List();
return Results.Ok(adults);
});
app.MapPut("/api/adults/{id}", [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
(int id, Adults adults, IAdultsService service) =>
{
var updatedAdults = service.Update(id, adults);
if (updatedAdults is null) return Results.NotFound(" Selected adults attendance not found");
return Results.Ok(updatedAdults);
});
// end of endpoints //
async Task<IResult> Login(UserLogin user, IAuthService service)
{
if (string.IsNullOrEmpty(user.UserName))
{
return Results.BadRequest(new { message = "Email is incorrect" });
}
else if (string.IsNullOrEmpty(user.Password))
{
return Results.BadRequest(new { message = "Password is incorrect" });
}
User loggedInUser = await service.Login(user.UserName, user.Password);
if (loggedInUser != null) return Results.Ok(loggedInUser);
return Results.BadRequest(new { message = "User login failed" });
}
async Task<IResult> Register(UserRegistration user, IAuthService service)
{
if (string.IsNullOrEmpty(user.Name))
{
return Results.BadRequest(new { message = "Name needs to be provided" });
}
else if (string.IsNullOrEmpty(user.UserName))
{
return Results.BadRequest(new { message = "User name needs to be provided" });
}
else if (string.IsNullOrEmpty(user.Password))
{
return Results.BadRequest(new { message = "Password needs to be provided" });
}
User userToRegister = new(user.UserName, user.Name, user.Password, user.Role);
User registeredUser = await service.Register(userToRegister);
User loggedInUser = await service.Login(registeredUser.UserName, user.Password);
if (loggedInUser != null) return Results.Ok(loggedInUser);
return Results.BadRequest(new { message = "User registration failed" });
}
app.Run();