sync/lib/media.js

66 lines
1.5 KiB
JavaScript
Raw Normal View History

2014-05-21 02:30:14 +00:00
var util = require("./utilities");
2014-05-21 02:30:14 +00:00
function Media(id, title, seconds, type, meta) {
if (!meta) {
meta = {};
}
2013-02-16 05:02:42 +00:00
this.id = id;
2014-06-04 04:21:00 +00:00
this.setTitle(title);
2014-05-21 02:30:14 +00:00
this.seconds = seconds === "--:--" ? 0 : parseInt(seconds);
this.duration = util.formatTime(seconds);
this.type = type;
this.meta = meta;
this.currentTime = 0;
this.paused = false;
2013-02-16 05:02:42 +00:00
}
2014-05-21 02:30:14 +00:00
Media.prototype = {
2014-06-04 04:21:00 +00:00
setTitle: function (title) {
this.title = title;
if (this.title.length > 100) {
this.title = this.title.substring(0, 97) + "...";
}
},
2014-05-21 02:30:14 +00:00
pack: function () {
return {
id: this.id,
title: this.title,
seconds: this.seconds,
duration: this.duration,
type: this.type,
meta: {
object: this.meta.object,
params: this.meta.params,
direct: this.meta.direct,
restricted: this.meta.restricted,
codec: this.meta.codec,
bitrate: this.meta.bitrate
2014-05-21 02:30:14 +00:00
}
};
},
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;
}
};
2014-05-21 02:30:14 +00:00
module.exports = Media;