12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using Microsoft.AspNetCore.Html;
- using System;
- using System.Text;
- using CZFW.Framework.Interface;
- using CZFW.Framework.Logic;
- using CZFW.Framework.Model.Entity;
- using CZFW.Framework.Model;
- namespace CZKJ.GBRS2.WebMVC.Helper
- {
- public static class ShareExtendion
- {
- public static IHtmlContent CZWechatShare(object model = null)
- {
- IShare share = model as IShare;
- if (share == null)
- {
- string url = CZHttpContext.Current.Request.Path.ToString();
- if (url != null)
- {
- ISeoShare shareLogic = new SeoShareLogic();
- share = shareLogic.GetEntity(x => x.Mark == url.Replace("/", "") || x.Mark == url || x.Url == url);
- }
- }
- if (share == null)
- {
- share = new SeoShareEntity
- {
- ShareImage = "/assets/image/logo-lg.png",
- ShareTitle = "国宝人寿保险股份有限公司",
- ShareUrl = ""
- };
- }
- StringBuilder stringBuilder = new StringBuilder();
- stringBuilder.Append(@"<script>");
- stringBuilder.AppendFormat(@"{1}var shareTitle = '{0}';", share.ShareTitle, Environment.NewLine);
- stringBuilder.AppendFormat(@"{1}var shareLink = '{0}';", share.ShareUrl, Environment.NewLine);
- stringBuilder.AppendFormat(@"{1}var shareImgUrl = '{0}';", share.ShareImage, Environment.NewLine);
- stringBuilder.AppendFormat(@"{1}var shareDesc = '{0}';", share.ShareDescription, Environment.NewLine);
- stringBuilder.AppendFormat(@"{1}var shareDefaultImgUrl = '{0}';{1}", "/Attached/20180315/180315090853849519.png", Environment.NewLine);
- stringBuilder.Append(@"</script>");
- return new HtmlString(stringBuilder.ToString());
- }
- public static IHtmlContent CZSEO(object model = null)
- {
- ISeo seo = model as ISeo;
- if (seo == null || seo.SeoTitle == null)
- {
- string url = CZHttpContext.Current.Request.Path.ToString();
- string allUrl = url + CZHttpContext.Current.Request.QueryString.Value.ToString();
- if (url != null)
- {
- ISeoShare shareLogic = new SeoShareLogic();
- seo = shareLogic.GetEntity(x => x.Mark == url.Replace("/", "") || x.Mark == url || x.Url == url || x.Mark == allUrl);
- }
- }
- if (seo == null || seo.SeoTitle == null)
- {
- seo = new SeoShareEntity
- {
- SeoTitle = "国宝人寿保险股份有限公司",
- SeoKeywords = "国宝人寿保险股份有限公司",
- SeoDescription = "国宝人寿保险股份有限公司"
-
- };
- }
- var html = $"<title>{seo.SeoTitle}</title>";
- html += $"<meta name=\"description\" content=\"{seo.SeoDescription} 国宝 国宝人寿 国宝人寿官网 国宝保险 保险 人寿 人寿保险\"/>";
- html += $"<meta name=\"keywords\" content=\"{seo.SeoKeywords} 国宝 国宝人寿 国宝人寿官网 国宝保险 保险 人寿 人寿保险\"/>";
- return new HtmlString(html);
- }
- }
- }
|