UNPKG

plex-api

Version:

Simple wrapper for querying against HTTP API on the Plex Media Server

41 lines (33 loc) 1.01 kB
var uriResolvers = { directory: function directory(parentUrl, dir) { addDirectoryUriProperty(parentUrl, dir); }, server: function server(parentUrl, srv) { addServerUriProperty(srv); }, }; function addServerUriProperty(server) { server.uri = '/system/players/' + server.address; } function addDirectoryUriProperty(parentUrl, directory) { if (parentUrl[parentUrl.length - 1] !== '/') { parentUrl += '/'; } if (directory.key[0] === '/') { parentUrl = ''; } directory.uri = parentUrl + directory.key; } exports.attach = function attach(parentUrl) { return function resolveAndAttachUris(result) { var children = result._children || []; children.forEach(function (child) { var childType = child._elementType.toLowerCase(); var resolver = uriResolvers[childType]; if (resolver) { resolver(parentUrl, child); } }); return result; }; };