上一篇帖子講了用了哪些技術,這個帖子就先介紹介紹api項目吧,項目就是一個普通的webapi項目,帳戶系統用的identity ,什麼是identity呢? 其實就是官方封裝好的一系列的能夠用來操做數據庫的類,對用戶信息進行增刪改查。主要牽扯的類有以下幾個:
UserManager
SignInManager
RoleManager
上面列出的是我項目牽扯的你們有興趣的能夠去官方接口文檔那裏看看api
namespace Microsoft.AspNetCore.Identity這個是命名空間
具體的看下面的項目結構圖
你們能夠把我項目給克隆下來 而後打開看看具體的配置
這個account控制器裏面寫好了建立用戶的一些方法主要就是用了 UserManager 和SignInManager進行用戶的建立和用戶的登陸
請你跟我這樣作 項目剛克隆下來是運行不起來的,由於數據使用的是PostgreSql因此首先安裝PostgreSql下面是linux下的安裝 若是你是本地window調試,因此再找個window版的安裝教程吧 我就不細講了
下面是安裝後要作的一些操做請結合帖子進行操做 不懂的請網絡找找
實在不實行就留言吧 下圖是安裝後的文件目錄 裏面有不少的指令 下面的指令也在裏面
初始化命令
.\initdb.exe -D ..\data -E UTF-8 --locale=chs -U postgres -W
啓動數據庫
.\pg_ctl.exe -D ..\data start
註冊服務 註冊完就能開機自啓了
.\pg_ctl.exe register -N PostgreSQL -D ../data
到時候能夠用圖上的軟件鏈接測試下免費的並且用起來很不錯:
配置好數據庫密碼測試完成就照着我圖上的操做點擊管理用戶機密會彈出一個json文件名字是secrets你把本身的本地測試環境的鏈接字符串就放到這個裏面具體使用辦法請看下面的帖子,此法是爲了測試項目時泄露機密到github 這樣操做時能夠將github上的數據暴露不會泄露到時候只需修改secrets.json不須要修改appsetting.json了:
數據庫若是調通了就能夠運行項目了 因爲你們都是新的數據庫 數據庫裏對應的表都不存在因此須要進行數據庫的更新 我這個項目主要有兩個數據上下文如圖到時候在DataAccess項目裏執行以下指令
Update-Database -Context BlogSysContext
Update-Database -Context AppIdentityDbContext
數據上下文如圖到時候在DataAccess項目裏執行以下指令
我由於數據庫已經更新到最新了 因此提示我已經更新了 你們能夠自行試試 等到數據庫表都更新好了 就能夠啓動項目了,項目依賴的東西都在配置文件裏,你們記得好好看看。
爲何用postgreSql是由於這個orm鏈接的東西更新的比較快 應該時微軟有官方的人蔘加維護 特別適合我的和一些使用免費數據庫的人使用
Npgsql.EntityFrameworkCore.PostgreSQL這個是安裝的鏈接器 你們到時候留意下
保險起見 我仍是把最重要的配置代碼貼出來 git項目也有
using System;
using System.Collections.Generic;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using GreenShade.Blog.Api.Filters;
using GreenShade.Blog.Api.Hubs;
using GreenShade.Blog.Api.Services;
using GreenShade.Blog.DataAccess.Data;
using GreenShade.Blog.DataAccess.Services;
using GreenShade.Blog.Domain.Models;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.HttpOverrides;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.IdentityModel.Tokens;
namespace GreenShade.Blog.Api
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.Configure<ForwardedHeadersOptions>(options =>
{
options.KnownProxies.Add(IPAddress.Parse("10.0.0.100"));
});
services.AddDbContext<AppIdentityDbContext>(options =>
options.UseNpgsql(Configuration.GetConnectionString("OffLineNpgSqlCon")));
services.AddDbContext<BlogSysContext>(options =>
options.UseNpgsql(Configuration.GetConnectionString("OffLineNpgSqlCon")));
services.AddIdentity<ApplicationUser, IdentityRole>()
.AddEntityFrameworkStores<AppIdentityDbContext>();
services.AddSignalR();
services.Configure<JwtSeetings>(Configuration.GetSection("JwtSeetings"));
services.Configure<QQLoginSetting>(Configuration.GetSection("qqlogin"));
services.Configure<Dictionary<string, WnsSetting>>(Configuration.GetSection("wns"));
services.AddHttpClient<ThirdLoginService>();
services.AddScoped<ArticleService>();
services.AddScoped<BlogManageService>();
services.AddHttpClient<WallpaperService>();
services.AddHttpClient<PushWnsService>();
//services.AddScoped<ThirdLoginService>();
var jwtSeetings = new JwtSeetings();
//綁定jwtSeetings
Configuration.Bind("JwtSeetings", jwtSeetings);
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
})
.AddJwtBearer(options =>
{
options.TokenValidationParameters = new TokenValidationParameters
{
ValidIssuer = jwtSeetings.Issuer,
ValidAudience = jwtSeetings.Audience,
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwtSeetings.SecretKey))
};
options.Events = new JwtBearerEvents
{
OnMessageReceived = context =>
{
var accessToken = context.Request.Query["access_token"];
if (!string.IsNullOrEmpty(accessToken) &&
(context.HttpContext.WebSockets.IsWebSocketRequest || context.Request.Headers["Accept"] == "text/event-stream"))
{
context.Token = context.Request.Query["access_token"];
}
return Task.CompletedTask;
}
};
});
services.AddCors(options =>
{
options.AddPolicy("any", builder =>
{
builder.AllowAnyOrigin() //容許任何來源的主機訪問
.AllowAnyMethod()
.AllowAnyHeader()
.WithOrigins("http://192.168.1.109:4200", "http://localhost:4200", "http://192.168.1.103:4200",
"http://192.168.1.103:4200", "http://192.168.16.67:4200", "http://192.168.16.138:4200", "https://www.douwp.club")
.AllowCredentials()//指定處理cookie
.SetPreflightMaxAge(TimeSpan.FromSeconds(60));
});
});
services.AddControllers(options =>
{
options.Filters.Add(new ExceptionHandleAttribute());//根據實例注入過濾器
});
//services.AddControllers();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseForwardedHeaders(new ForwardedHeadersOptions
{
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
});
app.UseCors("any");
app.UseWebSockets();
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.MapHub<ChatHub>("/chathub");
});
}
}
}
文章是原創 轉載請註明出處