1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Configuration;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.IO;
- using Microsoft.AspNetCore.Http;
- namespace PMS.NetCore.Controllers
- {
- public class BaseController : Controller
- {
- protected NLog.Logger logger;
- protected IConfigurationRoot Configuration;
- public BaseController()
- {
- IConfigurationBuilder builder = new ConfigurationBuilder()
- .SetBasePath(Directory.GetCurrentDirectory())
- .AddJsonFile("appsettings.json");
- Configuration = builder.Build();
- logger = NLog.LogManager.GetCurrentClassLogger();
- }
- /// <summary>
- /// 设置本地cookie
- /// </summary>
- /// <param name="key">键</param>
- /// <param name="value">值</param>
- /// <param name="minutes">过期时长,单位:分钟</param>
- protected void SetCookies(string key, string value, int minutes = 600)
- {
- HttpContext.Response.Cookies.Append(key, value, new CookieOptions
- {
- Expires = DateTime.Now.AddMinutes(minutes)
- });
- }
- protected void SetCookies(string key, string value)
- {
- HttpContext.Response.Cookies.Append(key,value, new CookieOptions
- {
- Expires = DateTime.Now.AddMinutes(600)
- });
- }
- /// <summary>
- /// 删除指定的cookie
- /// </summary>
- /// <param name="key">键</param>
- protected void DeleteCookies(string key)
- {
- HttpContext.Response.Cookies.Delete(key);
- }
- /// <summary>
- /// 获取cookies
- /// </summary>
- /// <param name="key">键</param>
- /// <returns>返回对应的值</returns>
- protected string GetCookies(string key)
- {
- HttpContext.Request.Cookies.TryGetValue(key, out string value);
- if (string.IsNullOrEmpty(value))
- value = string.Empty;
- return value;
- }
- }
- }
|