123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- /*******************************************************************************
- * iNethinkCMS - 网站内容管理系统
- * Copyright (C) 2012-2013 inethink.com
- *
- * @author jackyang <69991000@qq.com>
- * @website http://cms.inethink.com
- * @version 1.3.6.0 (2013-08-14)
- *
- * This is licensed under the GNU LGPL, version 3.0 or later.
- * For details, see: http://www.gnu.org/licenses/gpl-3.0.html
- *******************************************************************************/
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Collections;
- using System.IO;
- using System.Text.RegularExpressions;
- namespace iNethinkCMS.Web.UI
- {
- public class WebUI_Function
- {
- // 输出指定间隔的半角空格
- public static string SpaceLength(int i)
- {
- string space = "";
- for (int j = 0; j < i; j++)
- {
- space += System.Web.HttpContext.Current.Server.HtmlDecode(" ");
- }
- return space;
- }
- //获得文件扩展名
- public static string GetFileExt(string FullPath)
- {
- if (FullPath != "")
- return FullPath.Substring(FullPath.LastIndexOf('.') + 1).ToLower();
- else
- return "";
- }
- //创建文件夹
- public static void CreateFolder(string FolderPath)
- {
- if (!System.IO.Directory.Exists(FolderPath))
- {
- System.IO.Directory.CreateDirectory(FolderPath);
- }
- }
- //获取网站访问URL
- public static string Fun_GetHttpUrl()
- {
- string vAbsoluteUri = HttpContext.Current.Request.Url.AbsoluteUri;
- string vPathAndQuery = HttpContext.Current.Request.Url.PathAndQuery;
- return vAbsoluteUri.Replace(vPathAndQuery, "");
- }
- //获取顶级域名
- public static string Fun_GetDomain()
- {
- string vHost = HttpContext.Current.Request.Url.Host;
- string[] BeReplacedStrs = new string[] { ".com.cn", ".edu.cn", ".net.cn", ".org.cn", ".co.jp", ".gov.cn", ".co.uk", "ac.cn", ".edu", ".tv", ".info", ".com", ".ac", ".ag", ".am", ".at", ".be", ".biz", ".bz", ".cc", ".cn", ".com", ".de", ".es", ".eu", ".fm", ".gs", ".hk", ".in", ".info", ".io", ".it", ".jp", ".la", ".md", ".ms", ".name", ".net", ".nl", ".nu", ".org", ".pl", ".ru", ".sc", ".se", ".sg", ".sh", ".tc", ".tk", ".tv", ".tw", ".us", ".co", ".uk", ".vc", ".vg", ".ws", ".il", ".li", ".nz" };
- foreach (string oneBeReplacedStr in BeReplacedStrs)
- {
- string BeReplacedStr = oneBeReplacedStr + " ";
- if (vHost.IndexOf(BeReplacedStr) != -1)
- {
- vHost = vHost.Replace(BeReplacedStr, string.Empty);
- break;
- }
- }
- int dotIndex = vHost.LastIndexOf(".");
- vHost = vHost.Substring(dotIndex + 1);
- return vHost;
- }
- //清空系统缓存
- public static void Fun_CacheDel()
- {
- string vCacheKey = Command.Command_Configuration.GetConfigString("CacheKey");
- System.Web.Caching.Cache objCache = HttpRuntime.Cache;
- System.Collections.IDictionaryEnumerator CacheEnum = HttpRuntime.Cache.GetEnumerator();
- while (CacheEnum.MoveNext())
- {
- if (Command.Command_StringPlus.Left(CacheEnum.Key.ToString(), vCacheKey.Length) == vCacheKey)
- {
- objCache.Remove(CacheEnum.Key.ToString());
- }
- }
- }
- //获取站点路径(通过栏目ID循环)
- public static string Fun_GetSitePath(int byCID, string subPath = "", bool hasBootrapWrap = true)
- {
- BLL.BLL_iNethinkCMS_Channel bll = new BLL.BLL_iNethinkCMS_Channel();
- Model.Model_iNethinkCMS_Channel model = new Model.Model_iNethinkCMS_Channel();
- /**
- * <ol class="breadcrumb">
- <li><a href="#">Home</a></li>
- <li><a href="#">Library</a></li>
- <li class="active">Data</li>
- </ol>
- */
- string vBackInfo = "";
- int vFatherID = byCID;
- do
- {
- model = bll.GetModel(vFatherID);
- vBackInfo = "<li><a href=\"channel.aspx?id=" + model.Cid + "\">" + model.Name + "</a></li>" + vBackInfo;
- vFatherID = Convert.ToInt32(model.FatherID);
- } while (vFatherID > 0);
- if (subPath.Trim().Length > 0)
- {
- vBackInfo = @"<li><a href=""/" + subPath + @""">首页</a></li>" + vBackInfo;
- }
- else
- {
- vBackInfo = "<li><a href=\"/\">首页</a></li>" + vBackInfo;
- }
- if (hasBootrapWrap) {
- vBackInfo = $@"<ol class=""breadcrumb"">{vBackInfo}</ol>";
- }
- return vBackInfo;
- }
- //获取站点路径(通过标题)
- public static string Fun_GetSitePath_FromTit(string byTit)
- {
- string vBackInfo = "<a href=\"/\">首页</a>";
- if (byTit.Length > 0)
- {
- vBackInfo += " > " + byTit;
- }
- return vBackInfo;
- }
- //获取缩略图
- public static string Fun_GetThumbnail(string byPicUrl, string byWidth, string byHeight, string byMode, string byQuality)
- {
- string vPicUrl = HttpContext.Current.Server.MapPath(byPicUrl);
- string rInfo = @"/upload/thumbnail/thumb_" + byMode + "_" + byQuality + "_" + byWidth + "_" + byHeight + "_" + Path.GetFileNameWithoutExtension(vPicUrl)
- + Path.GetExtension(vPicUrl);
- string vThumbPicUrl = HttpContext.Current.Server.MapPath(rInfo);
- int vWidth = Convert.ToInt32(byWidth);
- int vHeight = Convert.ToInt32(byHeight);
- int vQuality = Convert.ToInt32(byQuality);
- //判断小图是否存在
- if (File.Exists(vThumbPicUrl) == false)
- {
- try
- {
- CreateFolder(Path.GetDirectoryName(vThumbPicUrl));
- Helper.Helper_Thumbnails.CreationThumbnail(vPicUrl, vThumbPicUrl, vWidth, vHeight, byMode, vQuality);
- }
- catch
- {
- rInfo = byPicUrl;
- }
- }
- return rInfo;
- }
- //URL参数添加/修改
- public static string Fun_AddQueryToURL(string url, string key, string value)
- {
- int fragPos = url.LastIndexOf("#");
- string fragment = string.Empty;
- if (fragPos > -1)
- {
- fragment = url.Substring(fragPos);
- url = url.Substring(0, fragPos);
- }
- int querystart = url.IndexOf("?");
- if (querystart < 0)
- {
- url += "?" + key + "=" + value;
- }
- else
- {
- Regex reg = new Regex(@"(?<=[&\?])" + key + @"=[^\s&#]*", RegexOptions.Compiled);
- if (reg.IsMatch(url))
- url = reg.Replace(url, key + "=" + value);
- else
- url += "&" + key + "=" + value;
- }
- return url + fragment;
- }
- //URL参数删除
- public static string Fun_RemoveQueryFromURL(string url, string key)
- {
- Regex reg = new Regex(@"[&\?]" + key + @"=[^\s&#]*&?", RegexOptions.Compiled);
- return reg.Replace(url, new MatchEvaluator(PutAwayGarbageFromURL));
- }
- private static string PutAwayGarbageFromURL(Match match)
- {
- string value = match.Value;
- if (value.EndsWith("&"))
- {
- return value.Substring(0, 1);
- }
- else
- {
- return string.Empty;
- }
- }
- //获取字典类型
- public static string Fun_GetDictTypeName_FromDictType(object byDictType)
- {
- string vDictName;
- int vDictType = int.Parse(byDictType.ToString());
- switch (vDictType)
- {
- case 1:
- vDictName = "友情链接";
- break;
- default:
- vDictName = "-";
- break;
- }
- return vDictName;
- }
- //获取指定自定义字段信息
- public static string Fun_GetFieldsInfo(string byCustomFieldsKey, string byFieldsInfo)
- {
- string vFieldsInfo = "";
- bool isFieldsInfoText = false;//是否获取自定义字段的Text
- string vCustomFieldsValue = "";//自定义字段设置的值字符串
- if (byCustomFieldsKey.LastIndexOf("_text", StringComparison.OrdinalIgnoreCase) == byCustomFieldsKey.Length-5)
- {
- byCustomFieldsKey = byCustomFieldsKey.Substring(0, byCustomFieldsKey.Length - 5);
- vCustomFieldsValue = Fun_GetCustomFieldsValue(byCustomFieldsKey);
- if (vCustomFieldsValue.IndexOf("=") > 0)
- {
- isFieldsInfoText = true;
- }
- }
- //byCustomFieldsKey = byCustomFieldsKey.ToLower();
- int i = byFieldsInfo.IndexOf("<" + byCustomFieldsKey + ">", StringComparison.OrdinalIgnoreCase);
- int j = byFieldsInfo.IndexOf("</" + byCustomFieldsKey + ">", StringComparison.OrdinalIgnoreCase);
- if (i >= 0 && j >= 0)
- {
- i = i + byCustomFieldsKey.Length + 2;
- j = j - i;
- vFieldsInfo = Command.Command_StringPlus.Mid(byFieldsInfo, i, j);
- }
- if (isFieldsInfoText) {
- vFieldsInfo = Fun_GetCustomFieldsText(vCustomFieldsValue, vFieldsInfo);
- }
- return vFieldsInfo;
- }
- public static string Fun_GetCustomFieldsText(string byCustomFieldsValue, string byValue)
- {
- string retValue = "";
- string[] tempFieldsList = byCustomFieldsValue.Split(',');
- foreach (string tempFields in tempFieldsList)
- {
- try
- {
- if (tempFields.Trim().Length > 0)
- {
- string[] tempFieldsValues = tempFields.Split('=');
- if (tempFieldsValues.Length == 2 && byValue.Trim().ToLower() == tempFieldsValues[1].Trim().ToLower())
- {
- retValue = tempFieldsValues[0].Trim();
- break;
- }
- }
- }
- catch { }
- }
- return retValue;
- }
- static System.Data.DataTable customfieldsDataTable = null;
- public static System.Data.DataTable CustomfieldsDataTable
- {
- get { return WebUI_Function.customfieldsDataTable; }
- }
- /// <summary>
- ///
- /// </summary>
- /// <param name="byCustomFieldsKey"></param>
- /// <param name="isReload">是否为刷新加载</param>
- /// <returns></returns>
- public static string Fun_GetCustomFieldsValue(string byCustomFieldsKey, bool isReload=false)
- {
- string vCustomFieldsValue = "";
- if (customfieldsDataTable == null)
- {
- iNethinkCMS.BLL.BLL_iNethinkCMS_Channel_CustomFields bll_customfields = new BLL.BLL_iNethinkCMS_Channel_CustomFields();
- customfieldsDataTable = bll_customfields.GetList(0, "[Display]=1", "OrderNum Desc,ID Desc").Tables[0];
- // customfieldsDataTable.PrimaryKey = new System.Data.DataColumn[] { new System.Data.DataColumn("CustomFieldsKey") };
- }
- for (int i = 0; i < customfieldsDataTable.Rows.Count; i++)
- {
- string vCustomFieldsKey = customfieldsDataTable.Rows[i]["CustomFieldsKey"].ToString();
- if (vCustomFieldsKey.Trim().ToLower() == byCustomFieldsKey.Trim().ToLower())
- {
- vCustomFieldsValue = customfieldsDataTable.Rows[i]["CustomFieldsValue"].ToString().Trim();
- break;
- }
- else if (i + 1 == customfieldsDataTable.Rows.Count)
- {
- customfieldsDataTable.Rows.Clear();
- customfieldsDataTable.Dispose();
- customfieldsDataTable = null;
- if (!isReload)
- {
- vCustomFieldsValue = Fun_GetCustomFieldsValue(byCustomFieldsKey, true);
- }
- }
- }
- return vCustomFieldsValue;
- }
- //获取地址
- public static string Fun_UrlRewriter(string byString)
- {
- //string vTmp = byString;
- int vUrlMode = Command.Command_Configuration.GetConfigInt("UrlMode");
- if (vUrlMode == 1)
- {
- string vRewriteExtName = Command.Command_Configuration.GetConfigString("RewriteExtName");
- string vRewriteChannelPrefix = Command.Command_Configuration.GetConfigString("RewriteChannelPrefix");
- string vRewriteSpecialPrefix = Command.Command_Configuration.GetConfigString("RewriteSpecialPrefix");
- string vRewriteContentPrefix = Command.Command_Configuration.GetConfigString("RewriteContentPrefix");
- string vRewriteGuestbookPrefix = Command.Command_Configuration.GetConfigString("RewriteGuestbookPrefix");
- byString = Fun_ReplaceX(byString, @"(content.aspx\?id=)(\d+)(&page=)(\d+)", vRewriteContentPrefix + "_$2_$4." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(content.aspx\?id=)(\d+)", vRewriteContentPrefix + "_$2." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(channel.aspx\?id=)(\d+)(&page=)(\d+)", vRewriteChannelPrefix + "_$2_$4." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(channel.aspx\?id=)(\d+)", vRewriteChannelPrefix + "_$2." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(special.aspx\?id=)(\d+)(&page=)(\d+)", vRewriteSpecialPrefix + "_$2_$4." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(special.aspx\?id=)(\d+)", vRewriteSpecialPrefix + "_$2." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(plugs/guestbook/index.aspx\?page=)(\d+)", vRewriteGuestbookPrefix + "_$2." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(plugs/guestbook/index.aspx)", vRewriteGuestbookPrefix + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(index.aspx\?page=)(\d+)", "index_$2." + vRewriteExtName);
- byString = Fun_ReplaceX(byString, @"(index.aspx)", "index." + vRewriteExtName);
- }
- return byString;
- }
- public static string Fun_ReplaceX(string byHtml, string byPatterns, string byReplaceval)
- {
- Regex myRegex = new Regex(byPatterns, RegexOptions.IgnoreCase);
- return myRegex.Replace(byHtml, byReplaceval);
- }
- }
- }
|