// ==UserScript== // @name Tieba Quotor // @namespace http://gera2ld.blog.163.com/ // @author Gerald // @icon http://s.gravatar.com/avatar/a0ad718d86d21262ccd6ff271ece08a3?s=80 // @version 1.4.5.1 // @description 贴吧引用 // @homepageURL http://geraldl.ml/userjs/TiebaQuotor // @include http://tieba.baidu.com/* // @exclude http://tieba.baidu.com/tb/* // @require https://greasyfork.org/scripts/144/code.user.js // @grant none // @downloadURL none // ==/UserScript== var lzl_update=[]; function initQuote(a) { // 增加直达链接 function getAnchor(i,h){ return ''+h+''; } function anchor(e,p) { if(e.length) e=e.children().children(); if(e.length&&e[0].innerHTML!='沙发') { p=e.parents('.l_post').children('a').attr('name'); e[0].outerHTML=''+e[0].innerHTML+''; e[1].outerHTML=getAnchor(p,e[1].innerHTML); } } // 增加引用按钮 function quote(e) { e.preventDefault(); var m=$(this).parent().hasClass('p_mtail'),o=e.target,p=$(o).parents('.l_post'),l=m?p:$(o).parents('.lzl_single_post'), info=JSON.parse(p.attr('data-field')),u=m?info.author.name:JSON.parse(l.attr('data-field')).user_name; p=[]; o=l.find(m?'div.d_post_content':'span.lzl_content_main').contents(':not(blockquote)').each(function(i,e){p.push(e);}); while(p.length) // 去掉开头空行 if(p[0].tagName=='BR'||!/\S/.test(p[0])) p.shift(); else break; for(l=p.length-1,o=[];l>=0&&p.length;l--) { // 屏蔽尾巴,去掉末尾空行 if(p[l].tagName=='BR') { if(/^\s*($|——|>>)/.test(o.join(''))) {p.splice(l);o.splice(0);} else break; } else o.unshift(p[l].innerText||p[l].textContent||p[l].data); // return undefined for IMG } o=[];p.forEach(function(i){o.push(i.outerHTML||i.data||'');}); o=o.join('') .replace(/^\s+|\s+$/gi,'') // 去掉开头和末尾的空白 .replace(/\s?]*>@(.*?)<\/a>\s?/gi,' $1 ') // 屏蔽点名 .replace(/]*?href="(.*?)"[^>]*>(.*?)<\/a>/,function(v,g1,g2){ // 保留蓝字,屏蔽链接 return g1==g2?g2:''+g2+''; }); o='引用 @'+u+' ('+info.content.floor+'楼'+(m?'':'之楼中楼')+')
'+o+'
————————————————————————————————

'; if(e=utils.unminify) e(); unsafeWindow.test_editor.execCommand('inserthtml',o); } function work(i,j,e,p) { for(i=0,j=0;i引用
').css({'float':'right','margin-left':'5px'}).appendTo(e).click(quote); } } else l[j++]=l[i]; } l.splice(j); if(l.length) setTimeout(work,500); } var l=$('.l_post').get(); work(); lzl_update.push(function(p){ p.find('span.lzl_time').html(function(i,h) { return getAnchor($(this).parents('.lzl_single_post').children('a').attr('name'),h); }); }); if(a) { lzl_update.push(function(p){ $('引用').css('margin-right','10px').insertBefore(p.find('span.lzl_time')).click(quote); }); } } function initQuotationFormat() { // 修改引用文字格式 utils.addStyle('fieldset .BDE_Image{height:auto !important; width:auto !important; max-height:200px; max-width:560px !important;}'); $('div.d_post_content').each(function(i,e) { var c=-1,n=$(e).contents(),j,f; for(j=0;j=0&&f.nodeName=='#text'&&/^\s*—{27,36}\s*$/.test(f.data)) { n.slice(c,c+3).wrapAll('').parent().add(n.slice(c+4,j).wrapAll('

').parent()).wrapAll('

').wrapAll('
'); $(f).add(n[c+3]).remove(); if((f=n[j+1])&&f.nodeName=='BR') {$(f).remove();j++;} c=-1; } else if(f.nodeName=='#text'&&/^\s*引用(\s| ?)+$/.test(f.data) &&n[j+1]&&n[j+1].nodeName=='A'&&n[j+1].innerHTML[0]=='@' &&n[j+2]&&n[j+2].nodeName=='#text'&&/^\s+\(.*?楼\)$/.test(n[j+2].data) &&n[j+3].nodeName=='BR') { c=j;j+=3; } } }); } // 楼中楼初始化 function initLzL() { function updateLzl(p) { var t=this; t.update=function(){ var j=p.find('p.j_pager'); if(j.attr('clicked')=='1') return t.delay(); lzl_update.forEach(function(i){i(p);}); j.click(function(e){ if(e.target.tagName=='A') { $(this).attr('clicked','1'); e=new updateLzl($(this).parents('ul.j_lzl_m_w')); e.delay(); } }); }; t.delay=function(){setTimeout(t.update,200);}; } var p=new updateLzl($('ul.j_lzl_m_w'));p.update(); } if(PageData&&PageData.user&&PageData.thread) { initQuotationFormat(); // 引用格式 if(PageData.user.is_login) { initQuote(PageData.user.is_login&&unsafeWindow.PosterContext&&unsafeWindow.PosterContext.isPostAllowed()); if(unsafeWindow.LzlEditor) initLzL(); //初始化:支持已加载的功能 } }