app.js 12.1 KB
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
var express = require('express');
const request = require('request');
const TARGET_URL = 'https://api.line.me/v2/bot/message/reply'
const TOKEN = ''
const fs = require('fs');
const path = require('path');
const HTTPS = require('https');
const domain = "2020105659.osschatbot.cf"
const sslport = 23023;

//Open API
const STDICT_URL = 'https://stdict.korean.go.kr/api/search.do'
const STDICT_KEY = ''

//Webhook
const bodyParser = require('body-parser');
const { json } = require('body-parser');
const { start } = require('repl');
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;

  // request log
  console.log('======================', new Date() ,'======================');
  console.log('[request]', req.body);
  console.log('[request source] ', source);
  console.log('[request message]', message);


  wordchain(eventObj.replyToken, message.text, source.userId);


  res.sendStatus(200);
});

var playingId = [];
var words = [];


function exit_(userId) {
  playingId.splice(playingId.indexOf(userId), 1);
  words.splice(playingId.indexOf(userId), 1);
  console.log(playingId);
  console.log(words);
}
function isCommand(message)
{
		return message == '/시작' || message == '/종료' ? true : false;
}
function all_check(replyToken, word, userId) {
  if(words[playingId.indexOf(userId)] != 0) {
    if(!check_endtoend(word, playingId.indexOf(userId))) {
      request.post(
        {
          url: TARGET_URL,
          headers: {
            'Authorization': `Bearer ${TOKEN}`
          },
          json: {
            "replyToken":replyToken,
            "messages":[
              {
                "type":"text",
                "text":"끝음절로 시작해야합니다."
              },
              {
                "type":"text",
                "text":"패배했습니다."
              }
            ]
          }
        },(error, response, body) => {
          console.log(body);
        });
        exit_(userId);
        return false;
    } else if(!check_length(word)) {
      request.post(
        {
          url: TARGET_URL,
          headers: {
            'Authorization': `Bearer ${TOKEN}`
          },
          json: {
            "replyToken":replyToken,
            "messages":[
              {
                "type":"text",
                "text":"한 글자 단어입니다."
              },
              {
                "type":"text",
                "text":"패배했습니다."
              }
            ]
          }
        },(error, response, body) => {
          console.log(body);
        });
        exit_(userId);
        return false;
    } else {
      var uncondition = 0;
      if(uncondition == 0) {
        request.post(
        {
          url: STDICT_URL,
          headers: {
            'Referer': 'https://stdict.korean.go.kr/api/search.do',
            'Content-Type': 'application/x-www-form-urlencoded'
          },
          body: `${STDICT_KEY}&` + `q=${word}&` + 'req_type=json&' + 'advanced=y&' + 'method=exact&' + 'type1=word&' + 'pos=1'
    
        },(error, response, body) => {
          if(!error && response.statusCode == 200) {
              try {console.log(body);
                const parsedData = JSON.parse(body);
                num = parsedData.channel.total; 
                console.log(num);
              } catch (error) {
                console.log("없는 단어");
                {
                  request.post(
                    {
                      url: TARGET_URL,
                      headers: {
                        'Authorization': `Bearer ${TOKEN}`
                      },
                      json: {
                        "replyToken":replyToken,
                        "messages":[
                          {
                            "type":"text",
                            "text":"없는 단어입니다."
                          },
                          {
                            "type":"text",
                            "text":"패배했습니다."
                          }
                        ]
                      }
                    },(error, response, body) => {
                      console.log(body);
                    });
                    exit_(userId);
                    return false;
                  }
              }
          }
          
        });
        
      }
    }
  } else {
    if(!check_length(word)) {
      request.post(
        {
          url: TARGET_URL,
          headers: {
            'Authorization': `Bearer ${TOKEN}`
          },
          json: {
            "replyToken":replyToken,
            "messages":[
              {
                "type":"text",
                "text":"한 글자 단어입니다."
              },
              {
                "type":"text",
                "text":"패배했습니다."
              }
            ]
          }
        },(error, response, body) => {
          console.log(body);
        });
        exit_(userId);
        return false;
    } else {
      var uncondition = 0;
      if(uncondition == 0) {
        request.post(
        {
          url: STDICT_URL,
          headers: {
            'Referer': 'https://stdict.korean.go.kr/api/search.do',
            'Content-Type': 'application/x-www-form-urlencoded'
          },
          body: `${STDICT_KEY}&` + `q=${word}&` + 'req_type=json&' + 'advanced=y&' + 'method=exact&' + 'type1=word&' + 'pos=1'
    
        },(error, response, body) => {
          if(!error && response.statusCode == 200) {
              try {console.log(body);
                const parsedData = JSON.parse(body);
                var num = parsedData.channel.total; 
                console.log(num); 
              } catch (error) {
                console.log("없는 단어");
                {
                  request.post(
                    {
                      url: TARGET_URL,
                      headers: {
                        'Authorization': `Bearer ${TOKEN}`
                      },
                      json: {
                        "replyToken":replyToken,
                        "messages":[
                          {
                            "type":"text",
                            "text":"없는 단어입니다."
                          },
                          {
                            "type":"text",
                            "text":"패배했습니다."
                          }
                        ]
                      }
                    },(error, response, body) => {
                      console.log(body);
                    });
                    exit_(userId);
                    return false;
                  }
              }
          }
          
        });
        
      }
    }
  }
  return true;
}
function check_endtoend(word, index) {
    return word.slice(0, 1) == words[index].slice(-1);
}
function check_exist(word) {
    
}
function check_length(word) {
  return word.length != 1;
}

function wordchain(replyToken, message, userId) {
  if (isCommand(message)){

    if(message == '/시작') {
    playingId.push(userId);
    words.splice(playingId.indexOf(userId), 1, 0);
    console.log(playingId);
    console.log(words);



    request.post(
      {
          url: TARGET_URL,
          headers: {
              'Authorization': `Bearer ${TOKEN}`
          },
          json: {
              "replyToken":replyToken,
              "messages":[
                  {
                      "type":"text",
                      "text": "게임이 시작되었습니다.\n단어를 제시해주세요."
                  }
              ]
          }
      },(error, response, body) => {
          console.log(body);
      });
    } else {
      request.post(
        {
            url: TARGET_URL,
            headers: {
                'Authorization': `Bearer ${TOKEN}`
            },
            json: {
                "replyToken":replyToken,
                "messages":[
                    {
                        "type":"text",
                        "text": "게임이 종료되었습니다."
                    }
                ]
            }
        },(error, response, body) => {
            console.log(body);
        });
      exit_(userId);
    };
  } else {

    if(!playingId.includes(userId)) {
      request.post(
         {
          url: TARGET_URL,
          headers: {
              'Authorization': `Bearer ${TOKEN}`
          },
          json: {
              "replyToken":replyToken,
              "messages":[
                  {
                      "type":"text",
                      "text": "안녕하세요. 끝말잇기봇입니다.\n-표준어 내의 명사만 가능\n\t(표준국어대사전에 근거)\n-한 글자 단어 금지\n시작: '/시작', 종료: '/종료' 입력"
                  }
              ]
          }
      },(error, response, body) => {
          console.log(body);
      });
    } else {

      var word = message;;

      if(all_check(replyToken, word, userId)) {
        let letter = word.slice(-1);

        request.post(
        {
          url: STDICT_URL,
          headers: {
            'Referer': 'https://stdict.korean.go.kr/api/search.do',
            'Content-Type': 'application/x-www-form-urlencoded'
          },
          body: `${STDICT_KEY}&` + `q=${letter}&` + 'req_type=json&' + 'start=15&' + 'advanced=y&' + 'method=start&' + 'type1=word&' + 'pos=1&' + 'letter_s=2&' + 'letter_e=3'

        },(error, response, body) => {
          if(!error && response.statusCode == 200) {
              try {
                console.log(body);
                const parsedData = JSON.parse(body);
                var nextword = parsedData.channel.item[0].word;
                var word_definition = parsedData.channel.item[0].sense.definition;
                words.splice(playingId.indexOf(userId), 1, nextword);
                console.log(words);
  
                request.post(
                      {
                      url: TARGET_URL,
                      headers: {
                          'Authorization': `Bearer ${TOKEN}`
                      },
                      json: {
                          "replyToken":replyToken,
                          "messages":[
                              {
                                  "type":"text",
                                  "text":nextword + ': ' + word_definition
                              }
                          ]
                      }
                  },(error, response, body) => {
                      console.log(body);
                  });
              } catch (error) {
                request.post(
                  {
                    url: TARGET_URL,
                    headers: {
                      'Authorization': `Bearer ${TOKEN}`
                    },
                    json: {
                      "replyToken":replyToken,
                      "messages":[
                        {
                          "type":"text",
                          "text":"다음 단어를 찾을 수 없습니다."
                        },
                        {
                          "type":"text",
                          "text":"승리했습니다."
                        }
                      ]
                    }
                  },(error, response, body) => {
                    console.log(body);
                  });
                  exit_(userId);
                  return false;
              }
          }
        });
      }
     }
    
  }
}

//SSL
try {
    const option = {
      ca: fs.readFileSync('/etc/letsencrypt/live/' + domain +'/fullchain.pem'),
      key: fs.readFileSync(path.resolve(process.cwd(), '/etc/letsencrypt/live/' + domain +'/privkey.pem'), 'utf8').toString(),
      cert: fs.readFileSync(path.resolve(process.cwd(), '/etc/letsencrypt/live/' + domain +'/cert.pem'), 'utf8').toString(),
    };
  
    HTTPS.createServer(option, app).listen(sslport, () => {
      console.log(`[HTTPS] Server is started on port ${sslport}`);
    });
  } catch (error) {
    console.log('[HTTPS] HTTPS 오류가 발생하였습니다. HTTPS 서버는 실행되지 않습니다.');
    console.log(error);
  }