Exemple #1
0
 public static string ConstructSupportImageLink(HttpContext ctx, string name, bool short_url = true)
 {
     return(APIHelper.ProperURL(ctx, "/api/image/support/" + name, short_url));
 }
Exemple #2
0
 public static string ConstructImageLinkFromTypeAndId(HttpContext ctx, int type, int id, bool short_url = true)
 {
     return(APIHelper.ProperURL(ctx, "/apiv3/image/" + Image.GetSourceAndTypeFromImageType((ImageEntityType)type) + id, short_url));
 }
Exemple #3
0
 public static string ConstructFiltersUrl(HttpContext ctx, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "__TEST__", short_url));
 }
Exemple #4
0
 public static string ConstructPlaylistIdUrl(HttpContext ctx, int pid, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "/api/metadata/" + (int)JMMType.Playlist + "/" + pid, short_url));
 }
Exemple #5
0
 public static string ConstructVideoUrl(HttpContext ctx, string vid, JMMType type, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "__TEST__" + (int)type + "/" + vid, short_url));
 }
Exemple #6
0
 public static string ConstructFilterIdUrl(HttpContext ctx, int groupfilter_id, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "/api/filter?id=" + groupfilter_id, short_url));
 }
Exemple #7
0
 public static string ConstructGroupIdUrl(HttpContext ctx, string gid, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "__TEST__" + (int)JMMType.Group + "/" + gid, short_url));
 }
Exemple #8
0
 public static string ConstructSerieIdUrl(HttpContext ctx, string sid, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "__TEST__" + (int)JMMType.Serie + " / " + sid, short_url));
 }
Exemple #9
0
 public static string ConstructUnsortUrl(HttpContext ctx, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "/api/file/unsort", short_url));
 }
Exemple #10
0
 public static string ConstructVideoLocalStream(HttpContext ctx, int userid, string vid, string name, bool autowatch)
 {
     return(APIHelper.ProperURL(ctx, "/Stream/" + vid + "/" + userid + "/" + autowatch + "/" + name));
 }
Exemple #11
0
 public static string ConstructImageLinkFromTypeAndId(NancyContext ctx, int type, int id, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "/api/image/" + type.ToString() + "/" + id.ToString()));
 }
Exemple #12
0
 public static string ConstructPlaylistUrl(NancyContext ctx, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "/api/metadata/" + (int)JMMType.Playlist + "/0", short_url));
 }
Exemple #13
0
 public static string ConstructFilterUrl(NancyContext ctx, bool short_url = false)
 {
     return(APIHelper.ProperURL(ctx, "/api/filter", short_url));
 }