-
Notifications
You must be signed in to change notification settings - Fork 0
/
flask_server.py
112 lines (93 loc) · 3.2 KB
/
flask_server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# -*- coding: utf-8 -*-
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import os
import sys
import json
import config
from group_list import write_json, load_json
from argparse import ArgumentParser
from flask import Flask, request, abort
from linebot import (
LineBotApi, WebhookHandler
)
from linebot.exceptions import (
InvalidSignatureError
)
from linebot.models import (
MessageEvent, JoinEvent, LeaveEvent, TextMessage, TextSendMessage
)
app = Flask(__name__)
conf = config.Config
# get channel_secret and channel_access_token from your environment variable
channel_secret = os.getenv('LINE_CHANNEL_SECRET', None)
channel_access_token = os.getenv('LINE_TOKEN', None)
if channel_secret is None:
print('Specify LINE_CHANNEL_SECRET as environment variable.')
sys.exit(1)
if channel_access_token is None:
print('Specify LINE_TOKEN as environment variable.')
sys.exit(1)
line_bot_api = LineBotApi(channel_access_token)
handler = WebhookHandler(channel_secret)
@app.route("/callback", methods=['POST'])
def callback():
# get X-Line-Signature header value
signature = request.headers['X-Line-Signature']
# get request body as text
body = request.get_data(as_text=True)
app.logger.info("Request body: " + body)
# handle webhook body
try:
handler.handle(body, signature)
except InvalidSignatureError:
abort(400)
return 'OK'
# @handler.add(MessageEvent, message=TextMessage)
# def message_text(event):
# line_bot_api.reply_message(
# event.reply_token,
# TextSendMessage(text=event.message.text)
# )
@handler.add(JoinEvent)
def join_event(event):
if event.type == "join":
group_id = 0
if event.source.type == "group":
group_id = event.source.group_id
if group_id != 0:
group_list = load_json(conf.json_file_name)
if group_id not in group_list:
group_list.append(group_id)
else:
print("%s already added." % group_id)
write_json(conf.json_file_name, group_list)
# print(event)
@handler.add(LeaveEvent)
def leave_event(event):
if event.type == "leave":
group_id = 0
if event.source.type == "group":
group_id = event.source.group_id
if group_id != 0:
group_list = load_json(conf.json_file_name)
if group_id in group_list:
group_list.remove(group_id)
else:
print("%s is not in group list." % group_id)
write_json(conf.json_file_name, group_list)
# print(event)
def app_start():
port = int(os.environ.get('PORT', 5000))
app.run(host='0.0.0.0', port=port)
# if __name__ == "__main__":
# app_start()