2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* @author Marzavec ( https://github.com/marzavec )
|
channel ownership base, part 1
Fleshing out the new channel ownership feature, along with a typo fix and small syntax updates.
A claim can now be staked with /claimchannel, a channel owner may change a trip's level using /setlevel
To do: unclaimchannel, setmotd, makeprivate, makepublic, renewclaim, garbage keeping, update mod commands to accept channelOwner and channelModerator, etc
2024-01-05 16:30:28 +08:00
|
|
|
* @summary App settings
|
2022-06-23 00:32:51 +08:00
|
|
|
* @version 1.0.0
|
channel ownership base, part 1
Fleshing out the new channel ownership feature, along with a typo fix and small syntax updates.
A claim can now be staked with /claimchannel, a channel owner may change a trip's level using /setlevel
To do: unclaimchannel, setmotd, makeprivate, makepublic, renewclaim, garbage keeping, update mod commands to accept channelOwner and channelModerator, etc
2024-01-05 16:30:28 +08:00
|
|
|
* @description Exports an object that hold common constants
|
2022-06-23 00:32:51 +08:00
|
|
|
* @module Constants
|
|
|
|
*/
|
|
|
|
|
channel ownership base, part 1
Fleshing out the new channel ownership feature, along with a typo fix and small syntax updates.
A claim can now be staked with /claimchannel, a channel owner may change a trip's level using /setlevel
To do: unclaimchannel, setmotd, makeprivate, makepublic, renewclaim, garbage keeping, update mod commands to accept channelOwner and channelModerator, etc
2024-01-05 16:30:28 +08:00
|
|
|
/**
|
|
|
|
* Internal version, used mainly for debugging
|
|
|
|
* @typedef {object} CodebaseVersion
|
|
|
|
*/
|
|
|
|
export const CodebaseVersion = '2.2.21b';
|
|
|
|
|
2020-09-22 13:34:30 +08:00
|
|
|
/* Base error ranges */
|
|
|
|
const GlobalErrors = 10;
|
|
|
|
const JoinErrors = 20;
|
|
|
|
const ChannelErrors = 30;
|
|
|
|
const InviteErrors = 40;
|
2022-06-23 00:32:51 +08:00
|
|
|
const SessionErrors = 50;
|
2020-09-22 13:34:30 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the numeric id values for each error type
|
|
|
|
* @typedef {object} Errors
|
|
|
|
*/
|
2022-06-23 00:32:51 +08:00
|
|
|
export const Errors = {
|
2020-09-22 13:34:30 +08:00
|
|
|
Global: {
|
|
|
|
RATELIMIT: GlobalErrors + 1,
|
|
|
|
UNKNOWN_USER: GlobalErrors + 2,
|
|
|
|
PERMISSION: GlobalErrors + 3,
|
|
|
|
},
|
|
|
|
|
|
|
|
Join: {
|
|
|
|
RATELIMIT: JoinErrors + 1,
|
|
|
|
INVALID_NICK: JoinErrors + 2,
|
|
|
|
ALREADY_JOINED: JoinErrors + 3,
|
|
|
|
NAME_TAKEN: JoinErrors + 4,
|
|
|
|
},
|
|
|
|
|
|
|
|
Channel: {
|
|
|
|
INVALID_NAME: ChannelErrors + 1,
|
|
|
|
INVALID_LENGTH: ChannelErrors + 2,
|
2022-06-23 00:32:51 +08:00
|
|
|
DEY_BANNED: ChannelErrors + 3,
|
2020-09-22 13:34:30 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
Invite: {
|
|
|
|
RATELIMIT: InviteErrors + 1,
|
|
|
|
},
|
2022-06-23 00:32:51 +08:00
|
|
|
|
|
|
|
Session: {
|
|
|
|
BAD_SESSION: SessionErrors + 1,
|
|
|
|
},
|
2020-09-22 13:34:30 +08:00
|
|
|
};
|
2022-06-23 00:32:51 +08:00
|
|
|
|
channel ownership base, part 1
Fleshing out the new channel ownership feature, along with a typo fix and small syntax updates.
A claim can now be staked with /claimchannel, a channel owner may change a trip's level using /setlevel
To do: unclaimchannel, setmotd, makeprivate, makepublic, renewclaim, garbage keeping, update mod commands to accept channelOwner and channelModerator, etc
2024-01-05 16:30:28 +08:00
|
|
|
/**
|
|
|
|
* The settings structure of a default, unowned channel
|
|
|
|
* @typedef {object} DefaultChannelSettings
|
|
|
|
*/
|
|
|
|
export const DefaultChannelSettings = {
|
|
|
|
owned: false,
|
|
|
|
ownerTrip: '',
|
|
|
|
lastAccessed: new Date(),
|
|
|
|
claimExpires: new Date(),
|
|
|
|
motd: '',
|
|
|
|
lockLevel: 0,
|
|
|
|
tripLevels: {},
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maximum number of specialized trip levels, per channel
|
|
|
|
* @typedef {number} MaxChannelTrips
|
|
|
|
*/
|
|
|
|
export const MaxChannelTrips = 250;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How many days until a claim will expire
|
|
|
|
* @typedef {number} ClaimExpirationDays
|
|
|
|
*/
|
|
|
|
export const ClaimExpirationDays = 7;
|
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
export default Errors;
|