mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 17:43:30 +01:00
grunt default does weird things to lib
This commit is contained in:
@@ -509,6 +509,49 @@ var Client = (function (_EventEmitter) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//def setStatus
|
||||||
|
|
||||||
|
Client.prototype.setStatus = function setStatus(idleStatus, gameID) {
|
||||||
|
var callback = arguments.length <= 2 || arguments[2] === undefined ? function (err) {} : arguments[2];
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
if (typeof gameID === "function") {
|
||||||
|
// gameID is the callback
|
||||||
|
callback = gameID;
|
||||||
|
} else if (typeof idleStatus === "function") {
|
||||||
|
// idleStatus is the callback
|
||||||
|
callback = idleStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
self.internal.setStatus(idleStatus, gameID).then(function () {
|
||||||
|
callback();
|
||||||
|
resolve();
|
||||||
|
})["catch"](function (e) {
|
||||||
|
callback(e);
|
||||||
|
reject(e);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
//def sendTyping
|
||||||
|
|
||||||
|
Client.prototype.sendTyping = function sendTyping(channel) {
|
||||||
|
var callback = arguments.length <= 1 || arguments[1] === undefined ? function (err) {} : arguments[1];
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
|
self.internal.sendTyping(channel).then(function () {
|
||||||
|
callback();
|
||||||
|
resolve();
|
||||||
|
})["catch"](function (e) {
|
||||||
|
callback(e);
|
||||||
|
reject(e);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
// def setTopic
|
// def setTopic
|
||||||
|
|
||||||
Client.prototype.setTopic = function setTopic(channel, topic) {
|
Client.prototype.setTopic = function setTopic(channel, topic) {
|
||||||
@@ -624,9 +667,19 @@ var Client = (function (_EventEmitter) {
|
|||||||
get: function get() {
|
get: function get() {
|
||||||
return this.internal.voiceConnection;
|
return this.internal.voiceConnection;
|
||||||
}
|
}
|
||||||
|
}, {
|
||||||
|
key: "readyTime",
|
||||||
|
get: function get() {
|
||||||
|
return this.internal.readyTime;
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "uptime",
|
||||||
|
get: function get() {
|
||||||
|
return this.internal.uptime;
|
||||||
|
}
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
return Client;
|
return Client;
|
||||||
})(EventEmitter);
|
})(EventEmitter);
|
||||||
|
|
||||||
module.exports = Client;
|
module.exports = Client;
|
||||||
|
|||||||
@@ -4,4 +4,4 @@ exports.IDLE = 0;
|
|||||||
exports.LOGGING_IN = 1;
|
exports.LOGGING_IN = 1;
|
||||||
exports.LOGGED_IN = 2;
|
exports.LOGGED_IN = 2;
|
||||||
exports.READY = 3;
|
exports.READY = 3;
|
||||||
exports.DISCONNECTED = 4;
|
exports.DISCONNECTED = 4;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
|
||||||
|
|
||||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||||
|
|
||||||
var EventEmitter = require("events");
|
var EventEmitter = require("events");
|
||||||
@@ -46,6 +48,7 @@ var InternalClient = (function () {
|
|||||||
this.private_channels = new Cache();
|
this.private_channels = new Cache();
|
||||||
this.voiceConnection = null;
|
this.voiceConnection = null;
|
||||||
this.resolver = new Resolver(this);
|
this.resolver = new Resolver(this);
|
||||||
|
this.readyTime = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
//def leaveVoiceChannel
|
//def leaveVoiceChannel
|
||||||
@@ -856,6 +859,54 @@ var InternalClient = (function () {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//def setStatus
|
||||||
|
|
||||||
|
InternalClient.prototype.setStatus = function setStatus(idleStatus, gameID) {
|
||||||
|
var self = this;
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
|
var packet = {
|
||||||
|
op: 3,
|
||||||
|
d: {
|
||||||
|
idle_since: null,
|
||||||
|
game_id: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (idleStatus) {
|
||||||
|
packet.d.idle_since = Date.now();
|
||||||
|
}
|
||||||
|
if (typeof gameID === "number") {
|
||||||
|
packet.d.game_id = gameID;
|
||||||
|
}
|
||||||
|
|
||||||
|
self.sendWS(packet);
|
||||||
|
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
//def sendTyping
|
||||||
|
|
||||||
|
InternalClient.prototype.sendTyping = function sendTyping(channel) {
|
||||||
|
var self = this;
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
|
self.resolver.resolveChannel(channel).then(next)["catch"](reject);
|
||||||
|
|
||||||
|
function next(channel) {
|
||||||
|
|
||||||
|
request.post(Endpoints.CHANNEL(channel.id) + "/typing").set("authorization", self.token).end(function (err, res) {
|
||||||
|
if (err) {
|
||||||
|
reject(err);
|
||||||
|
} else {
|
||||||
|
resolve();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
//def setTopic
|
//def setTopic
|
||||||
|
|
||||||
InternalClient.prototype.setTopic = function setTopic(chann) {
|
InternalClient.prototype.setTopic = function setTopic(chann) {
|
||||||
@@ -870,7 +921,7 @@ var InternalClient = (function () {
|
|||||||
|
|
||||||
request.patch(Endpoints.CHANNEL(channel.id)).set("authorization", self.token).send({
|
request.patch(Endpoints.CHANNEL(channel.id)).set("authorization", self.token).send({
|
||||||
name: channel.name,
|
name: channel.name,
|
||||||
position: 0,
|
position: channel.position,
|
||||||
topic: topic
|
topic: topic
|
||||||
}).end(function (err, res) {
|
}).end(function (err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@@ -898,7 +949,7 @@ var InternalClient = (function () {
|
|||||||
|
|
||||||
request.patch(Endpoints.CHANNEL(channel.id)).set("authorization", self.token).send({
|
request.patch(Endpoints.CHANNEL(channel.id)).set("authorization", self.token).send({
|
||||||
name: name,
|
name: name,
|
||||||
position: 0,
|
position: channel.position,
|
||||||
topic: channel.topic
|
topic: channel.topic
|
||||||
}).end(function (err, res) {
|
}).end(function (err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@@ -927,7 +978,7 @@ var InternalClient = (function () {
|
|||||||
|
|
||||||
request.patch(Endpoints.CHANNEL(channel.id)).set("authorization", self.token).send({
|
request.patch(Endpoints.CHANNEL(channel.id)).set("authorization", self.token).send({
|
||||||
name: name,
|
name: name,
|
||||||
position: 0,
|
position: channel.position,
|
||||||
topic: topic
|
topic: topic
|
||||||
}).end(function (err, res) {
|
}).end(function (err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@@ -985,6 +1036,10 @@ var InternalClient = (function () {
|
|||||||
client.emit("disconnected");
|
client.emit("disconnected");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.websocket.onerror = function (e) {
|
||||||
|
console.log(e);
|
||||||
|
};
|
||||||
|
|
||||||
this.websocket.onmessage = function (e) {
|
this.websocket.onmessage = function (e) {
|
||||||
|
|
||||||
if (e.type === "Binary") {
|
if (e.type === "Binary") {
|
||||||
@@ -1023,6 +1078,8 @@ var InternalClient = (function () {
|
|||||||
client.emit("ready");
|
client.emit("ready");
|
||||||
client.emit("debug", "ready packet took " + (Date.now() - startTime) + "ms to process");
|
client.emit("debug", "ready packet took " + (Date.now() - startTime) + "ms to process");
|
||||||
client.emit("debug", "ready with " + self.servers.length + " servers, " + self.channels.length + " channels and " + self.users.length + " users cached.");
|
client.emit("debug", "ready with " + self.servers.length + " servers, " + self.channels.length + " channels and " + self.users.length + " users cached.");
|
||||||
|
|
||||||
|
self.readyTime = Date.now();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PacketType.MESSAGE_CREATE:
|
case PacketType.MESSAGE_CREATE:
|
||||||
@@ -1368,7 +1425,14 @@ var InternalClient = (function () {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
_createClass(InternalClient, [{
|
||||||
|
key: "uptime",
|
||||||
|
get: function get() {
|
||||||
|
return this.readyTime ? Date.now() - this.readyTime : null;
|
||||||
|
}
|
||||||
|
}]);
|
||||||
|
|
||||||
return InternalClient;
|
return InternalClient;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = InternalClient;
|
module.exports = InternalClient;
|
||||||
|
|||||||
@@ -182,4 +182,4 @@ var Resolver = (function () {
|
|||||||
return Resolver;
|
return Resolver;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = Resolver;
|
module.exports = Resolver;
|
||||||
|
|||||||
@@ -124,4 +124,4 @@ var PacketType = {
|
|||||||
exports.API_ENDPOINT = API;
|
exports.API_ENDPOINT = API;
|
||||||
exports.Endpoints = Endpoints;
|
exports.Endpoints = Endpoints;
|
||||||
exports.PacketType = PacketType;
|
exports.PacketType = PacketType;
|
||||||
exports.Permissions = Permissions;
|
exports.Permissions = Permissions;
|
||||||
|
|||||||
@@ -22,4 +22,4 @@ var Channel = (function (_Equality) {
|
|||||||
return Channel;
|
return Channel;
|
||||||
})(Equality);
|
})(Equality);
|
||||||
|
|
||||||
module.exports = Channel;
|
module.exports = Channel;
|
||||||
|
|||||||
@@ -72,4 +72,4 @@ var ChannelPermissions = (function () {
|
|||||||
return ChannelPermissions;
|
return ChannelPermissions;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = ChannelPermissions;
|
module.exports = ChannelPermissions;
|
||||||
|
|||||||
@@ -43,4 +43,4 @@ var Message = (function () {
|
|||||||
return Message;
|
return Message;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = Message;
|
module.exports = Message;
|
||||||
|
|||||||
@@ -43,4 +43,4 @@ var PMChannel = (function (_Equality) {
|
|||||||
return PMChannel;
|
return PMChannel;
|
||||||
})(Equality);
|
})(Equality);
|
||||||
|
|
||||||
module.exports = PMChannel;
|
module.exports = PMChannel;
|
||||||
|
|||||||
@@ -83,4 +83,4 @@ var PermissionOverwrite = (function () {
|
|||||||
return PermissionOverwrite;
|
return PermissionOverwrite;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = PermissionOverwrite;
|
module.exports = PermissionOverwrite;
|
||||||
|
|||||||
@@ -136,4 +136,4 @@ var Role = (function () {
|
|||||||
return Role;
|
return Role;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = Role;
|
module.exports = Role;
|
||||||
|
|||||||
@@ -166,4 +166,4 @@ var Server = (function (_Equality) {
|
|||||||
return Server;
|
return Server;
|
||||||
})(Equality);
|
})(Equality);
|
||||||
|
|
||||||
module.exports = Server;
|
module.exports = Server;
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ var ServerChannel = (function (_Channel) {
|
|||||||
_Channel.call(this, data, client);
|
_Channel.call(this, data, client);
|
||||||
this.name = data.name;
|
this.name = data.name;
|
||||||
this.type = data.type;
|
this.type = data.type;
|
||||||
|
this.position = data.position;
|
||||||
this.permissionOverwrites = new Cache();
|
this.permissionOverwrites = new Cache();
|
||||||
this.server = server;
|
this.server = server;
|
||||||
data.permission_overwrites.forEach(function (permission) {
|
data.permission_overwrites.forEach(function (permission) {
|
||||||
@@ -104,4 +105,4 @@ var ServerChannel = (function (_Channel) {
|
|||||||
return ServerChannel;
|
return ServerChannel;
|
||||||
})(Channel);
|
})(Channel);
|
||||||
|
|
||||||
module.exports = ServerChannel;
|
module.exports = ServerChannel;
|
||||||
|
|||||||
@@ -36,4 +36,4 @@ var TextChannel = (function (_ServerChannel) {
|
|||||||
return TextChannel;
|
return TextChannel;
|
||||||
})(ServerChannel);
|
})(ServerChannel);
|
||||||
|
|
||||||
module.exports = TextChannel;
|
module.exports = TextChannel;
|
||||||
|
|||||||
@@ -55,4 +55,4 @@ var User = (function (_Equality) {
|
|||||||
return User;
|
return User;
|
||||||
})(Equality);
|
})(Equality);
|
||||||
|
|
||||||
module.exports = User;
|
module.exports = User;
|
||||||
|
|||||||
@@ -18,4 +18,4 @@ var VoiceChannel = (function (_ServerChannel) {
|
|||||||
return VoiceChannel;
|
return VoiceChannel;
|
||||||
})(ServerChannel);
|
})(ServerChannel);
|
||||||
|
|
||||||
module.exports = VoiceChannel;
|
module.exports = VoiceChannel;
|
||||||
|
|||||||
@@ -95,4 +95,4 @@ var Cache = (function (_Array) {
|
|||||||
return Cache;
|
return Cache;
|
||||||
})(Array);
|
})(Array);
|
||||||
|
|
||||||
module.exports = Cache;
|
module.exports = Cache;
|
||||||
|
|||||||
@@ -42,4 +42,4 @@ var Equality = (function () {
|
|||||||
return Equality;
|
return Equality;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = Equality;
|
module.exports = Equality;
|
||||||
|
|||||||
@@ -126,4 +126,4 @@ var AudioEncoder = (function () {
|
|||||||
return AudioEncoder;
|
return AudioEncoder;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = AudioEncoder;
|
module.exports = AudioEncoder;
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ var StreamIntent = (function (_EventEmitter) {
|
|||||||
return StreamIntent;
|
return StreamIntent;
|
||||||
})(EventEmitter);
|
})(EventEmitter);
|
||||||
|
|
||||||
module.exports = StreamIntent;
|
module.exports = StreamIntent;
|
||||||
|
|||||||
@@ -329,4 +329,4 @@ var VoiceConnection = (function (_EventEmitter) {
|
|||||||
return VoiceConnection;
|
return VoiceConnection;
|
||||||
})(EventEmitter);
|
})(EventEmitter);
|
||||||
|
|
||||||
module.exports = VoiceConnection;
|
module.exports = VoiceConnection;
|
||||||
|
|||||||
@@ -3,24 +3,24 @@
|
|||||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||||
|
|
||||||
var VoicePacket = function VoicePacket(data, sequence, time, ssrc) {
|
var VoicePacket = function VoicePacket(data, sequence, time, ssrc) {
|
||||||
_classCallCheck(this, VoicePacket);
|
_classCallCheck(this, VoicePacket);
|
||||||
|
|
||||||
var audioBuffer = data,
|
var audioBuffer = data,
|
||||||
returnBuffer = new Buffer(audioBuffer.length + 12);
|
returnBuffer = new Buffer(audioBuffer.length + 12);
|
||||||
|
|
||||||
returnBuffer.fill(0);
|
returnBuffer.fill(0);
|
||||||
returnBuffer[0] = 0x80;
|
returnBuffer[0] = 0x80;
|
||||||
returnBuffer[1] = 0x78;
|
returnBuffer[1] = 0x78;
|
||||||
|
|
||||||
returnBuffer.writeUIntBE(sequence, 2, 2);
|
returnBuffer.writeUIntBE(sequence, 2, 2);
|
||||||
returnBuffer.writeUIntBE(time, 4, 4);
|
returnBuffer.writeUIntBE(time, 4, 4);
|
||||||
returnBuffer.writeUIntBE(ssrc, 8, 4);
|
returnBuffer.writeUIntBE(ssrc, 8, 4);
|
||||||
|
|
||||||
for (var i = 0; i < audioBuffer.length; i++) {
|
for (var i = 0; i < audioBuffer.length; i++) {
|
||||||
returnBuffer[i + 12] = audioBuffer[i];
|
returnBuffer[i + 12] = audioBuffer[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
return returnBuffer;
|
return returnBuffer;
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = VoicePacket;
|
module.exports = VoicePacket;
|
||||||
|
|||||||
@@ -14,4 +14,4 @@ module.exports = {
|
|||||||
TextChannel: require("./Structures/TextChannel"),
|
TextChannel: require("./Structures/TextChannel"),
|
||||||
User: require("./Structures/User"),
|
User: require("./Structures/User"),
|
||||||
VoiceChannel: require("./Structures/VoiceChannel")
|
VoiceChannel: require("./Structures/VoiceChannel")
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user