html2json.js 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. var __placeImgeUrlHttps = "https";
  2. var __emojisReg = '';
  3. var __emojisBaseSrc = '';
  4. var __emojis = {};
  5. var wxDiscode = require('./wxDiscode.js');
  6. var HTMLParser = require('./htmlparser.js');
  7. // Empty Elements - HTML 5
  8. var empty = makeMap("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr");
  9. // Block Elements - HTML 5
  10. var block = makeMap("br,a,code,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video");
  11. // Inline Elements - HTML 5
  12. var inline = makeMap("abbr,acronym,applet,b,basefont,bdo,big,button,cite,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var");
  13. // Elements that you can, intentionally, leave open
  14. // (and which close themselves)
  15. var closeSelf = makeMap("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr");
  16. // Attributes that have their values filled in disabled="disabled"
  17. var fillAttrs = makeMap("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected");
  18. // Special Elements (can contain anything)
  19. var special = makeMap("wxxxcode-style,script,style,view,scroll-view,block");
  20. function makeMap(str) {
  21. var obj = {}, items = str.split(",");
  22. for (var i = 0; i < items.length; i++)
  23. obj[items[i]] = true;
  24. return obj;
  25. }
  26. function q(v) {
  27. return '"' + v + '"';
  28. }
  29. function removeDOCTYPE(html) {
  30. return html
  31. .replace(/<\?xml.*\?>\n/, '')
  32. .replace(/<.*!doctype.*\>\n/, '')
  33. .replace(/<.*!DOCTYPE.*\>\n/, '');
  34. }
  35. function trimHtml(html) {
  36. return html
  37. .replace(/\r?\n+/g, '')
  38. .replace(/<!--.*?-->/ig, '')
  39. .replace(/\/\*.*?\*\//ig, '')
  40. .replace(/[ ]+</ig, '<')
  41. }
  42. function html2json(html, bindName) {
  43. //处理字符串
  44. html = removeDOCTYPE(html);
  45. html = trimHtml(html);
  46. html = wxDiscode.strDiscode(html);
  47. //生成node节点
  48. var bufArray = [];
  49. var results = {
  50. node: bindName,
  51. nodes: [],
  52. images:[],
  53. imageUrls:[]
  54. };
  55. var index = 0;
  56. HTMLParser(html, {
  57. start: function (tag, attrs, unary) {
  58. //debug(tag, attrs, unary);
  59. // node for this element
  60. var node = {
  61. node: 'element',
  62. tag: tag,
  63. };
  64. if (bufArray.length === 0) {
  65. node.index = index.toString()
  66. index += 1
  67. } else {
  68. var parent = bufArray[0];
  69. if (parent.nodes === undefined) {
  70. parent.nodes = [];
  71. }
  72. node.index = parent.index + '.' + parent.nodes.length
  73. }
  74. if (block[tag]) {
  75. node.tagType = "block";
  76. } else if (inline[tag]) {
  77. node.tagType = "inline";
  78. } else if (closeSelf[tag]) {
  79. node.tagType = "closeSelf";
  80. }
  81. if (attrs.length !== 0) {
  82. node.attr = attrs.reduce(function (pre, attr) {
  83. var name = attr.name;
  84. var value = attr.value;
  85. if (name == 'class') {
  86. console.dir(value);
  87. // value = value.join("")
  88. node.classStr = value;
  89. }
  90. // has multi attibutes
  91. // make it array of attribute
  92. if (name == 'style') {
  93. // console.dir(value);
  94. // value = value.join("")
  95. node.styleStr = value;
  96. }
  97. if (value.match(/ /)) {
  98. value = value.split(' ');
  99. }
  100. // if attr already exists
  101. // merge it
  102. if (pre[name]) {
  103. if (Array.isArray(pre[name])) {
  104. // already array, push to last
  105. pre[name].push(value);
  106. } else {
  107. // single value, make it array
  108. pre[name] = [pre[name], value];
  109. }
  110. } else {
  111. // not exist, put it
  112. pre[name] = value;
  113. }
  114. return pre;
  115. }, {});
  116. }
  117. //对img添加额外数据
  118. if (node.tag === 'img') {
  119. node.imgIndex = results.images.length;
  120. var imgUrl = node.attr.src;
  121. if (imgUrl[0] == '') {
  122. imgUrl.splice(0, 1);
  123. }
  124. imgUrl = wxDiscode.urlToHttpUrl(imgUrl, __placeImgeUrlHttps);
  125. node.attr.src = imgUrl;
  126. node.from = bindName;
  127. results.images.push(node);
  128. results.imageUrls.push(imgUrl);
  129. }
  130. // 处理font标签样式属性
  131. if (node.tag === 'font') {
  132. var fontSize = ['x-small', 'small', 'medium', 'large', 'x-large', 'xx-large', '-webkit-xxx-large'];
  133. var styleAttrs = {
  134. 'color': 'color',
  135. 'face': 'font-family',
  136. 'size': 'font-size'
  137. };
  138. if (!node.attr.style) node.attr.style = [];
  139. if (!node.styleStr) node.styleStr = '';
  140. for (var key in styleAttrs) {
  141. if (node.attr[key]) {
  142. var value = key === 'size' ? fontSize[node.attr[key]-1] : node.attr[key];
  143. node.attr.style.push(styleAttrs[key]);
  144. node.attr.style.push(value);
  145. node.styleStr += styleAttrs[key] + ': ' + value + ';';
  146. }
  147. }
  148. }
  149. //临时记录source资源
  150. if(node.tag === 'source'){
  151. results.source = node.attr.src;
  152. }
  153. if (unary) {
  154. // if this tag doesn't have end tag
  155. // like <img src="hoge.png"/>
  156. // add to parents
  157. var parent = bufArray[0] || results;
  158. if (parent.nodes === undefined) {
  159. parent.nodes = [];
  160. }
  161. parent.nodes.push(node);
  162. } else {
  163. bufArray.unshift(node);
  164. }
  165. },
  166. end: function (tag) {
  167. //debug(tag);
  168. // merge into parent tag
  169. var node = bufArray.shift();
  170. if (node.tag !== tag) console.error('invalid state: mismatch end tag');
  171. //当有缓存source资源时于于video补上src资源
  172. if(node.tag === 'video' && results.source){
  173. node.attr.src = results.source;
  174. delete results.source;
  175. }
  176. if (bufArray.length === 0) {
  177. results.nodes.push(node);
  178. } else {
  179. var parent = bufArray[0];
  180. if (parent.nodes === undefined) {
  181. parent.nodes = [];
  182. }
  183. parent.nodes.push(node);
  184. }
  185. },
  186. chars: function (text) {
  187. //debug(text);
  188. var node = {
  189. node: 'text',
  190. text: text,
  191. textArray:transEmojiStr(text)
  192. };
  193. if (bufArray.length === 0) {
  194. node.index = index.toString()
  195. index += 1
  196. results.nodes.push(node);
  197. } else {
  198. var parent = bufArray[0];
  199. if (parent.nodes === undefined) {
  200. parent.nodes = [];
  201. }
  202. node.index = parent.index + '.' + parent.nodes.length
  203. parent.nodes.push(node);
  204. }
  205. },
  206. comment: function (text) {
  207. //debug(text);
  208. // var node = {
  209. // node: 'comment',
  210. // text: text,
  211. // };
  212. // var parent = bufArray[0];
  213. // if (parent.nodes === undefined) {
  214. // parent.nodes = [];
  215. // }
  216. // parent.nodes.push(node);
  217. },
  218. });
  219. return results;
  220. };
  221. function transEmojiStr(str){
  222. // var eReg = new RegExp("["+__reg+' '+"]");
  223. // str = str.replace(/\[([^\[\]]+)\]/g,':$1:')
  224. var emojiObjs = [];
  225. //如果正则表达式为空
  226. if(__emojisReg.length == 0 || !__emojis){
  227. var emojiObj = {}
  228. emojiObj.node = "text";
  229. emojiObj.text = str;
  230. array = [emojiObj];
  231. return array;
  232. }
  233. //这个地方需要调整
  234. str = str.replace(/\[([^\[\]]+)\]/g,':$1:')
  235. var eReg = new RegExp("[:]");
  236. var array = str.split(eReg);
  237. for(var i = 0; i < array.length; i++){
  238. var ele = array[i];
  239. var emojiObj = {};
  240. if(__emojis[ele]){
  241. emojiObj.node = "element";
  242. emojiObj.tag = "emoji";
  243. emojiObj.text = __emojis[ele];
  244. emojiObj.baseSrc= __emojisBaseSrc;
  245. }else{
  246. emojiObj.node = "text";
  247. emojiObj.text = ele;
  248. }
  249. emojiObjs.push(emojiObj);
  250. }
  251. return emojiObjs;
  252. }
  253. function emojisInit(reg='',baseSrc="/wxParse/emojis/",emojis){
  254. __emojisReg = reg;
  255. __emojisBaseSrc=baseSrc;
  256. __emojis=emojis;
  257. }
  258. module.exports = {
  259. html2json: html2json,
  260. emojisInit:emojisInit
  261. };