func MovieGenres(ctx *gin.Context) { genres := tmdb.GetMovieGenres(config.Get().Language) items := make(xbmc.ListItems, 0, len(genres)) for _, genre := range genres { items = append(items, &xbmc.ListItem{ Label: genre.Name, Path: UrlForXBMC("/movies/popular/%s", strconv.Itoa(genre.Id)), }) } ctx.JSON(200, xbmc.NewView("", items)) }
func MoviesIndex(ctx *gin.Context) { items := xbmc.ListItems{ {Label: "Search", Path: UrlForXBMC("/movies/search"), Thumbnail: config.AddonResource("img", "search.png")}, {Label: "Most Popular", Path: UrlForXBMC("/movies/popular"), Thumbnail: config.AddonResource("img", "popular.png")}, {Label: "Top Rated", Path: UrlForXBMC("/movies/top"), Thumbnail: config.AddonResource("img", "top_rated.png")}, {Label: "Most Voted", Path: UrlForXBMC("/movies/mostvoted"), Thumbnail: config.AddonResource("img", "most_voted.png")}, {Label: "IMDB Top 250", Path: UrlForXBMC("/movies/imdb250"), Thumbnail: config.AddonResource("img", "imdb.png")}, } for _, genre := range tmdb.GetMovieGenres(config.Get().Language) { slug, _ := genreSlugs[genre.Id] items = append(items, &xbmc.ListItem{ Label: genre.Name, Path: UrlForXBMC("/movies/popular/%s", strconv.Itoa(genre.Id)), Thumbnail: config.AddonResource("img", fmt.Sprintf("genre_%s.png", slug)), }) } ctx.JSON(200, xbmc.NewView("", items)) }