Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박하늘
/
stock_chatbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박하늘
2021-06-04 18:12:55 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6364226bd3d0f6b4b21b65617e274ca5f10505ec
6364226b
1 parent
878c88d2
app.js : fuzzy string button update
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
94 additions
and
37 deletions
server/app.js
server/app.js
View file @
6364226
...
...
@@ -10,58 +10,115 @@ const sslport = 23023;
const
bodyParser
=
require
(
'body-parser'
);
var
app
=
express
();
app
.
use
(
bodyParser
.
json
());
app
.
post
(
'/hook'
,
function
(
req
,
res
)
{
var
eventObj
=
req
.
body
.
events
[
0
];
var
source
=
eventObj
.
source
;
var
message
=
eventObj
.
message
;
var
pystring
;
// request log
console
.
log
(
'======================'
,
new
Date
()
,
'======================'
);
console
.
log
(
'[request]'
,
req
.
body
);
console
.
log
(
'[request source] '
,
eventObj
.
source
);
console
.
log
(
'[request message]'
,
eventObj
.
message
);
basicinform
(
eventObj
.
replyToken
,
eventObj
.
message
.
text
)
res
.
sendStatus
(
200
);
});
function
basicinform
(
replyToken
,
message
)
{
var
pystring
;
const
spawn
=
require
(
"child_process"
).
spawn
;
const
process
=
spawn
(
"python"
,
[
"basic.py"
,
eventObj
.
message
.
text
]);
const
process
=
spawn
(
"python"
,
[
"basic.py"
,
message
]);
const
Callback
=
(
data
)
=>
{
console
.
log
(
"Data :"
,
data
.
toString
());
pystring
=
data
.
toString
();
// request log
console
.
log
(
'======================'
,
new
Date
()
,
'======================'
);
console
.
log
(
'[request]'
,
req
.
body
);
console
.
log
(
'[request source] '
,
eventObj
.
source
);
console
.
log
(
'[request message]'
,
eventObj
.
message
);
request
.
post
(
{
url
:
TARGET_URL
,
headers
:
{
'Authorization'
:
`Bearer
${
TOKEN
}
`
},
json
:
{
"replyToken"
:
eventObj
.
replyToken
,
"messages"
:[
{
"type"
:
"text"
,
"text"
:
pystring
},
{
"type"
:
"text"
,
"text"
:
"May I help you?"
}
]
}
},(
error
,
response
,
body
)
=>
{
console
.
log
(
body
)
});
if
(
pystring
[
0
]
==
'1'
)
{
pystring
=
pystring
.
replace
(
'1현'
,
'현'
);
request
.
post
(
{
url
:
TARGET_URL
,
headers
:
{
'Authorization'
:
`Bearer
${
TOKEN
}
`
},
json
:
{
"replyToken"
:
replyToken
,
"messages"
:[
{
"type"
:
"text"
,
"text"
:
pystring
}
]
}
},(
error
,
response
,
body
)
=>
{
console
.
log
(
body
)
});
}
else
{
var
candarr
=
pystring
.
split
(
'\n'
)
request
.
post
(
{
url
:
TARGET_URL
,
headers
:
{
'Authorization'
:
`Bearer
${
TOKEN
}
`
},
json
:
{
"replyToken"
:
replyToken
,
"messages"
:[
{
"type"
:
"text"
,
"text"
:
pystring
,
"quickReply"
:
{
"items"
:
[
{
"type"
:
"action"
,
"action"
:
{
"type"
:
"message"
,
"label"
:
candarr
[
0
],
"text"
:
candarr
[
0
]
}
},
{
"type"
:
"action"
,
"action"
:
{
"type"
:
"message"
,
"label"
:
candarr
[
1
],
"text"
:
candarr
[
1
]
}
},
{
"type"
:
"action"
,
"action"
:
{
"type"
:
"message"
,
"label"
:
candarr
[
2
],
"text"
:
candarr
[
2
]
}
}
]
}
}
]
}
},(
error
,
response
,
body
)
=>
{
console
.
log
(
body
)
});
}
res
.
sendStatus
(
200
);
};
process
.
stdout
.
on
(
"data"
,
Callback
);
});
}
try
{
const
option
=
{
...
...
Please
register
or
login
to post a comment