使用js的Discord-bot

时间:2018-09-10 03:16:31

标签: javascript api bots discord nedb

我正在使用nedb这个不和谐的机器人。我需要完成特定日期的功能,它应该下载并保存所有与我有关的人的对话。对于所有消息,我需要它检查是否已存在少于edited_date的数据库。如果不存在,则插入。 有没有人可以帮助我?我真的很想找出答案

const fetch = require('node-fetch');
const moment = require('moment');
const config = require('./config');
const querystring = require("querystring");
var Datastore = require('nedb');

var db = new Datastore({ filename: 'discord.db', autoload: true });
const TO_DAYS      = 4194304 * 1000 * 60 * 60 * 24;
const ROOT_DATE    = moment([2018, 3, 30]);
const ROOT_DATE_ID = 440557948108800000;

// this inserts scott into the database
// var scott = {
//   name: 'Scott',
//   twitter: '@ScottWRobinson'
// };
// db.insert(scott, function (err, doc) {
//   console.log('Inserted', doc.name, 'with ID', doc._id);
// });


// this finds all items in the database and prints them.  
// db.find({}).exec(function (err, docs) {
//     console.log(docs);
//     docs.forEach(function (d) {
//         console.log('Found user:', d.name);
//     });
// });


const DATE_ID = function (date) {
    return ROOT_DATE_ID + date.diff(ROOT_DATE, "days") * TO_DAYS;
}

class discordApi {
  constructor() {}
  // this function sends a request to discords servers, and pulls down JSON
  get(momentDate, authorId, offset = 0) {
    const url =
      config.endpoint +
      querystring.stringify({
        min_id: DATE_ID(momentDate),
        author_id: authorId
      });
    return fetch(url, {
      headers: {
        method: "GET",
        Authorization: config.auth
      }
    }).then(res => {
      console.log(res.url);
      return res.json();
    });
  }
  // TODO finish this function.  for a specific date, it should download and save all the conversations for a person.
  // for all messages, check if already exist in database with edited_date less than.
  // if any do not exist, then insert.
  sync(momentDate) {
    // for this date, get all the messages from targets.
    config.targets.map(author_id => {
      this.get(momentDate, author_id).then(({ total_results, messages }) => {
        console.log(messages);
        messages.map(conversation => {
          conversation.map(({ attachments, author, content, timestamp }) => {
            console.log(timestamp, author.username, content);
          });
        });
      });
    });
  }
}

module.exports = new discordApi();

1 个答案:

答案 0 :(得分:0)

我对nedb知之甚少,但您似乎基本上回答了自己的问题。

在数据库中查询目标的所有结果。

创建一个初始化为false的标志,遍历所有返回的记录,如果有匹配的日期条件,则将该标志设置为true。

然后,如果该标志仍然为false,则创建一个数据库条目。