add module-alias , add image message
This commit is contained in:
parent
4c56ff4300
commit
e1ad83566b
@ -6,7 +6,8 @@
|
|||||||
{"file": "20180702-1.sql", "version": 4},
|
{"file": "20180702-1.sql", "version": 4},
|
||||||
{"file": "20180706-1.sql", "version": 5},
|
{"file": "20180706-1.sql", "version": 5},
|
||||||
{"file": "20180710-1.sql", "version": 6},
|
{"file": "20180710-1.sql", "version": 6},
|
||||||
{"file": "20180711-1.sql", "version": 7}
|
{"file": "20180711-1.sql", "version": 7},
|
||||||
|
{"file": "20180712-1.sql", "version": 8}
|
||||||
],
|
],
|
||||||
"test": []
|
"test": []
|
||||||
}
|
}
|
@ -1,6 +1,7 @@
|
|||||||
/* eslint-disable no-unused-expressions */
|
/* eslint-disable no-unused-expressions */
|
||||||
|
require('module-alias/register')
|
||||||
const pg = require('pg')
|
const pg = require('pg')
|
||||||
const config = require('../config')
|
const config = require('@config/index')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
|
|
||||||
|
1
index.js
1
index.js
@ -1,3 +1,4 @@
|
|||||||
|
require('module-alias/register')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
try {
|
try {
|
||||||
|
11
jsconfig.json
Normal file
11
jsconfig.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"@libs/*": ["libs/*"],
|
||||||
|
"@config/*": ["config/*"],
|
||||||
|
"@route/*": ["route/*"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,5 @@
|
|||||||
const axios = require('axios')
|
const axios = require('axios')
|
||||||
const config = require('../../config')
|
const config = require('@config/index')
|
||||||
const qs = require('querystring')
|
const qs = require('querystring')
|
||||||
|
|
||||||
const queryYoutubeName = async (id = '') => {
|
const queryYoutubeName = async (id = '') => {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
const axios = require('axios')
|
const axios = require('axios')
|
||||||
const config = require('../../config')
|
const config = require('@config/index')
|
||||||
|
|
||||||
const client = axios.create({
|
const client = axios.create({
|
||||||
baseURL: 'https://api.line.me/v2/bot',
|
baseURL: 'https://api.line.me/v2/bot',
|
||||||
@ -44,6 +44,16 @@ const textObject = (txt = '') => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const imageObject = (txt = '') => {
|
||||||
|
if (typeof txt !== 'string' || txt.trim().length === 0) return null
|
||||||
|
txt = txt.split(';')
|
||||||
|
return {
|
||||||
|
type: 'image',
|
||||||
|
originalContentUrl: txt[0],
|
||||||
|
previewImageUrl: txt[1]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* send reply message
|
* send reply message
|
||||||
* @param {string} replyToken line message reply token
|
* @param {string} replyToken line message reply token
|
||||||
@ -59,6 +69,7 @@ const replyMessage = async (replyToken, message) => {
|
|||||||
if (m !== null && m.length > 1) {
|
if (m !== null && m.length > 1) {
|
||||||
switch (m[1]) {
|
switch (m[1]) {
|
||||||
case 'image':
|
case 'image':
|
||||||
|
obj = imageObject(message)
|
||||||
break
|
break
|
||||||
case 'text':
|
case 'text':
|
||||||
obj = textObject(message)
|
obj = textObject(message)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
const axios = require('axios')
|
const axios = require('axios')
|
||||||
const config = require('../../config')
|
const config = require('@config/index')
|
||||||
const client = axios.create({
|
const client = axios.create({
|
||||||
baseURL: 'https://api.twitch.tv/helix',
|
baseURL: 'https://api.twitch.tv/helix',
|
||||||
headers: {
|
headers: {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
const pg = require('pg')
|
const pg = require('pg')
|
||||||
const config = require('../config')
|
const config = require('@config/index')
|
||||||
|
|
||||||
const pool = new pg.Pool({
|
const pool = new pg.Pool({
|
||||||
user: config.database.user,
|
user: config.database.user,
|
||||||
@ -10,4 +10,4 @@ const pool = new pg.Pool({
|
|||||||
database: config.database.dbname
|
database: config.database.dbname
|
||||||
})
|
})
|
||||||
|
|
||||||
module.exports = pool
|
module.exports = pool
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
const api = require('../../../api-action')
|
const api = require('@libs/api-action')
|
||||||
const DB = require('../../../database')
|
const DB = require('@libs/database')
|
||||||
const axios = require('axios')
|
const axios = require('axios')
|
||||||
|
|
||||||
async function run (fn = null, txt, source) {
|
async function run (fn = null, txt, source) {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
const DB = require('../../database')
|
const DB = require('@libs/database')
|
||||||
const actions = require('./actions')
|
const actions = require('./actions')
|
||||||
|
|
||||||
const parseCMD = async (text = '', source = {}) => {
|
const parseCMD = async (text = '', source = {}) => {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
const commands = require('./commands')
|
const commands = require('./commands')
|
||||||
const api = require('../api-action')
|
const api = require('@libs/api-action')
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* parse text message object
|
* parse text message object
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
const config = require('../../config')
|
const config = require('@config/index')
|
||||||
const rawBody = require('raw-body')
|
const rawBody = require('raw-body')
|
||||||
const crypto = require('crypto')
|
const crypto = require('crypto')
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
"koa-body": "^4.0.3",
|
"koa-body": "^4.0.3",
|
||||||
"koa-logger": "^3.2.0",
|
"koa-logger": "^3.2.0",
|
||||||
"koa-router": "^7.4.0",
|
"koa-router": "^7.4.0",
|
||||||
|
"module-alias": "^2.1.0",
|
||||||
"pg": "^7.4.3",
|
"pg": "^7.4.3",
|
||||||
"raw-body": "^2.3.3",
|
"raw-body": "^2.3.3",
|
||||||
"request": "^2.87.0",
|
"request": "^2.87.0",
|
||||||
@ -28,5 +29,10 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"standard": "^11.0.1"
|
"standard": "^11.0.1"
|
||||||
|
},
|
||||||
|
"_moduleAliases": {
|
||||||
|
"@libs": "libs",
|
||||||
|
"@config": "config",
|
||||||
|
"@route": "route"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,9 +4,9 @@ const r = new Router()
|
|||||||
// const koaBody = require('koa-body')
|
// const koaBody = require('koa-body')
|
||||||
const {
|
const {
|
||||||
getRaw
|
getRaw
|
||||||
} = require('../../libs/middleware')
|
} = require('@libs/middleware')
|
||||||
const api = require('../../libs/api-action')
|
const api = require('@libs/api-action')
|
||||||
const DB = require('../../libs/database')
|
const DB = require('@libs/database')
|
||||||
|
|
||||||
r.get('/youtube/webhook', async (c, n) => {
|
r.get('/youtube/webhook', async (c, n) => {
|
||||||
let db = await DB.connect()
|
let db = await DB.connect()
|
||||||
|
@ -4,10 +4,10 @@ const r = new Router()
|
|||||||
const {
|
const {
|
||||||
verifyLine,
|
verifyLine,
|
||||||
getRaw
|
getRaw
|
||||||
} = require('../../libs/middleware')
|
} = require('@libs/middleware')
|
||||||
const {
|
const {
|
||||||
textMessage
|
textMessage
|
||||||
} = require('../../libs/line-message')
|
} = require('@libs/line-message')
|
||||||
|
|
||||||
r.post('/', getRaw, verifyLine, async (c, n) => {
|
r.post('/', getRaw, verifyLine, async (c, n) => {
|
||||||
console.log(JSON.stringify(c.request.body, null, 2))
|
console.log(JSON.stringify(c.request.body, null, 2))
|
||||||
|
@ -2,9 +2,9 @@ const Router = require('koa-router')
|
|||||||
const r = new Router()
|
const r = new Router()
|
||||||
const {
|
const {
|
||||||
getRaw
|
getRaw
|
||||||
} = require('../../libs/middleware')
|
} = require('@libs/middleware')
|
||||||
const DB = require('../../libs/database')
|
const DB = require('@libs/database')
|
||||||
const api = require('../../libs/api-action')
|
const api = require('@libs/api-action')
|
||||||
// const config = require('../../config')
|
// const config = require('../../config')
|
||||||
|
|
||||||
r.get('/webhook', async (c, n) => {
|
r.get('/webhook', async (c, n) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user