1.2.5 • Published 4 years ago

cloudlist.js v1.2.5

Weekly downloads
13
License
MIT
Repository
-
Last release
4 years ago

CBL API

A very simple package to post stats / retrieve stats of bots from the Cloud Bots List API.

Usage

const cbl = require('cloudlist.js');

Getting stats

Params:

botID - The user ID of the bot whose stats and information are being retreived

cbl.getStats(botID);

Response:

Returns a Promise that resolves to:

{
  id: string, // The bot's user ID
  prefix: string, // The bot's prefix
  owner: Array<string>, // An array of the bot's owners' IDs, can sometimes be more than one ID
  library: string, // The library the bot uses
  description: string, // The bot's short description
  longDescription: string, // The bot's long description
  certified: boolean, // Is the bot certified?
  pageURL: string, // The bot's page on SBL
  website?: string // A URL leading to the bot's website
  support?: string // The code for the invite to the bot's support server
  github?: string // The bot's GitHub repository
  servers?: number, // The bot's server count, (sometimes doesn't exist)
  users?: number, // The bot's user count, (sometimes doesn't exist)
  votes: number // The amount of users that voted for the bot on the website, can be 0
}

Posting stats

Params:

client - discord.js / Eris Client - The bot whose stats are being posted

apiKey - String - The CBL API key

Optional log - Boolean - Wether to console.log after posting (defaults to true)

Optional serversOnly - Boolean - Wether to only post the server amount or also the user (default to false)

cbl.postStats(client, apiKey);

Response:

if log is true,

Logs:

CBL Server count was updated to newServerCount

and if serversOnly is false, also

CBL User count was updated to newUserCount

Returns a Promise that resolves to:

{
  servers: number // The newly-posted server count
  users?: number  // The newly-posted / already stored user count, if exists
}

Examples

// Get stats
cbl
  .getStats('bot_id')
  .then(console.log)
  .catch(console.error);
// Post stats
cbl
  .postStats(client, 'API_KEY') // Post server and user count
  .then(console.log)
  .catch(console.error);
cbl
  .postStats(client, 'API_KEY', null, true) // Post ONLY server count
  .then(console.log)
  .catch(console.error);

Notes

Uses node-fetch

Additional Resources

Cloud Bots List

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago