├── png ├── jd.jpg ├── liwoicon.jpg └── liwoicon.png ├── README.md ├── QXcookie.conf ├── loon ├── cookie.conf └── task.conf ├── liwo ├── 7dayscookie.js ├── jdcookie.js ├── 7days.js ├── lwtask.js ├── jdtqz.js └── ql_tqz.js ├── ql └── GenshinSign.py └── LICENSE /png/jd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iisams/Scripts/HEAD/png/jd.jpg -------------------------------------------------------------------------------- /png/liwoicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iisams/Scripts/HEAD/png/liwoicon.jpg -------------------------------------------------------------------------------- /png/liwoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iisams/Scripts/HEAD/png/liwoicon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sams Scripts 2 | 3 | ❌ 梨涡App的闲时任务提醒与签到 4 | 5 | ❌ 京东特权活力值(小白成长分)签到领取 6 | 7 | ❌ [青龙面板]原神签到 8 | 9 | ```properties 10 | 11 | ql 目录下的为青龙面板使用的脚本~ 12 | 13 | ``` 14 | -------------------------------------------------------------------------------- /QXcookie.conf: -------------------------------------------------------------------------------- 1 | 2 | hostname = api.m.jd.com 3 | 4 | 5 | #7dayscookie 6 | https:\/\/api\.m\.jd\.com\/api\/v1\/sign\/doSign url script-request-body https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7dayscookie.js 7 | 8 | -------------------------------------------------------------------------------- /loon/cookie.conf: -------------------------------------------------------------------------------- 1 | #梨涡签到领现金Cookie (已结束) 2 | http-request https:\/\/api\.m\.jd\.com\/api\/v1\/sign\/doSign script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7dayscookie.js, requires-body=true, timeout=10, tag=梨涡签到领现金Cookie 3 | 4 | [MITM] 5 | hostname = api.m.jd.com 6 | -------------------------------------------------------------------------------- /loon/task.conf: -------------------------------------------------------------------------------- 1 | #梨涡闲时任务提醒 2 | cron "*/5 0-23 * * *" script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/lwtask.js, tag=京东梨涡闲时任务提醒 3 | 4 | #京东特权活力值 5 | cron "5 8 * * *" script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/jdtqz.js, tag=京东特权活力值 6 | 7 | #梨涡签到领现金 8 | cron "7 0 * * *" script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7days.js, tag=梨涡签到领现金 9 | 10 | -------------------------------------------------------------------------------- /liwo/7dayscookie.js: -------------------------------------------------------------------------------- 1 | /*【Loon 2.1+ 脚本配置】 2 | *梨涡app下载⏬:https://bit.ly/33BRwHW 3 | * [Script] 4 | *梨涡签到领现金 5 | *cron "7 0 * * *" script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7days.js,tag=梨涡签到领现金 6 | *http-request https:\/\/api\.m\.jd\.com\/api\/v1\/sign\/doSign script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7dayscookie.js, requires-body=true, timeout=10, tag=梨涡签到领现金Cookie 7 | * 8 | * [MITM] 9 | * 10 | *hostname = api.m.jd.com 11 | */ 12 | 13 | //支持QX loon surge 14 | const CookieName = '😀梨涡签到领钱' 15 | const sams = init() 16 | const lwKey = 'liwo' 17 | const lwVal = $request.headers['Cookie'] 18 | const lwbody = $request.body 19 | const lwbodyKey = "Body" 20 | 21 | if (lwVal && lwbody){ 22 | let cookie = sams.setdata(lwVal, lwKey) 23 | let body = sams.setdata(lwbody, lwbodyKey) 24 | let msg = `${CookieName}` 25 | if (cookie && body){ 26 | sams.msg(msg, '❤梨涡签到写入成功', '详见日志') 27 | sams.log(msg) 28 | sams.log(lwVal) 29 | sams.log(lwbody) 30 | $done({}) 31 | 32 | } 33 | } 34 | 35 | function init() { 36 | isSurge = () => { 37 | return undefined === this.$httpClient ? false : true 38 | } 39 | isQuanX = () => { 40 | return undefined === this.$task ? false : true 41 | } 42 | getdata = (key) => { 43 | if (isSurge()) return $persistentStore.read(key) 44 | if (isQuanX()) return $prefs.valueForKey(key) 45 | } 46 | setdata = (key, val) => { 47 | if (isSurge()) return $persistentStore.write(key, val) 48 | if (isQuanX()) return $prefs.setValueForKey(key, val) 49 | } 50 | msg = (title, subtitle, body) => { 51 | if (isSurge()) $notification.post(title, subtitle, body) 52 | if (isQuanX()) $notify(title, subtitle, body) 53 | } 54 | log = (message) => console.log(message) 55 | get = (url, cb) => { 56 | if (isSurge()) { 57 | $httpClient.get(url, cb) 58 | } 59 | if (isQuanX()) { 60 | url.method = 'GET' 61 | $task.fetch(url).then((resp) => cb(null, resp, resp.body)) 62 | } 63 | } 64 | post = (url, cb) => { 65 | if (isSurge()) { 66 | $httpClient.post(url, cb) 67 | } 68 | if (isQuanX()) { 69 | url.method = 'POST' 70 | $task.fetch(url).then((resp) => cb(null, resp, resp.body)) 71 | } 72 | } 73 | done = (value = {}) => { 74 | $done(value) 75 | } 76 | return { 77 | isSurge, 78 | isQuanX, 79 | msg, 80 | log, 81 | getdata, 82 | setdata, 83 | get, 84 | post, 85 | done 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /liwo/jdcookie.js: -------------------------------------------------------------------------------- 1 | /*本获取京东cookie同样适用特权值签到与闲时任务提醒 2 | * 我的梨涡邀请码:dasaw 3 | * 邀请链接 http://2do.jd.com/events/red-envelopes/?inviter=1236228340192960513&channel=cash&extParam=1260048962852974594#/ 4 | * 进野比大佬的京东京豆签到 bean.m.jd.com 再签到一下就能获取cookie了。 5 | * ------------ 已弃用(直接使用野比大佬的jdcookie) ------------- 6 | * 【Loon 2.1+ 脚本配置】: 7 | * 8 | * [Script] 9 | * cron "5 8 * * *" script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/jdtqz.js, tag= 京东特权值 10 | * cron "0 0-22 * * *" tag=京东梨涡任务查看, script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/lwtask.js 11 | * http-request https:\/\/api\.m\.jd\.com\/client\.action.*functionId=signBean tag=获取京东Cookie, script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/jdcookie.js 12 | * 13 | * [MITM] 14 | * 15 | * hostname = api.m.jd.com 16 | */ 17 | 18 | 19 | const cookieName = '京东特权值、梨涡闲时任务' 20 | const Key = 'CookieJD' 21 | const sams = init() 22 | const Val = $request.headers['Cookie'] 23 | 24 | if (Val) { 25 | if (sams.setdata(Val, Key)) { 26 | sams.msg(`${cookieName}`, '❤获取Cookie成功', '') 27 | sams.log(`[${cookieName}] ❤获取Cookie: 成功, cookie: ${Val}`) 28 | } 29 | } 30 | 31 | function init() { 32 | isSurge = () => { 33 | return undefined === this.$httpClient ? false : true 34 | } 35 | isQuanX = () => { 36 | return undefined === this.$task ? false : true 37 | } 38 | getdata = (key) => { 39 | if (isSurge()) return $persistentStore.read(key) 40 | if (isQuanX()) return $prefs.valueForKey(key) 41 | } 42 | setdata = (key, val) => { 43 | if (isSurge()) return $persistentStore.write(key, val) 44 | if (isQuanX()) return $prefs.setValueForKey(key, val) 45 | } 46 | msg = (title, subtitle, body) => { 47 | if (isSurge()) $notification.post(title, subtitle, body) 48 | if (isQuanX()) $notify(title, subtitle, body) 49 | } 50 | log = (message) => console.log(message) 51 | get = (url, cb) => { 52 | if (isSurge()) { 53 | $httpClient.get(url, cb) 54 | } 55 | if (isQuanX()) { 56 | url.method = 'GET' 57 | $task.fetch(url).then((resp) => cb(null, {}, resp.body)) 58 | } 59 | } 60 | post = (url, cb) => { 61 | if (isSurge()) { 62 | $httpClient.post(url, cb) 63 | } 64 | if (isQuanX()) { 65 | url.method = 'POST' 66 | $task.fetch(url).then((resp) => cb(null, {}, resp.body)) 67 | } 68 | } 69 | done = (value = {}) => { 70 | $done(value) 71 | } 72 | return { isSurge, isQuanX, msg, log, getdata, setdata, get, post, done } 73 | } 74 | sams.done() 75 | -------------------------------------------------------------------------------- /ql/GenshinSign.py: -------------------------------------------------------------------------------- 1 | # 适用于青龙面板环境的原神签到脚本,设置环境变量 ysCK ,值为米游社原神网页版 https://bbs.mihoyo.com/ys/ 的 cookie 2 | # 原作者脚本:https://github.com/unknown-o/genshin-check-in/blob/master/index.py 3 | import os 4 | import time 5 | import json 6 | import random 7 | import hashlib 8 | import requests 9 | from notify import send #调用scripts目录下的通知文件 10 | 11 | # Cookie 12 | def env(key): 13 | return os.environ.get(key) 14 | 15 | yscookies = [] 16 | if env("ysCK"): 17 | yscookies.extend(env("ysCK").split('&')) 18 | 19 | def get_ds(): 20 | salt = 'h8w582wxwgqvahcdkpvdhbh2w9casgfl' 21 | timestamp = str(int(time.time())) 22 | random_string_list = '0123456789abcdefghijklmnopqrstuvwxyz' 23 | random_string = ''.join(random.sample(random_string_list, 6)) 24 | ds_string = 'salt=' + salt + '&t=' + timestamp + '&r=' + random_string 25 | ds_md5 = hashlib.md5(ds_string.encode(encoding='UTF-8')).hexdigest() 26 | ds = timestamp + ',' + random_string + ',' + ds_md5 27 | return ds 28 | 29 | def get_game_info(cookies): 30 | req = requests.get("https://api-takumi.mihoyo.com/binding/api/getUserGameRolesByCookie?game_biz=hk4e_cn", cookies=cookies) 31 | result = json.loads(req.text) 32 | return result 33 | 34 | def cookie_str2dict(cookie_string): 35 | cookie = cookie_string.replace(" ","").split(";") 36 | cookies = {} 37 | for i in cookie: 38 | cookies[i.split("=")[0]] = i.split("=")[1] 39 | return cookies 40 | 41 | def bbs_sign_reward(cookies, ds, game_info): 42 | url = "https://api-takumi.mihoyo.com/event/bbs_sign_reward/sign" 43 | headers = { 44 | 'DS': ds, 45 | 'x-rpc-app_version': '2.3.0', 46 | 'x-rpc-client_type': '5', 47 | "x-rpc-device_id": "bd7f912e-908c-3692-a520-e70206823495" 48 | } 49 | post_data = { 50 | "act_id":"e202009291139501", 51 | "region":game_info['data']['list'][0]['region'], 52 | "uid":game_info['data']['list'][0]['game_uid'] 53 | } 54 | req = requests.post(url=url, data = json.dumps(post_data), headers=headers, cookies=cookies) 55 | result = json.loads(req.text) 56 | print(result) 57 | return result 58 | 59 | def main_handler(): 60 | sendtext = "" 61 | for user in range(len(yscookies)): 62 | cookie_string = yscookies[user] 63 | if(cookie_string == None or cookie_string == ""): 64 | print("环境变量错误或为空!") 65 | exit() 66 | cookies = cookie_str2dict(cookie_string) 67 | game_info = get_game_info(cookies) 68 | if(game_info['retcode'] != 0): 69 | print("签到失败!") 70 | print(game_info) 71 | 72 | else: 73 | print("执行成功!") 74 | print(game_info) 75 | senduser = game_info['data']['list'][0]['nickname'] 76 | sendmsg = bbs_sign_reward(cookies, get_ds(), game_info)['message'] 77 | sendtext +=senduser + '➡️' + sendmsg + '\n' 78 | send('✨✨原神签到✨✨', sendtext + "\n✨✨ https://github.com/iisams ✨✨") 79 | 80 | main_handler() 81 | -------------------------------------------------------------------------------- /liwo/7days.js: -------------------------------------------------------------------------------- 1 | /*【Loon 2.1+ 脚本配置】已经结束了 同时梨涡app将在4月30下线 2 | * 梨涡app: https://bit.ly/33BRwHW 3 | * [Script] 4 | * 5 | *梨涡签到领现金 6 | *cron "7 0 * * *" script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7days.js,tag=梨涡签到领现金 7 | *http-request https:\/\/api\.m\.jd\.com\/api\/v1\/sign\/doSign script-path=https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7dayscookie.js, requires-body=true, timeout=10, tag=梨涡签到领现金Cookie 8 | * 9 | *[MITM] 10 | * 11 | *hostname = api.m.jd.com 12 | */ 13 | 14 | //支持QX loon surge 15 | 16 | const sams = new Env('梨涡签到领现金'); 17 | const lwKey = 'CookieJD' 18 | const lwVal = sams.getdata(lwKey) 19 | const lwbodyKey = "Body" 20 | const lwbody = sams.getdata(lwbodyKey) 21 | const option = {"open-url":"yocial://webview/?url=https%3A%2F%2F2do.jd.com%2Fevents%2F7-days%2F%23%2F&login=1"} 22 | const option2 = {"open-url":"yocial://webview/?url=https%3A%2F%2Flwxianshi.jd.com%2FidleHours%2Findex.html%23%2Fwallet&login=1"} 23 | 24 | const header = {"Accept": "application/json, text/plain, */*","Accept-Encoding": "gzip, deflate, br","Accept-Language": "zh-cn","Connection": "keep-alive","Content-Length": "246","Content-Type": "application/x-www-form-urlencoded","Cookie": lwVal,"Host": "api.m.jd.com","Origin": "https://2do.jd.com","Referer": "https://2do.jd.com/events/7-days/","User-Agent":"Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148/yocial,"} 25 | 26 | const header2 = {"Accept": "application/json, text/plain, */*","Accept-Encoding": "gzip, deflate, br","Accept-Language": "zh-cn","Connection": "keep-alive","Content-Length": "83","Content-Type": "application/x-www-form-urlencoded","Cookie":lwVal ,"Host": "api.m.jd.com","Origin": "https://2do.jd.com","Referer": "https://2do.jd.com/app/my-assets/","User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148/yocial/5.2.3(iOS;14.2;com.jd.campustodo)",} 27 | 28 | const nowtime = Date.now() 29 | const changebody = lwbody.replace(/(&t=)\d*/,"&t=" + nowtime) 30 | const resetboody = changebody.replace(/v1_sign_doSign/,"v1_sign_resetSign") 31 | sams.log("刷新时间成功 "+"Time:" + nowtime ) 32 | 33 | var params = { 34 | url:"https://api.m.jd.com/api/v1/sign/doSign", 35 | headers:header, 36 | body:changebody 37 | } 38 | 39 | var resetparams = { 40 | url:"https://api.m.jd.com/api/v1/sign/resetSign", 41 | headers:header, 42 | body:resetboody 43 | } 44 | 45 | var moneyparams = { 46 | url:"https://api.m.jd.com/api/v1/myProperty/loadCenterInfo", 47 | headers:header2, 48 | body:`appid=yocial-h5&functionId=v1_myProperty_loadCenterInfo&t=`+nowtime+`&loginType=2` 49 | } 50 | 51 | var money = '' 52 | var message = '' 53 | var usermsg = '' 54 | var userimg ='' 55 | 56 | function getmoney() { 57 | return new Promise((resolve) => { 58 | sams.post(moneyparams, 59 | (error,reponse,data) => { 60 | try { 61 | data = JSON.parse(data); 62 | sams.log(JSON.stringify(data)) 63 | if (data.status == true) { 64 | usermsg += `ᥬᥬ😎ᩤᩤ账号:${data.data.centerUserInfo.nickName}` 65 | userimg = data.data.centerUserInfo.yunDefImageUrl 66 | money += `💰钱包:${data.data.centerUserInfo.lazyIncome}元\n🧧积分:${data.data.centerUserInfo.point}分\n` 67 | } 68 | else{money +=`💰钱包余额获取失败`} 69 | } catch (e) { 70 | sams.log(e, resp); 71 | } finally { 72 | resolve(data); 73 | } 74 | }) 75 | }) 76 | } 77 | 78 | 79 | function sign() { 80 | return new Promise((resolve) => { 81 | sams.post(params, 82 | (error,reponse,data) => { 83 | try { 84 | result = JSON.parse(data); 85 | sams.log(JSON.stringify(result)) 86 | if (result.status == true) { 87 | let subTitle = `💚签到成功\n` 88 | let detail = "✅" +result.data.message 89 | message += subTitle+detail 90 | sams.log(detail) 91 | } 92 | //签过到了 93 | else if (result.status == false && result.error.code == 39002) { 94 | let subTitle = `💛您已签到\n` 95 | let detail = "❕" +result.error.message 96 | message += subTitle+detail 97 | sams.log(detail) 98 | } 99 | else if (result.status == false && result.error.code == 1007) { 100 | let subTitle = `😈登陆失效\n` 101 | let detail = "❕" +result.error.message 102 | message += subTitle+detail 103 | sams.log(detail) 104 | } 105 | //重新新一轮签到 106 | else if (result.status == false && result.error.code == 39004) { 107 | setTimeout(resetSign(),10) 108 | sams.log("重新新一轮签到") 109 | } 110 | else if (result.status == false && result.error.code == 39003) { 111 | setTimeout(resetSign(),10) 112 | sams.log("重新新一轮签到") 113 | } 114 | //失败 115 | else { 116 | let subTitle = `💔失败详情\n` 117 | let detail = "❗" +result 118 | message += subTitle+detail 119 | sams.log(detail) 120 | } 121 | } catch (e) { 122 | sams.log(e, resp); 123 | } finally { 124 | resolve(data); 125 | } 126 | }) 127 | }) 128 | } 129 | 130 | 131 | 132 | 133 | function resetSign() { 134 | return new Promise((resolve) => { 135 | sams.post(resetparams, 136 | (error,reponse,data) => { 137 | try { 138 | result = JSON.parse(data); 139 | sams.log(result) 140 | if (result.status == true) { 141 | let subTitle = `💚Reset签到成功\n` 142 | let detail = "✅" +result.data.message 143 | message += subTitle+detail 144 | sams.log(detail) 145 | } 146 | //签过到了 147 | else if (result.status == false && result.error.code == 39002) { 148 | let subTitle = `💛您已签到\n` 149 | let detail = "❕" +result.error.message 150 | message += subTitle+detail 151 | sams.log(detail) 152 | } 153 | else if (result.status == false && result.error.code == 1007) { 154 | let subTitle = `😈登陆失效\n` 155 | let detail = "❕" +result.error.message 156 | message += subTitle+detail 157 | sams.log(detail) 158 | } 159 | 160 | //失败 161 | else { 162 | let subTitle = `💔失败详情\n` 163 | let detail = "❗" +result 164 | message += subTitle+detail 165 | sams.log(detail) 166 | } 167 | } catch (e) { 168 | sams.log(e, resp); 169 | } finally { 170 | resolve(data); 171 | } 172 | }) 173 | }) 174 | } 175 | 176 | function show(){ 177 | let title = "梨涡签到领现金 -3月10日结束" 178 | sams.msg(title,usermsg,money+message,{ 'open-url': "yocial://webview/?url=https%3A%2F%2F2do.jd.com%2Fevents%2F7-days%2F%23%2F&login=1", 'media-url': userimg }) 179 | } 180 | 181 | 182 | async function dotask() { 183 | //await sign(); 184 | await getmoney(); 185 | await show() 186 | sams.done() 187 | } 188 | 189 | dotask() 190 | function Env(t,e){class s{constructor(t){this.env=t}send(t,e="GET"){t="string"==typeof t?{url:t}:t;let s=this.get;return"POST"===e&&(s=this.post),new Promise((e,i)=>{s.call(this,t,(t,s,r)=>{t?i(t):e(s)})})}get(t){return this.send.call(this.env,t)}post(t){return this.send.call(this.env,t,"POST")}}return new class{constructor(t,e){this.name=t,this.http=new s(this),this.data=null,this.dataFile="box.dat",this.logs=[],this.isMute=!1,this.isNeedRewrite=!1,this.logSeparator="\n",this.startTime=(new Date).getTime(),Object.assign(this,e),this.log("",`\ud83d\udd14${this.name}, \u5f00\u59cb!`)}isNode(){return"undefined"!=typeof module&&!!module.exports}isQuanX(){return"undefined"!=typeof $task}isSurge(){return"undefined"!=typeof $httpClient&&"undefined"==typeof $loon}isLoon(){return"undefined"!=typeof $loon}toObj(t,e=null){try{return JSON.parse(t)}catch{return e}}toStr(t,e=null){try{return JSON.stringify(t)}catch{return e}}getjson(t,e){let s=e;const i=this.getdata(t);if(i)try{s=JSON.parse(this.getdata(t))}catch{}return s}setjson(t,e){try{return this.setdata(JSON.stringify(t),e)}catch{return!1}}getScript(t){return new Promise(e=>{this.get({url:t},(t,s,i)=>e(i))})}runScript(t,e){return new Promise(s=>{let i=this.getdata("@chavy_boxjs_userCfgs.httpapi");i=i?i.replace(/\n/g,"").trim():i;let r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=e&&e.timeout?e.timeout:r;const[o,h]=i.split("@"),a={url:`http://${h}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":o,Accept:"*/*"}};this.post(a,(t,e,i)=>s(i))}).catch(t=>this.logErr(t))}loaddata(){if(!this.isNode())return{};{this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e);if(!s&&!i)return{};{const i=s?t:e;try{return JSON.parse(this.fs.readFileSync(i))}catch(t){return{}}}}}writedata(){if(this.isNode()){this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e),r=JSON.stringify(this.data);s?this.fs.writeFileSync(t,r):i?this.fs.writeFileSync(e,r):this.fs.writeFileSync(t,r)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of i)if(r=Object(r)[t],void 0===r)return s;return r}lodash_set(t,e,s){return Object(t)!==t?t:(Array.isArray(e)||(e=e.toString().match(/[^.[\]]+/g)||[]),e.slice(0,-1).reduce((t,s,i)=>Object(t[s])===t[s]?t[s]:t[s]=Math.abs(e[i+1])>>0==+e[i+1]?[]:{},t)[e[e.length-1]]=s,t)}getdata(t){let e=this.getval(t);if(/^@/.test(t)){const[,s,i]=/^@(.*?)\.(.*?)$/.exec(t),r=s?this.getval(s):"";if(r)try{const t=JSON.parse(r);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,r]=/^@(.*?)\.(.*?)$/.exec(e),o=this.getval(i),h=i?"null"===o?null:o||"{}":"{}";try{const e=JSON.parse(h);this.lodash_set(e,r,t),s=this.setval(JSON.stringify(e),i)}catch(e){const o={};this.lodash_set(o,r,t),s=this.setval(JSON.stringify(o),i)}}else s=this.setval(t,e);return s}getval(t){return this.isSurge()||this.isLoon()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?(this.data=this.loaddata(),this.data[t]):this.data&&this.data[t]||null}setval(t,e){return this.isSurge()||this.isLoon()?$persistentStore.write(t,e):this.isQuanX()?$prefs.setValueForKey(t,e):this.isNode()?(this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0):this.data&&this.data[e]||null}initGotEnv(t){this.got=this.got?this.got:require("got"),this.cktough=this.cktough?this.cktough:require("tough-cookie"),this.ckjar=this.ckjar?this.ckjar:new this.cktough.CookieJar,t&&(t.headers=t.headers?t.headers:{},void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar))}get(t,e=(()=>{})){t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isLoon()?(this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)})):this.isQuanX()?(this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t))):this.isNode()&&(this.initGotEnv(t),this.got(t).on("redirect",(t,e)=>{try{if(t.headers["set-cookie"]){const s=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();s&&this.ckjar.setCookieSync(s,null),e.cookieJar=this.ckjar}}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)}))}post(t,e=(()=>{})){if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isLoon())this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.post(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)});else if(this.isQuanX())t.method="POST",this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t));else if(this.isNode()){this.initGotEnv(t);const{url:s,...i}=t;this.got.post(s,i).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)})}}time(t){let e={"M+":(new Date).getMonth()+1,"d+":(new Date).getDate(),"H+":(new Date).getHours(),"m+":(new Date).getMinutes(),"s+":(new Date).getSeconds(),"q+":Math.floor(((new Date).getMonth()+3)/3),S:(new Date).getMilliseconds()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,((new Date).getFullYear()+"").substr(4-RegExp.$1.length)));for(let s in e)new RegExp("("+s+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?e[s]:("00"+e[s]).substr((""+e[s]).length)));return t}msg(e=t,s="",i="",r){const o=t=>{if(!t)return t;if("string"==typeof t)return this.isLoon()?t:this.isQuanX()?{"open-url":t}:this.isSurge()?{url:t}:void 0;if("object"==typeof t){if(this.isLoon()){let e=t.openUrl||t.url||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}if(this.isQuanX()){let e=t["open-url"]||t.url||t.openUrl,s=t["media-url"]||t.mediaUrl;return{"open-url":e,"media-url":s}}if(this.isSurge()){let e=t.url||t.openUrl||t["open-url"];return{url:e}}}};if(this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,o(r)):this.isQuanX()&&$notify(e,s,i,o(r))),!this.isMuteLog){let t=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];t.push(e),s&&t.push(s),i&&t.push(i),console.log(t.join("\n")),this.logs=this.logs.concat(t)}}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,e){const s=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();s?this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack):this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t)}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${s} \u79d2`),this.log(),(this.isSurge()||this.isQuanX()||this.isLoon())&&$done(t)}}(t,e)} 191 | -------------------------------------------------------------------------------- /liwo/lwtask.js: -------------------------------------------------------------------------------- 1 | //获取当前可参与的任务 2 | //QX loon surge 3 | 4 | const $ = new Env('lwtask'); 5 | const taskName = '😊梨涡闲时任务提醒⏰点击通知直达闲时' 6 | const Val = $.getval('CookieJD') 7 | const url = "https://ms.jr.jd.com/gw/generic/bt/h5/m/queryLazyTaskList?time=-&reqData=" 8 | const option = {"open-url":"yocial://free_time"} 9 | 10 | const review = encodeURI (url + JSON.stringify({"clientVersion":"4.1.0", 11 | "taskType":"2", 12 | "pageNo":1, 13 | "pageSize":10, 14 | "clientType":""})) 15 | const invite = encodeURI (url + JSON.stringify({"clientVersion":"4.1.0", 16 | "taskType":"3", 17 | "pageNo":1, 18 | "pageSize":10, 19 | "clientType":""})) 20 | const pick = encodeURI (url + JSON.stringify 21 | ({"clientVersion":"4.1.0", 22 | "taskType":"1", 23 | "pageNo":1, 24 | "pageSize":10, 25 | "clientType":""})) 26 | const talk = encodeURI (url + JSON.stringify 27 | ({"clientVersion":"4.1.0", 28 | "taskType":"4", 29 | "pageNo":1, 30 | "pageSize":10, 31 | "clientType":""})) 32 | const look = encodeURI (url + JSON.stringify 33 | ({"clientVersion":"4.1.0", 34 | "taskType":"7", 35 | "pageNo":1, 36 | "pageSize":10, 37 | "clientType":""})) 38 | 39 | const headers = {"Accept": "application/json, text/plain, */*", 40 | "Accept-Encoding": "gzip, deflate, br", 41 | "Accept-Language": "zh-cn", 42 | "Connection": "keep-alive", 43 | "Cookie": Val, 44 | "Host": "ms.jr.jd.com", 45 | "Origin": "https://btfront.jd.com", 46 | "Referer": "https://btfront.jd.com/release/zoneAuth/index.html?source=207&backURL=https%3A%2F%2Flwxianshi.jd.com%2FidleHours%2Findex.html%23%2Fbridge", 47 | "User-Agent":"jdapp;iPhone;4.0.0;13.6.1;00e75528501feabe305085bd1d74f9ad2a49cc97;network/wifi;ADID/BDAE754C-5799-461C-B226-BC666A103CE1;model/iPhone8,4;appBuild/428;jdSupportDarkMode/0;pv/55.1;pap/(null)|(null)|IOS 13.5.1;apprpd/;psn/00e75528501feabe305085bd1d74f9ad2a49cc97|554;usc/;jdv/;umd/;psq/0;ucp/;app_device/IOS;utr/;ref/;adk/;ads/;Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148/yocial",} 48 | 49 | const header2 = {"Accept": "application/json, text/plain, */*", 50 | "Accept-Encoding": "gzip, deflate, br", 51 | "Accept-Language": "zh-cn", 52 | "Connection": "keep-alive", 53 | "Cookie": Val, 54 | "Host": "ms.jr.jd.com", 55 | "Origin": "https://btfront.jd.com", 56 | "Referer": "https://btfront.jd.com/release/growth/index.html?source=SYDBRK&lng=110.328383&lat=25.262626&sid=&un_area=", 57 | "User-Agent": "jdapp;iPhone;9.1.2;13.6.1;4216e3eb5d471450716807c479490761c4c4c5ab;network/wifi;ADID/0AF252D9-FB62-4177-9DE5-EEF1E3D4D5CB;supportApplePay/3;hasUPPay/1;pushNoticeIsOpen/0;model/iPhone8,4;addressid/2492304509;hasOCPay/0;appBuild/167361;supportBestPay/1;jdSupportDarkMode/0;pv/561.4;apprpd/MyJD_Main;ref/JDWebViewController;psq/3;ads/;psn/4216e3eb5d471450716807c479490761c4c4c5ab|825;jdv/0|iosapp|t_335139774|appshare|CopyURL|1598588445172|1598588452;adk/;app_device/IOS;pap/JA2015_311210|9.1.2|IOS 13.6.1;Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1",} 58 | 59 | var params1 = { 60 | url:pick, 61 | headers:headers, 62 | } 63 | 64 | var params2 = { 65 | url:review, 66 | headers:headers, 67 | } 68 | 69 | var params3 = { 70 | url:invite, 71 | headers:headers, 72 | } 73 | 74 | var params4 = { 75 | url:talk, 76 | headers:headers, 77 | } 78 | var params5 = { 79 | url:look, 80 | headers:headers, 81 | } 82 | 83 | 84 | var message = "" 85 | var active = "" 86 | /*function dotask(){ 87 | setTimeout(looklist(),10) 88 | setTimeout(picklist(),20) 89 | setTimeout(reviewlist(),30) 90 | setTimeout(talklist(),40) 91 | setTimeout(invitelist(),50) 92 | setTimeout(show(),60) 93 | }*/ 94 | 95 | function gettip() { 96 | return new Promise((resolve) => { 97 | var nowtime = Date.now() 98 | var params = { 99 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/queryBubble?_="+ nowtime +"&reqData=%7B%22req%22:%7B%22channelId%22:2,%22typeCode%22:%22interactive_bubble%22,%22size%22:1%7D%7D", 100 | headers:header2 101 | } 102 | $.get(params, 103 | (error,reponse,data) => { 104 | try { 105 | data = JSON.parse(data); 106 | if (data.resultCode == 0) { 107 | active += `🍄说:${data.resultData.bubbleInfoList[0].content}` 108 | $.log(active) 109 | } 110 | else{active +=`Github:@iisams 制作`} 111 | } catch (e) { 112 | $.log(e, resp); 113 | } finally { 114 | resolve(data); 115 | } 116 | }) 117 | }) 118 | } 119 | 120 | function get_data(p){ 121 | return new Promise((resolve)=>{ 122 | setTimeout(() => {$.get(p,(error,response,data)=>{ 123 | try{ 124 | data = JSON.parse(data) 125 | } 126 | catch(e){ 127 | $.log(e,response) 128 | } 129 | finally{ 130 | resolve(data) 131 | } 132 | } 133 | ) 134 | },10) 135 | } 136 | ) 137 | } 138 | 139 | async function looklist(){ 140 | const d = await get_data(params5) 141 | return new Promise((resolve)=>{ 142 | var i 143 | const tasklist = d.resultData.data.queryTaskListInfo.taskInfoList 144 | try{ 145 | for (i=0;i{ 164 | var i 165 | const tasklist = d.resultData.data.queryTaskListInfo.taskInfoList 166 | try{ 167 | for (i=0;i{ 186 | var i 187 | const tasklist = d.resultData.data.queryTaskListInfo.taskInfoList 188 | try{ 189 | for (i=0;i{ 208 | var i 209 | const tasklist = d.resultData.data.queryTaskListInfo.taskInfoList 210 | try{ 211 | for (i=0;i{ 230 | var i 231 | const tasklist = d.resultData.data.queryTaskListInfo.taskInfoList 232 | try{ 233 | for (i=0;i{s.call(this,t,(t,s,r)=>{t?i(t):e(s)})})}get(t){return this.send.call(this.env,t)}post(t){return this.send.call(this.env,t,"POST")}}return new class{constructor(t,e){this.name=t,this.http=new s(this),this.data=null,this.dataFile="box.dat",this.logs=[],this.isMute=!1,this.isNeedRewrite=!1,this.logSeparator="\n",this.startTime=(new Date).getTime(),Object.assign(this,e),this.log("",`\ud83d\udd14${this.name}, \u5f00\u59cb!`)}isNode(){return"undefined"!=typeof module&&!!module.exports}isQuanX(){return"undefined"!=typeof $task}isSurge(){return"undefined"!=typeof $httpClient&&"undefined"==typeof $loon}isLoon(){return"undefined"!=typeof $loon}toObj(t,e=null){try{return JSON.parse(t)}catch{return e}}toStr(t,e=null){try{return JSON.stringify(t)}catch{return e}}getjson(t,e){let s=e;const i=this.getdata(t);if(i)try{s=JSON.parse(this.getdata(t))}catch{}return s}setjson(t,e){try{return this.setdata(JSON.stringify(t),e)}catch{return!1}}getScript(t){return new Promise(e=>{this.get({url:t},(t,s,i)=>e(i))})}runScript(t,e){return new Promise(s=>{let i=this.getdata("@chavy_boxjs_userCfgs.httpapi");i=i?i.replace(/\n/g,"").trim():i;let r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=e&&e.timeout?e.timeout:r;const[o,h]=i.split("@"),a={url:`http://${h}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":o,Accept:"*/*"}};this.post(a,(t,e,i)=>s(i))}).catch(t=>this.logErr(t))}loaddata(){if(!this.isNode())return{};{this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e);if(!s&&!i)return{};{const i=s?t:e;try{return JSON.parse(this.fs.readFileSync(i))}catch(t){return{}}}}}writedata(){if(this.isNode()){this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e),r=JSON.stringify(this.data);s?this.fs.writeFileSync(t,r):i?this.fs.writeFileSync(e,r):this.fs.writeFileSync(t,r)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of i)if(r=Object(r)[t],void 0===r)return s;return r}lodash_set(t,e,s){return Object(t)!==t?t:(Array.isArray(e)||(e=e.toString().match(/[^.[\]]+/g)||[]),e.slice(0,-1).reduce((t,s,i)=>Object(t[s])===t[s]?t[s]:t[s]=Math.abs(e[i+1])>>0==+e[i+1]?[]:{},t)[e[e.length-1]]=s,t)}getdata(t){let e=this.getval(t);if(/^@/.test(t)){const[,s,i]=/^@(.*?)\.(.*?)$/.exec(t),r=s?this.getval(s):"";if(r)try{const t=JSON.parse(r);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,r]=/^@(.*?)\.(.*?)$/.exec(e),o=this.getval(i),h=i?"null"===o?null:o||"{}":"{}";try{const e=JSON.parse(h);this.lodash_set(e,r,t),s=this.setval(JSON.stringify(e),i)}catch(e){const o={};this.lodash_set(o,r,t),s=this.setval(JSON.stringify(o),i)}}else s=this.setval(t,e);return s}getval(t){return this.isSurge()||this.isLoon()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?(this.data=this.loaddata(),this.data[t]):this.data&&this.data[t]||null}setval(t,e){return this.isSurge()||this.isLoon()?$persistentStore.write(t,e):this.isQuanX()?$prefs.setValueForKey(t,e):this.isNode()?(this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0):this.data&&this.data[e]||null}initGotEnv(t){this.got=this.got?this.got:require("got"),this.cktough=this.cktough?this.cktough:require("tough-cookie"),this.ckjar=this.ckjar?this.ckjar:new this.cktough.CookieJar,t&&(t.headers=t.headers?t.headers:{},void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar))}get(t,e=(()=>{})){t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isLoon()?(this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)})):this.isQuanX()?(this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t))):this.isNode()&&(this.initGotEnv(t),this.got(t).on("redirect",(t,e)=>{try{const s=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();this.ckjar.setCookieSync(s,null),e.cookieJar=this.ckjar}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)}))}post(t,e=(()=>{})){if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isLoon())this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.post(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)});else if(this.isQuanX())t.method="POST",this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t));else if(this.isNode()){this.initGotEnv(t);const{url:s,...i}=t;this.got.post(s,i).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)})}}time(t){let e={"M+":(new Date).getMonth()+1,"d+":(new Date).getDate(),"H+":(new Date).getHours(),"m+":(new Date).getMinutes(),"s+":(new Date).getSeconds(),"q+":Math.floor(((new Date).getMonth()+3)/3),S:(new Date).getMilliseconds()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,((new Date).getFullYear()+"").substr(4-RegExp.$1.length)));for(let s in e)new RegExp("("+s+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?e[s]:("00"+e[s]).substr((""+e[s]).length)));return t}msg(e=t,s="",i="",r){const o=t=>{if(!t)return t;if("string"==typeof t)return this.isLoon()?t:this.isQuanX()?{"open-url":t}:this.isSurge()?{url:t}:void 0;if("object"==typeof t){if(this.isLoon()){let e=t.openUrl||t.url||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}if(this.isQuanX()){let e=t["open-url"]||t.url||t.openUrl,s=t["media-url"]||t.mediaUrl;return{"open-url":e,"media-url":s}}if(this.isSurge()){let e=t.url||t.openUrl||t["open-url"];return{url:e}}}};this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,o(r)):this.isQuanX()&&$notify(e,s,i,o(r)));let h=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];h.push(e),s&&h.push(s),i&&h.push(i),console.log(h.join("\n")),this.logs=this.logs.concat(h)}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,e){const s=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();s?this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack):this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t)}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${s} \u79d2`),this.log(),(this.isSurge()||this.isQuanX()||this.isLoon())&&$done(t)}}(t,e)} 277 | -------------------------------------------------------------------------------- /liwo/jdtqz.js: -------------------------------------------------------------------------------- 1 | //loon,qx 更新日期:2021.9.18 使用nobyda最新的cookie,支持双帐号 2 | 3 | const sams = new Env('京东特权活力值(小白成长分)'); 4 | let Val = sams.getdata('CookiesJD') 5 | let ck = JSON.parse(Val) 6 | let taskid = [] 7 | let taskname = [] 8 | let signinfo=[] 9 | let message="" 10 | let taskmsg = "" 11 | const option = {"open-url":"openapp.jdmobile://virtual?params=%7B%22category%22:%22jump%22,%22des%22:%22m%22,%22url%22:%22https%3A%2F%2Fbtfront.jd.com%2Frelease%2Fgrowth%2Findex.html%23%2Fhome%22%7D"} 12 | 13 | !(async () => { 14 | for (let i = 0; i < ck.length; i++) { 15 | cookie = ck[i].cookie; 16 | if (cookie) { 17 | console.log(`\n***************开始京东账号${i + 1}***************`) 18 | await Sign(); 19 | await gettaskid(); 20 | await doing() 21 | await getsigninfo() 22 | await doingsign() 23 | await userinfo() 24 | await show() 25 | await clean() 26 | //sams.done() 27 | } 28 | } 29 | })() 30 | .catch((e) => sams.logErr(e)) 31 | .finally(() => sams.done()) 32 | 33 | function userinfo() { 34 | return new Promise((resolve) => { 35 | var userparams = { 36 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/queryEcologicUserInfo", 37 | headers:{"Accept": "application/json, text/plain, */*", 38 | "Accept-Encoding": "gzip, deflate, br", 39 | "Accept-Language": "zh-cn", 40 | "Connection": "keep-alive", 41 | "Cookie": cookie, 42 | "Host": "ms.jr.jd.com", 43 | "Origin": "https://btfront.jd.com", 44 | "Referer": "https://btfront.jd.com/release/growth/index.html", 45 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"}, 46 | body:"reqData={}" 47 | } 48 | sams.post(userparams, 49 | (error,reponse,data) => { 50 | try { 51 | data = JSON.parse(data); 52 | //sams.log(JSON.stringify(data)) 53 | if (data.resultCode == 0) { 54 | var list = data.resultData.ecologicUserInfo 55 | taskmsg += `👤『用 户』${list.pin}\n🎖『成长分』${list.ecologicScore}\n🔰『等 级』Lv${list.scoreLevel}\n` 56 | sams.log("获取用户信息成功:"+usermsg) 57 | } 58 | else{taskmsg += null} 59 | } catch (e) { 60 | sams.log(e, resp); 61 | } finally { 62 | resolve(data); 63 | } 64 | }) 65 | }) 66 | } 67 | 68 | function gettaskid() { 69 | return new Promise((resolve) => { 70 | var nowtime = Date.now() 71 | var taskparams = { 72 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/taskStatistics?_="+nowtime+"&reqData=%7B%22req%22:%7B%22pageSize%22:50,%22channelId%22:3%7D%7D", 73 | headers:{"Accept": "application/json, text/plain, */*", 74 | "Accept-Encoding": "gzip, deflate, br", 75 | "Accept-Language": "zh-cn", 76 | "Connection": "keep-alive", 77 | "Cookie": cookie, 78 | "Host": "ms.jr.jd.com", 79 | "Origin": "https://btfront.jd.com", 80 | "Referer": "https://btfront.jd.com/release/growth/index.html", 81 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 82 | } 83 | sams.get(taskparams, 84 | (error,reponse,data) => { 85 | try { 86 | data = JSON.parse(data); 87 | sams.log(JSON.stringify(data)) 88 | sams.log("正在获取taskID") 89 | if (data.resultCode == 0) { 90 | var list = data.resultData.taskList 91 | for (var i in list) { 92 | taskid.push(list[i].taskId) 93 | taskname.push(list[i].subTitle) 94 | } 95 | sams.log("获取taskID和taskName成功:"+taskid+" \n "+taskname) 96 | } 97 | else{taskid += null} 98 | } catch (e) { 99 | sams.log(e, resp); 100 | } finally { 101 | resolve(data); 102 | } 103 | }) 104 | }) 105 | } 106 | 107 | function dotaskid(id) { 108 | return new Promise((resolve) => { 109 | var dotaskparams = { 110 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/doSpecifyClick?reqData=%7B%22req%22:%7B%22taskId%22:"+id+"%7D%7D", 111 | headers:{"Accept": "application/json, text/plain, */*", 112 | "Accept-Encoding": "gzip, deflate, br", 113 | "Accept-Language": "zh-cn", 114 | "Connection": "keep-alive", 115 | "Cookie": cookie, 116 | "Host": "ms.jr.jd.com", 117 | "Origin": "https://btfront.jd.com", 118 | "Referer": "https://btfront.jd.com/release/growth/index.html", 119 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 120 | } 121 | sams.get(dotaskparams, 122 | (error,reponse,data) => { 123 | try{ 124 | data = JSON.parse(data) 125 | } 126 | catch(e){ 127 | sams.log(e,response) 128 | } 129 | finally{ 130 | resolve(data) 131 | } 132 | }) 133 | }) 134 | } 135 | 136 | function getsigninfo(){ 137 | return new Promise((resolve)=>{ 138 | var nowtime = Date.now() 139 | var params = { 140 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/queryMailboxList?_="+nowtime+"&reqData=%7B%22req%22:%7B%22msgGroup%22:2,%22readStatus%22:0,%22bizSource%22:%222%22,%22pageSize%22:4%7D%7D", 141 | headers:{"Accept": "application/json, text/plain, */*", 142 | "Accept-Encoding": "gzip, deflate, br", 143 | "Accept-Language": "zh-cn", 144 | "Connection": "keep-alive", 145 | "Cookie": cookie, 146 | "Host": "ms.jr.jd.com", 147 | "Origin": "https://btfront.jd.com", 148 | "Referer": "https://btfront.jd.com/release/growth/index.html", 149 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 150 | } 151 | sams.get(params,(error,response,data)=>{ 152 | try{ 153 | data = JSON.parse(data) 154 | var d = data.resultData.list 155 | var i 156 | for (i=0;i { 180 | var params = { 181 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/readMailbox?reqData=%7B%22req%22:%7B%22uuid%22:%22"+uuid+"%22,%22bizGroup%22:"+bizGroup+",%22bizType%22:"+bizType+"%7D%7D", 182 | headers:{"Accept": "application/json, text/plain, */*", 183 | "Accept-Encoding": "gzip, deflate, br", 184 | "Accept-Language": "zh-cn", 185 | "Connection": "keep-alive", 186 | "Cookie": cookie, 187 | "Host": "ms.jr.jd.com", 188 | "Origin": "https://btfront.jd.com", 189 | "Referer": "https://btfront.jd.com/release/growth/index.html", 190 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 191 | } 192 | sams.get(params, 193 | (error,reponse,data) => { 194 | try{ 195 | data = JSON.parse(data) 196 | } 197 | catch(e){ 198 | sams.log(e,response) 199 | } 200 | finally{ 201 | resolve(data) 202 | } 203 | }) 204 | }) 205 | } 206 | 207 | async function doingsign(){ 208 | await getsigninfo() 209 | if (signinfo.length !== 0){ 210 | sams.log("正在领取任务") 211 | for (var i in signinfo){ 212 | let d = await dosigninfo(signinfo[i].uuid,signinfo[i].bizGroup,signinfo[i].bizType) 213 | if (d.resultCode == 0){ 214 | let subTitle = `❤领取${signinfo[i].msgName}活力值结果${d.resultData.info}\n` 215 | taskmsg += subTitle 216 | sams.log(subTitle) 217 | } 218 | } 219 | } 220 | else return 221 | } 222 | 223 | async function doing(){ 224 | if (taskid){ 225 | sams.log("正在逐个处理任务") 226 | for (var i in taskid){ 227 | let d = await dotaskid(taskid[i]) 228 | if (d.resultCode == 0) { 229 | let subTitle = `❤浏览${taskname[i]}${d.resultData.info}\n` 230 | taskmsg += subTitle 231 | sams.log(subTitle) 232 | } 233 | } 234 | } 235 | else return 236 | } 237 | 238 | 239 | function Sign() { 240 | return new Promise((resolve) => { 241 | const signparams ={ 242 | url:'https://ms.jr.jd.com/gw/generic/bt/h5/m/doSign?reqData=%7B%7D', 243 | headers:{"Accept": "application/json, text/plain, */*", 244 | "Accept-Encoding": "gzip, deflate, br", 245 | "Accept-Language": "zh-cn", 246 | "Connection": "keep-alive", 247 | "Cookie": cookie, 248 | "Host": "ms.jr.jd.com", 249 | "Origin": "https://btfront.jd.com", 250 | "Referer": "https://btfront.jd.com/release/growth/index.html", 251 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"}, 252 | } 253 | sams.get(signparams, 254 | (error,reponse,data) => { 255 | try { 256 | data = JSON.parse(data); 257 | if (data.resultCode == 0 && data.resultMsg == '操作成功') { 258 | subTitle = `❤特权活力值签到成功\n` 259 | message += subTitle 260 | sams.log(JSON.stringify(data)) 261 | } else if (data.resultCode == 3) { 262 | subTitle = `💔签到失败,请重新获取cookie\n` 263 | message += subTitle 264 | sams.log(JSON.stringify(data)) 265 | } else { 266 | subTitle = `未知` 267 | detail = `❗ ${data.resultrMsg}\n` 268 | message += subTitle+detail 269 | sams.log(JSON.stringify(data)) 270 | } 271 | 272 | } catch (e) { 273 | sams.log(e, resp); 274 | } finally { 275 | resolve(data); 276 | } 277 | }) 278 | }) 279 | } 280 | 281 | function clean(){ 282 | taskid = [] 283 | taskname = [] 284 | signinfo=[] 285 | message="" 286 | taskmsg = "" 287 | } 288 | 289 | function show(){ 290 | let title = "京东特权活力值签到并领取" 291 | sams.msg(title,message,taskmsg,option) 292 | } 293 | 294 | 295 | //ignore ignore 296 | function Env(t,e){class s{constructor(t){this.env=t}send(t,e="GET"){t="string"==typeof t?{url:t}:t;let s=this.get;return"POST"===e&&(s=this.post),new Promise((e,i)=>{s.call(this,t,(t,s,r)=>{t?i(t):e(s)})})}get(t){return this.send.call(this.env,t)}post(t){return this.send.call(this.env,t,"POST")}}return new class{constructor(t,e){this.name=t,this.http=new s(this),this.data=null,this.dataFile="box.dat",this.logs=[],this.isMute=!1,this.isNeedRewrite=!1,this.logSeparator="\n",this.startTime=(new Date).getTime(),Object.assign(this,e),this.log("",`\ud83d\udd14${this.name}, \u5f00\u59cb!`)}isNode(){return"undefined"!=typeof module&&!!module.exports}isQuanX(){return"undefined"!=typeof $task}isSurge(){return"undefined"!=typeof $httpClient&&"undefined"==typeof $loon}isLoon(){return"undefined"!=typeof $loon}toObj(t,e=null){try{return JSON.parse(t)}catch{return e}}toStr(t,e=null){try{return JSON.stringify(t)}catch{return e}}getjson(t,e){let s=e;const i=this.getdata(t);if(i)try{s=JSON.parse(this.getdata(t))}catch{}return s}setjson(t,e){try{return this.setdata(JSON.stringify(t),e)}catch{return!1}}getScript(t){return new Promise(e=>{this.get({url:t},(t,s,i)=>e(i))})}runScript(t,e){return new Promise(s=>{let i=this.getdata("@chavy_boxjs_userCfgs.httpapi");i=i?i.replace(/\n/g,"").trim():i;let r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=e&&e.timeout?e.timeout:r;const[o,h]=i.split("@"),a={url:`http://${h}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":o,Accept:"*/*"}};this.post(a,(t,e,i)=>s(i))}).catch(t=>this.logErr(t))}loaddata(){if(!this.isNode())return{};{this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e);if(!s&&!i)return{};{const i=s?t:e;try{return JSON.parse(this.fs.readFileSync(i))}catch(t){return{}}}}}writedata(){if(this.isNode()){this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e),r=JSON.stringify(this.data);s?this.fs.writeFileSync(t,r):i?this.fs.writeFileSync(e,r):this.fs.writeFileSync(t,r)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of i)if(r=Object(r)[t],void 0===r)return s;return r}lodash_set(t,e,s){return Object(t)!==t?t:(Array.isArray(e)||(e=e.toString().match(/[^.[\]]+/g)||[]),e.slice(0,-1).reduce((t,s,i)=>Object(t[s])===t[s]?t[s]:t[s]=Math.abs(e[i+1])>>0==+e[i+1]?[]:{},t)[e[e.length-1]]=s,t)}getdata(t){let e=this.getval(t);if(/^@/.test(t)){const[,s,i]=/^@(.*?)\.(.*?)$/.exec(t),r=s?this.getval(s):"";if(r)try{const t=JSON.parse(r);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,r]=/^@(.*?)\.(.*?)$/.exec(e),o=this.getval(i),h=i?"null"===o?null:o||"{}":"{}";try{const e=JSON.parse(h);this.lodash_set(e,r,t),s=this.setval(JSON.stringify(e),i)}catch(e){const o={};this.lodash_set(o,r,t),s=this.setval(JSON.stringify(o),i)}}else s=this.setval(t,e);return s}getval(t){return this.isSurge()||this.isLoon()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?(this.data=this.loaddata(),this.data[t]):this.data&&this.data[t]||null}setval(t,e){return this.isSurge()||this.isLoon()?$persistentStore.write(t,e):this.isQuanX()?$prefs.setValueForKey(t,e):this.isNode()?(this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0):this.data&&this.data[e]||null}initGotEnv(t){this.got=this.got?this.got:require("got"),this.cktough=this.cktough?this.cktough:require("tough-cookie"),this.ckjar=this.ckjar?this.ckjar:new this.cktough.CookieJar,t&&(t.headers=t.headers?t.headers:{},void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar))}get(t,e=(()=>{})){t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isLoon()?(this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)})):this.isQuanX()?(this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t))):this.isNode()&&(this.initGotEnv(t),this.got(t).on("redirect",(t,e)=>{try{if(t.headers["set-cookie"]){const s=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();s&&this.ckjar.setCookieSync(s,null),e.cookieJar=this.ckjar}}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)}))}post(t,e=(()=>{})){if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isLoon())this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.post(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)});else if(this.isQuanX())t.method="POST",this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t));else if(this.isNode()){this.initGotEnv(t);const{url:s,...i}=t;this.got.post(s,i).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)})}}time(t){let e={"M+":(new Date).getMonth()+1,"d+":(new Date).getDate(),"H+":(new Date).getHours(),"m+":(new Date).getMinutes(),"s+":(new Date).getSeconds(),"q+":Math.floor(((new Date).getMonth()+3)/3),S:(new Date).getMilliseconds()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,((new Date).getFullYear()+"").substr(4-RegExp.$1.length)));for(let s in e)new RegExp("("+s+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?e[s]:("00"+e[s]).substr((""+e[s]).length)));return t}msg(e=t,s="",i="",r){const o=t=>{if(!t)return t;if("string"==typeof t)return this.isLoon()?t:this.isQuanX()?{"open-url":t}:this.isSurge()?{url:t}:void 0;if("object"==typeof t){if(this.isLoon()){let e=t.openUrl||t.url||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}if(this.isQuanX()){let e=t["open-url"]||t.url||t.openUrl,s=t["media-url"]||t.mediaUrl;return{"open-url":e,"media-url":s}}if(this.isSurge()){let e=t.url||t.openUrl||t["open-url"];return{url:e}}}};if(this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,o(r)):this.isQuanX()&&$notify(e,s,i,o(r))),!this.isMuteLog){let t=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];t.push(e),s&&t.push(s),i&&t.push(i),console.log(t.join("\n")),this.logs=this.logs.concat(t)}}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,e){const s=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();s?this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack):this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t)}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${s} \u79d2`),this.log(),(this.isSurge()||this.isQuanX()||this.isLoon())&&$done(t)}}(t,e)} 297 | -------------------------------------------------------------------------------- /liwo/ql_tqz.js: -------------------------------------------------------------------------------- 1 | const sams = new Env('京东特权活力值(小白成长分)'); 2 | const notify = sams.isNode() ? require('./sendNotify') : ''; 3 | //Node.js用户请在jdCookie.js处填写京东ck; 4 | const jdCookieNode = sams.isNode() ? require('./jdCookie.js') : ''; 5 | //IOS等用户直接用NobyDa的jd cookie 6 | let cookiesArr = [], cookie = ''; 7 | if (sams.isNode()) { 8 | Object.keys(jdCookieNode).forEach((item) => { 9 | cookiesArr.push(jdCookieNode[item]) 10 | }) 11 | if (process.env.JD_DEBUG && process.env.JD_DEBUG === 'false') console.log = () => { }; 12 | } else { 13 | let cookiesData = sams.getdata('CookiesJD') || "[]"; 14 | cookiesData = JSON.parse(cookiesData); 15 | cookiesArr = cookiesData.map(item => item.cookie); 16 | cookiesArr.reverse(); 17 | cookiesArr.push(...[sams.getdata('CookieJD2'), sams.getdata('CookieJD')]); 18 | cookiesArr.reverse(); 19 | cookiesArr = cookiesArr.filter(item => !!item); 20 | } 21 | 22 | let taskid = [] 23 | let taskname = [] 24 | let signinfo=[] 25 | let message="" 26 | let taskmsg = "" 27 | const option = {"open-url":"openapp.jdmobile://virtual?params=%7B%22category%22:%22jump%22,%22des%22:%22m%22,%22url%22:%22https%3A%2F%2Fbtfront.jd.com%2Frelease%2Fgrowth%2Findex.html%23%2Fhome%22%7D"} 28 | 29 | !(async () => { 30 | for (let i = 0; i < cookiesArr.length; i++) { 31 | cookie = cookiesArr[i]; 32 | if (cookie) { 33 | console.log(`\n***************开始京东账号${i + 1}***************\n入口:https://btfront.jd.com/release/growth/index.html#/home \n`) 34 | await Sign(); 35 | await gettaskid(); 36 | await doing() 37 | await getsigninfo() 38 | await doingsign() 39 | await userinfo() 40 | //await show() 41 | await clean() 42 | //sams.done() 43 | } 44 | } 45 | })() 46 | .catch((e) => sams.logErr(e)) 47 | .finally(() => sams.done()) 48 | 49 | function userinfo() { 50 | return new Promise((resolve) => { 51 | var userparams = { 52 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/queryEcologicUserInfo", 53 | headers:{"Accept": "application/json, text/plain, */*", 54 | "Accept-Encoding": "gzip, deflate, br", 55 | "Accept-Language": "zh-cn", 56 | "Connection": "keep-alive", 57 | "Cookie": cookie, 58 | "Host": "ms.jr.jd.com", 59 | "Origin": "https://btfront.jd.com", 60 | "Referer": "https://btfront.jd.com/release/growth/index.html", 61 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"}, 62 | body:"reqData={}" 63 | } 64 | sams.post(userparams, 65 | (error,reponse,data) => { 66 | try { 67 | data = JSON.parse(data); 68 | //sams.log(JSON.stringify(data)) 69 | if (data.resultCode == 0) { 70 | var list = data.resultData.ecologicUserInfo 71 | taskmsg += `👤『用 户』${list.pin}\n🎖『成长分』${list.ecologicScore}\n🔰『等 级』Lv${list.scoreLevel}\n` 72 | sams.log("获取用户信息成功:"+taskmsg) 73 | } 74 | else{taskmsg += null} 75 | } catch (e) { 76 | sams.logErr(e); 77 | } finally { 78 | resolve(data); 79 | } 80 | }) 81 | }) 82 | } 83 | 84 | function gettaskid() { 85 | return new Promise((resolve) => { 86 | var nowtime = Date.now() 87 | var taskparams = { 88 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/taskStatistics?_="+nowtime+"&reqData=%7B%22req%22:%7B%22pageSize%22:50,%22channelId%22:3%7D%7D", 89 | headers:{"Accept": "application/json, text/plain, */*", 90 | "Accept-Encoding": "gzip, deflate, br", 91 | "Accept-Language": "zh-cn", 92 | "Connection": "keep-alive", 93 | "Cookie": cookie, 94 | "Host": "ms.jr.jd.com", 95 | "Origin": "https://btfront.jd.com", 96 | "Referer": "https://btfront.jd.com/release/growth/index.html", 97 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 98 | } 99 | sams.get(taskparams, 100 | (error,reponse,data) => { 101 | try { 102 | data = JSON.parse(data); 103 | sams.log(JSON.stringify(data)) 104 | sams.log("正在获取taskID") 105 | if (data.resultCode == 0) { 106 | var list = data.resultData.taskList 107 | for (var i in list) { 108 | taskid.push(list[i].taskId) 109 | taskname.push(list[i].subTitle) 110 | } 111 | sams.log("获取taskID和taskName成功:"+taskid+" \n "+taskname) 112 | } 113 | else{taskid += null} 114 | } catch (e) { 115 | sams.logErr(e); 116 | } finally { 117 | resolve(data); 118 | } 119 | }) 120 | }) 121 | } 122 | 123 | function dotaskid(id) { 124 | return new Promise((resolve) => { 125 | var dotaskparams = { 126 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/doSpecifyClick?reqData=%7B%22req%22:%7B%22taskId%22:"+id+"%7D%7D", 127 | headers:{"Accept": "application/json, text/plain, */*", 128 | "Accept-Encoding": "gzip, deflate, br", 129 | "Accept-Language": "zh-cn", 130 | "Connection": "keep-alive", 131 | "Cookie": cookie, 132 | "Host": "ms.jr.jd.com", 133 | "Origin": "https://btfront.jd.com", 134 | "Referer": "https://btfront.jd.com/release/growth/index.html", 135 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 136 | } 137 | sams.get(dotaskparams, 138 | (error,reponse,data) => { 139 | try{ 140 | data = JSON.parse(data) 141 | } 142 | catch(e){ 143 | sams.log(e,response) 144 | } 145 | finally{ 146 | resolve(data) 147 | } 148 | }) 149 | }) 150 | } 151 | 152 | function getsigninfo(){ 153 | return new Promise((resolve)=>{ 154 | var nowtime = Date.now() 155 | var params = { 156 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/queryMailboxList?_="+nowtime+"&reqData=%7B%22req%22:%7B%22msgGroup%22:2,%22readStatus%22:0,%22bizSource%22:%222%22,%22pageSize%22:4%7D%7D", 157 | headers:{"Accept": "application/json, text/plain, */*", 158 | "Accept-Encoding": "gzip, deflate, br", 159 | "Accept-Language": "zh-cn", 160 | "Connection": "keep-alive", 161 | "Cookie": cookie, 162 | "Host": "ms.jr.jd.com", 163 | "Origin": "https://btfront.jd.com", 164 | "Referer": "https://btfront.jd.com/release/growth/index.html", 165 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 166 | } 167 | sams.get(params,(error,response,data)=>{ 168 | try{ 169 | data = JSON.parse(data) 170 | var d = data.resultData.list 171 | var i 172 | for (i=0;i { 196 | var params = { 197 | url:"https://ms.jr.jd.com/gw/generic/bt/h5/m/readMailbox?reqData=%7B%22req%22:%7B%22uuid%22:%22"+uuid+"%22,%22bizGroup%22:"+bizGroup+",%22bizType%22:"+bizType+"%7D%7D", 198 | headers:{"Accept": "application/json, text/plain, */*", 199 | "Accept-Encoding": "gzip, deflate, br", 200 | "Accept-Language": "zh-cn", 201 | "Connection": "keep-alive", 202 | "Cookie": cookie, 203 | "Host": "ms.jr.jd.com", 204 | "Origin": "https://btfront.jd.com", 205 | "Referer": "https://btfront.jd.com/release/growth/index.html", 206 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"} 207 | } 208 | sams.get(params, 209 | (error,reponse,data) => { 210 | try{ 211 | data = JSON.parse(data) 212 | } 213 | catch(e){ 214 | sams.log(e,response) 215 | } 216 | finally{ 217 | resolve(data) 218 | } 219 | }) 220 | }) 221 | } 222 | 223 | async function doingsign(){ 224 | await getsigninfo() 225 | if (signinfo.length !== 0){ 226 | sams.log("正在领取任务") 227 | for (var i in signinfo){ 228 | let d = await dosigninfo(signinfo[i].uuid,signinfo[i].bizGroup,signinfo[i].bizType) 229 | if (d.resultCode == 0){ 230 | let subTitle = `❤领取${signinfo[i].msgName}活力值结果${d.resultData.info}\n` 231 | taskmsg += subTitle 232 | sams.log(subTitle) 233 | } 234 | } 235 | } 236 | else return 237 | } 238 | 239 | async function doing(){ 240 | if (taskid){ 241 | sams.log("正在逐个处理任务") 242 | for (var i in taskid){ 243 | let d = await dotaskid(taskid[i]) 244 | if (d.resultCode == 0) { 245 | let subTitle = `❤浏览${taskname[i]}${d.resultData.info}\n` 246 | taskmsg += subTitle 247 | sams.log(subTitle) 248 | } 249 | } 250 | } 251 | else return 252 | } 253 | 254 | 255 | function Sign() { 256 | return new Promise((resolve) => { 257 | const signparams ={ 258 | url:'https://ms.jr.jd.com/gw/generic/bt/h5/m/doSign?reqData=%7B%7D', 259 | headers:{"Accept": "application/json, text/plain, */*", 260 | "Accept-Encoding": "gzip, deflate, br", 261 | "Accept-Language": "zh-cn", 262 | "Connection": "keep-alive", 263 | "Cookie": cookie, 264 | "Host": "ms.jr.jd.com", 265 | "Origin": "https://btfront.jd.com", 266 | "Referer": "https://btfront.jd.com/release/growth/index.html", 267 | "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1"}, 268 | } 269 | sams.get(signparams, 270 | (error,reponse,data) => { 271 | try { 272 | data = JSON.parse(data); 273 | if (data.resultCode == 0 && data.resultMsg == '操作成功') { 274 | subTitle = `❤特权活力值签到成功\n` 275 | message += subTitle 276 | sams.log(JSON.stringify(data)) 277 | } else if (data.resultCode == 3) { 278 | subTitle = `💔签到失败,请重新获取cookie\n` 279 | message += subTitle 280 | sams.log(JSON.stringify(data)) 281 | } else { 282 | subTitle = `未知` 283 | detail = `❗ ${data.resultrMsg}\n` 284 | message += subTitle+detail 285 | sams.log(JSON.stringify(data)) 286 | } 287 | 288 | } catch (e) { 289 | sams.logErr(e); 290 | } finally { 291 | resolve(data); 292 | } 293 | }) 294 | }) 295 | } 296 | 297 | function clean(){ 298 | taskid = [] 299 | taskname = [] 300 | signinfo=[] 301 | message="" 302 | taskmsg = "" 303 | } 304 | 305 | function show(){ 306 | let title = "京东特权活力值签到并领取" 307 | notify.sendNotify(title,message,taskmsg,option) 308 | } 309 | //ignore 310 | function Env(t,e){"undefined"!=typeof process&&JSON.stringify(process.env).indexOf("GITHUB")>-1&&process.exit(0);class s{constructor(t){this.env=t}send(t,e="GET"){t="string"==typeof t?{url:t}:t;let s=this.get;return"POST"===e&&(s=this.post),new Promise((e,i)=>{s.call(this,t,(t,s,r)=>{t?i(t):e(s)})})}get(t){return this.send.call(this.env,t)}post(t){return this.send.call(this.env,t,"POST")}}return new class{constructor(t,e){this.name=t,this.http=new s(this),this.data=null,this.dataFile="box.dat",this.logs=[],this.isMute=!1,this.isNeedRewrite=!1,this.logSeparator="\n",this.startTime=(new Date).getTime(),Object.assign(this,e),this.log("",`🔔${this.name}, 开始!`)}isNode(){return"undefined"!=typeof module&&!!module.exports}isQuanX(){return"undefined"!=typeof $task}isSurge(){return"undefined"!=typeof $httpClient&&"undefined"==typeof $loon}isLoon(){return"undefined"!=typeof $loon}toObj(t,e=null){try{return JSON.parse(t)}catch{return e}}toStr(t,e=null){try{return JSON.stringify(t)}catch{return e}}getjson(t,e){let s=e;const i=this.getdata(t);if(i)try{s=JSON.parse(this.getdata(t))}catch{}return s}setjson(t,e){try{return this.setdata(JSON.stringify(t),e)}catch{return!1}}getScript(t){return new Promise(e=>{this.get({url:t},(t,s,i)=>e(i))})}runScript(t,e){return new Promise(s=>{let i=this.getdata("@chavy_boxjs_userCfgs.httpapi");i=i?i.replace(/\n/g,"").trim():i;let r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=e&&e.timeout?e.timeout:r;const[o,h]=i.split("@"),n={url:`http://${h}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":o,Accept:"*/*"}};this.post(n,(t,e,i)=>s(i))}).catch(t=>this.logErr(t))}loaddata(){if(!this.isNode())return{};{this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e);if(!s&&!i)return{};{const i=s?t:e;try{return JSON.parse(this.fs.readFileSync(i))}catch(t){return{}}}}}writedata(){if(this.isNode()){this.fs=this.fs?this.fs:require("fs"),this.path=this.path?this.path:require("path");const t=this.path.resolve(this.dataFile),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e),r=JSON.stringify(this.data);s?this.fs.writeFileSync(t,r):i?this.fs.writeFileSync(e,r):this.fs.writeFileSync(t,r)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of i)if(r=Object(r)[t],void 0===r)return s;return r}lodash_set(t,e,s){return Object(t)!==t?t:(Array.isArray(e)||(e=e.toString().match(/[^.[\]]+/g)||[]),e.slice(0,-1).reduce((t,s,i)=>Object(t[s])===t[s]?t[s]:t[s]=Math.abs(e[i+1])>>0==+e[i+1]?[]:{},t)[e[e.length-1]]=s,t)}getdata(t){let e=this.getval(t);if(/^@/.test(t)){const[,s,i]=/^@(.*?)\.(.*?)$/.exec(t),r=s?this.getval(s):"";if(r)try{const t=JSON.parse(r);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,r]=/^@(.*?)\.(.*?)$/.exec(e),o=this.getval(i),h=i?"null"===o?null:o||"{}":"{}";try{const e=JSON.parse(h);this.lodash_set(e,r,t),s=this.setval(JSON.stringify(e),i)}catch(e){const o={};this.lodash_set(o,r,t),s=this.setval(JSON.stringify(o),i)}}else s=this.setval(t,e);return s}getval(t){return this.isSurge()||this.isLoon()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?(this.data=this.loaddata(),this.data[t]):this.data&&this.data[t]||null}setval(t,e){return this.isSurge()||this.isLoon()?$persistentStore.write(t,e):this.isQuanX()?$prefs.setValueForKey(t,e):this.isNode()?(this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0):this.data&&this.data[e]||null}initGotEnv(t){this.got=this.got?this.got:require("got"),this.cktough=this.cktough?this.cktough:require("tough-cookie"),this.ckjar=this.ckjar?this.ckjar:new this.cktough.CookieJar,t&&(t.headers=t.headers?t.headers:{},void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar))}get(t,e=(()=>{})){t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isLoon()?(this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)})):this.isQuanX()?(this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t))):this.isNode()&&(this.initGotEnv(t),this.got(t).on("redirect",(t,e)=>{try{if(t.headers["set-cookie"]){const s=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();s&&this.ckjar.setCookieSync(s,null),e.cookieJar=this.ckjar}}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)}))}post(t,e=(()=>{})){if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isLoon())this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.post(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)});else if(this.isQuanX())t.method="POST",this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t));else if(this.isNode()){this.initGotEnv(t);const{url:s,...i}=t;this.got.post(s,i).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)})}}time(t,e=null){const s=e?new Date(e):new Date;let i={"M+":s.getMonth()+1,"d+":s.getDate(),"H+":s.getHours(),"m+":s.getMinutes(),"s+":s.getSeconds(),"q+":Math.floor((s.getMonth()+3)/3),S:s.getMilliseconds()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,(s.getFullYear()+"").substr(4-RegExp.$1.length)));for(let e in i)new RegExp("("+e+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?i[e]:("00"+i[e]).substr((""+i[e]).length)));return t}msg(e=t,s="",i="",r){const o=t=>{if(!t)return t;if("string"==typeof t)return this.isLoon()?t:this.isQuanX()?{"open-url":t}:this.isSurge()?{url:t}:void 0;if("object"==typeof t){if(this.isLoon()){let e=t.openUrl||t.url||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}if(this.isQuanX()){let e=t["open-url"]||t.url||t.openUrl,s=t["media-url"]||t.mediaUrl;return{"open-url":e,"media-url":s}}if(this.isSurge()){let e=t.url||t.openUrl||t["open-url"];return{url:e}}}};if(this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,o(r)):this.isQuanX()&&$notify(e,s,i,o(r))),!this.isMuteLog){let t=["","==============📣系统通知📣=============="];t.push(e),s&&t.push(s),i&&t.push(i),console.log(t.join("\n")),this.logs=this.logs.concat(t)}}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,e){const s=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();s?this.log("",`❗️${this.name}, 错误!`,t.stack):this.log("",`❗️${this.name}, 错误!`,t)}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;this.log("",`🔔${this.name}, 结束! 🕛 ${s} 秒`),this.log(),(this.isSurge()||this.isQuanX()||this.isLoon())&&$done(t)}}(t,e)} 311 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------