.NET/C#實(shí)現(xiàn)識(shí)別用戶訪問設(shè)備的方法
本文實(shí)例講述了.NET/C#實(shí)現(xiàn)識(shí)別用戶訪問設(shè)備的方法。分享給大家供大家參考,具體如下:
一、需求
需要獲取到用戶訪問網(wǎng)站時(shí)使用的設(shè)備,根據(jù)不同設(shè)備返回不同類型的渲染頁面。
二、實(shí)現(xiàn)前準(zhǔn)備
通過NuGet把UAParser程序包添加到項(xiàng)目中
三、實(shí)現(xiàn)
新建UAParseUserAgent類文件,在這個(gè)文件中進(jìn)行實(shí)現(xiàn)。
實(shí)現(xiàn)代碼如下:
public class UAParserUserAgent
{
private readonly static uap.Parser s_uap;
private static readonly Regex s_pdfConverterPattern = new Regex(@"wkhtmltopdf", RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.CultureInvariant);
# region Mobile UAs, OS & Devices
private static readonly HashSet<string> s_MobileOS = new HashSet<string>
{
"Android",
"iOS",
"Windows Mobile",
"Windows Phone",
"Windows CE",
"Symbian OS",
"BlackBerry OS",
"BlackBerry Tablet OS",
"Firefox OS",
"Brew MP",
"webOS",
"Bada",
"Kindle",
"Maemo"
};
private static readonly HashSet<string> s_MobileBrowsers = new HashSet<string>
{
"Android",
"Firefox Mobile",
"Opera Mobile",
"Opera Mini",
"Mobile Safari",
"Amazon Silk",
"webOS Browser",
"MicroB",
"Ovi Browser",
"NetFront",
"NetFront NX",
"Chrome Mobile",
"Chrome Mobile iOS",
"UC Browser",
"Tizen Browser",
"Baidu Explorer",
"QQ Browser Mini",
"QQ Browser Mobile",
"IE Mobile",
"Polaris",
"ONE Browser",
"iBrowser Mini",
"Nokia Services (WAP) Browser",
"Nokia Browser",
"Nokia OSS Browser",
"BlackBerry WebKit",
"BlackBerry", "Palm",
"Palm Blazer",
"Palm Pre",
"Teleca Browser",
"SEMC-Browser",
"PlayStation Portable",
"Nokia",
"Maemo Browser",
"Obigo",
"Bolt",
"Iris",
"UP.Browser",
"Minimo",
"Bunjaloo",
"Jasmine",
"Dolfin",
"Polaris",
"Skyfire"
};
private static readonly HashSet<string> s_MobileDevices = new HashSet<string>
{
"BlackBerry",
"MI PAD",
"iPhone",
"iPad",
"iPod",
"Kindle",
"Kindle Fire",
"Nokia",
"Lumia",
"Palm",
"DoCoMo",
"HP TouchPad",
"Xoom",
"Motorola",
"Generic Feature Phone",
"Generic Smartphone"
};
#endregion
private readonly HttpContextBase _httpContext;
private string _rawValue;
private UserAgentInfo _userAgent;
private DeviceInfo _device;
private OSInfo _os;
private bool? _isBot;
private bool? _isMobileDevice;
private bool? _isTablet;
private bool? _isPdfConverter;
static UAParserUserAgent()
{
s_uap = uap.Parser.GetDefault();
}
public UAParserUserAgent(HttpContextBase httpContext)
{
this._httpContext = httpContext;
}
public string RawValue
{
get
{
if (_rawValue == null)
{
if (_httpContext.Request != null)
{
_rawValue = _httpContext.Request.UserAgent.ToString();
}
else
{
_rawValue = "";
}
}
return _rawValue;
}
// for (unit) test purpose
set
{
_rawValue = value;
_userAgent = null;
_device = null;
_os = null;
_isBot = null;
_isMobileDevice = null;
_isTablet = null;
_isPdfConverter = null;
}
}
public virtual UserAgentInfo UserAgent
{
get
{
if (_userAgent == null)
{
var tmp = s_uap.ParseUserAgent(this.RawValue);
_userAgent = new UserAgentInfo(tmp.Family, tmp.Major, tmp.Minor, tmp.Patch);
}
return _userAgent;
}
}
public virtual DeviceInfo Device
{
get
{
if (_device == null)
{
var tmp = s_uap.ParseDevice(this.RawValue);
_device = new DeviceInfo(tmp.Family, tmp.IsSpider);
}
return _device;
}
}
public virtual OSInfo OS
{
get
{
if (_os == null)
{
var tmp = s_uap.ParseOS(this.RawValue);
_os = new OSInfo(tmp.Family, tmp.Major, tmp.Minor, tmp.Patch, tmp.PatchMinor);
}
return _os;
}
}
public virtual bool IsBot
{
get
{
if (!_isBot.HasValue)
{
_isBot = _httpContext.Request.Browser.Crawler || this.Device.IsBot;
}
return _isBot.Value;
}
}
public virtual bool IsMobileDevice
{
get
{
if (!_isMobileDevice.HasValue)
{
_isMobileDevice =
s_MobileOS.Contains(this.OS.Family) ||
s_MobileBrowsers.Contains(this.UserAgent.Family) ||
s_MobileDevices.Contains(this.Device.Family);
}
return _isMobileDevice.Value;
}
}
public virtual bool IsTablet
{
get
{
if (!_isTablet.HasValue)
{
_isTablet =
Regex.IsMatch(this.Device.Family, "iPad|Kindle Fire|Nexus 10|Xoom|Transformer|MI PAD|IdeaTab", RegexOptions.CultureInvariant) ||
this.OS.Family == "BlackBerry Tablet OS";
}
return _isTablet.Value;
}
}
public virtual bool IsPdfConverter
{
get
{
if (!_isPdfConverter.HasValue)
{
_isPdfConverter = s_pdfConverterPattern.IsMatch(this.RawValue);
}
return _isPdfConverter.Value;
}
}
}
public sealed class DeviceInfo
{
public DeviceInfo(string family, bool isBot)
{
this.Family = family;
this.IsBot = isBot;
}
public override string ToString()
{
return this.Family;
}
public string Family { get; private set; }
public bool IsBot { get; private set; }
}
public sealed class OSInfo
{
public OSInfo(string family, string major, string minor, string patch, string patchMinor)
{
this.Family = family;
this.Major = major;
this.Minor = minor;
this.Patch = patch;
this.PatchMinor = patchMinor;
}
public override string ToString()
{
var str = VersionString.Format(Major, Minor, Patch, PatchMinor);
return (this.Family + (!string.IsNullOrEmpty(str) ? (" " + str) : null));
}
public string Family { get; private set; }
public string Major { get; private set; }
public string Minor { get; private set; }
public string Patch { get; private set; }
public string PatchMinor { get; private set; }
private static string FormatVersionString(params string[] parts)
{
return string.Join(".", (from v in parts
where !string.IsNullOrEmpty(v)
select v).ToArray<string>());
}
}
public sealed class UserAgentInfo
{
public UserAgentInfo(string family, string major, string minor, string patch)
{
this.Family = family;
this.Major = major;
this.Minor = minor;
this.Patch = patch;
}
public override string ToString()
{
var str = VersionString.Format(Major, Minor, Patch);
return (this.Family + (!string.IsNullOrEmpty(str) ? (" " + str) : null));
}
public string Family { get; private set; }
public string Major { get; private set; }
public string Minor { get; private set; }
public string Patch { get; private set; }
}
internal static class VersionString
{
public static string Format(params string[] parts)
{
return string.Join(".", (from v in parts
where !string.IsNullOrEmpty(v)
select v).ToArray<string>());
}
}
控制器中代碼:
UAParserUserAgent userAgent = new UAParserUserAgent(this.HttpContext);
dto.OSInfo = userAgent.OS.ToString();
dto.Device = userAgent.Device.ToString() != "Other" ? userAgent.Device.ToString() : "電腦";
dto.Agent = userAgent.UserAgent.ToString();
dto.RawValue = userAgent.RawValue.ToString();
//if (userAgent.IsMobileDevice)
//{
// Debug.WriteLine("這是一個(gè)手機(jī)");
// ViewBag.MobilePc = "手機(jī)";
//}
//else if (userAgent.IsTablet)
//{
// ViewBag.MobilePc = "平板";
// Debug.WriteLine("這是一個(gè)平板");
//}
//else
//{
// ViewBag.MobilePc = "普通電腦";
// Debug.WriteLine("這是一個(gè)普通電腦");
//}
更多關(guān)于C#相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《C#程序設(shè)計(jì)之線程使用技巧總結(jié)》、《WinForm控件用法總結(jié)》、《C#中XML文件操作技巧匯總》、《C#常見控件用法教程》、《C#數(shù)據(jù)結(jié)構(gòu)與算法教程》、《C#數(shù)組操作技巧總結(jié)》及《C#面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》
希望本文所述對(duì)大家C#程序設(shè)計(jì)有所幫助。
- c# 使用OpenCV識(shí)別硬幣
- c# 開發(fā)文字識(shí)別軟件
- c# 開發(fā)語音識(shí)別程序
- C# Winform調(diào)用百度接口實(shí)現(xiàn)人臉識(shí)別教程(附源碼)
- C# 10分鐘完成百度人臉識(shí)別(入門篇)
- C# SDK實(shí)現(xiàn)百度云OCR的文字識(shí)別功能
- C# winform程序?qū)崿F(xiàn)開機(jī)自啟動(dòng)并且識(shí)別是開機(jī)啟動(dòng)還是雙擊啟動(dòng)
- C#二維碼圖片識(shí)別代碼
- C#圖像識(shí)別 微信跳一跳機(jī)器人
- .NET C#利用ZXing生成、識(shí)別二維碼/條形碼
- C#如何自動(dòng)識(shí)別文件的編碼
- c# 圓形識(shí)別方案和直線識(shí)別方案的參考示例
相關(guān)文章
Unity Shader實(shí)現(xiàn)徑向模糊效果
這篇文章主要為大家詳細(xì)介紹了Unity Shader實(shí)現(xiàn)徑向模糊效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-08-08
C#實(shí)現(xiàn)數(shù)字轉(zhuǎn)換
這篇文章主要為大家詳細(xì)介紹了C#實(shí)現(xiàn)數(shù)字轉(zhuǎn)換,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-04-04
C#中datagridview使用tooltip控件顯示單元格內(nèi)容的方法
這篇文章主要介紹了C#中datagridview使用tooltip控件顯示單元格內(nèi)容的方法,實(shí)例分析了C#控件的相關(guān)使用技巧,需要的朋友可以參考下2016-06-06
C#使用WebClient實(shí)現(xiàn)上傳下載
這篇文章介紹了C#使用WebClient實(shí)現(xiàn)上傳下載的方法,文中通過示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-05-05
C#中高效的多線程并行處理實(shí)現(xiàn)方式詳解
在處理大型數(shù)據(jù)集時(shí),單線程處理往往成為性能瓶頸,所以本文將詳細(xì)介紹幾種高效的多線程并行處理實(shí)現(xiàn)方式,幫助開發(fā)者優(yōu)化數(shù)據(jù)處理流程,有需要的可以了解下2025-04-04
C#中將xml文件反序列化為實(shí)例時(shí)采用基類還是派生類的知識(shí)點(diǎn)討論
在本篇文章里小編給大家整理的是關(guān)于C#中將xml文件反序列化為實(shí)例時(shí)采用基類還是派生類的知識(shí)點(diǎn)討論,有需要的朋友們學(xué)習(xí)下。2019-11-11
C# 利用代理爬蟲網(wǎng)頁的實(shí)現(xiàn)方法
這篇文章主要介紹了C# 利用代理爬網(wǎng)頁的實(shí)現(xiàn)方法的相關(guān)資料,希望通過本能幫助到大家實(shí)現(xiàn)這樣的功能,需要的朋友可以參考下2017-10-10

