mirror of https://github.com/calzoneman/sync.git
65 lines
1.5 KiB
JavaScript
65 lines
1.5 KiB
JavaScript
var util = require("./utilities");
|
|
|
|
function Media(id, title, seconds, type, meta) {
|
|
if (!meta) {
|
|
meta = {};
|
|
}
|
|
|
|
this.id = id;
|
|
this.setTitle(title);
|
|
|
|
this.seconds = seconds === "--:--" ? 0 : parseInt(seconds);
|
|
this.duration = util.formatTime(seconds);
|
|
this.type = type;
|
|
this.meta = meta;
|
|
this.currentTime = 0;
|
|
this.paused = false;
|
|
}
|
|
|
|
Media.prototype = {
|
|
setTitle: function (title) {
|
|
this.title = title;
|
|
if (this.title.length > 100) {
|
|
this.title = this.title.substring(0, 97) + "...";
|
|
}
|
|
},
|
|
|
|
pack: function () {
|
|
return {
|
|
id: this.id,
|
|
title: this.title,
|
|
seconds: this.seconds,
|
|
duration: this.duration,
|
|
type: this.type,
|
|
meta: {
|
|
direct: this.meta.direct,
|
|
gpdirect: this.meta.gpdirect,
|
|
restricted: this.meta.restricted,
|
|
codec: this.meta.codec,
|
|
bitrate: this.meta.bitrate
|
|
}
|
|
};
|
|
},
|
|
|
|
getTimeUpdate: function () {
|
|
return {
|
|
currentTime: this.currentTime,
|
|
paused: this.paused
|
|
};
|
|
},
|
|
|
|
getFullUpdate: function () {
|
|
var packed = this.pack();
|
|
packed.currentTime = this.currentTime;
|
|
packed.paused = this.paused;
|
|
return packed;
|
|
},
|
|
|
|
reset: function () {
|
|
this.currentTime = 0;
|
|
this.paused = false;
|
|
}
|
|
};
|
|
|
|
module.exports = Media;
|