知网 参考文献 bibtex 天津大学

从知网文献中直接复制bibtex,适用于天津大学登录用户。可应用于天津大学论文写作模板中

目前為 2023-05-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name         知网 参考文献 bibtex 天津大学
// @namespace    https://uuanqin.top
// @require      https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js
// @version      1.0.1
// @description  从知网文献中直接复制bibtex,适用于天津大学登录用户。可应用于天津大学论文写作模板中
// @author       uuanqin
// @match        https://*.eds.tju.edu.cn/kcms2/article/abstract*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    jQuery(document).ready(function($) {

        window.onload = function(){

            var a = document.getElementById("paramdbname")
            var b = document.getElementById("paramfilename")
            var fileid = a.getAttribute("value") + '!' + b.getAttribute("value") +'!1!0'

            var x = document.getElementsByClassName("btn-tool")
            var input = document.createElement('li')
            input.setAttribute("id", "bibbtn")
            input.setAttribute("class", "btn-quote")
            //input.setAttribute("type", "button")
            input.setAttribute("title", "Bibtex")
            //input.setAttribute("onclick", "func(this)") href=\"javascript:void(0)\" onclick=\"getBib()\
            input.innerHTML = "<a><i></i>Bibtex</a>"
            x[0].children[0].append(input)

            $("#bibbtn").click(function(){
               var url = window.location.hostname; // Qin: get *.eds.tju.edu.cn
               $.post(`https://${url}/kns8/manage/ShowExport`,  // Qin: change API
                {
                  filename:fileid,
                  displaymode:"NoteExpress"
                },
                function(data){
                    console.log(data);
                    var bibtext = ""

                    // Qin: Parse content
                    var ss = data.match(/(?<=<li>).*(?=<\/li>)/g) // .data[0].value[0]
                    console.log(ss); // just for debugging
                    var ssl = ss[0].split("<br>")
                    
                    for (var i=0; i<ssl.length-1; i++){
                        var k = ssl[i].toLocaleLowerCase().split(" ").join("").split(":")
                        var item = k[0]
                        var detail = k[1]
                        if (item == "{referencetype}"){
                            if (detail == "journalarticle"){
                                bibtext = "@article{cite_label ,\n"
                            }
                            else if(detail == "conferenceproceedings"){
                                bibtext = "@inproceedings{cite_label ,\n"
                            }
                            // Qin: Add your new pattern here
                        }
                        else if(item == "{issue}"){
                            // Qin: I have no idea why 'number' should be enclosed in parentheses, so i fixed it
                            bibtext = bibtext + "   number={" + detail + "},\n" 
                        }
                        else {
                            bibtext = bibtext + "   " + item.substr(1, item.length-2) + "={" + detail + "},\n"
                        }
                    }
                    bibtext += "}"
                    //console.log(bibtext)
                    const copad = document.createElement('textarea')
                    copad.value = bibtext
                    document.body.appendChild(copad)
                    copad.select()
                    document.execCommand('Copy')
                    document.body.removeChild(copad)
                });
            })
        };
    })
})();