Compare commits
No commits in common. "cb6618e9f1d336be0231b437bfdf9b9a558eaf94" and "eff6b6e19fb0860ac1fcfb8547fb5cdfb2a3a9e6" have entirely different histories.
cb6618e9f1
...
eff6b6e19f
@ -130,7 +130,7 @@ func RefreshShows(env *web.Env) {
|
|||||||
|
|
||||||
// Iterate over the map of shows to refresh them
|
// Iterate over the map of shows to refresh them
|
||||||
for id := range showMap {
|
for id := range showMap {
|
||||||
show := shows.New(id)
|
show := shows.New(id, env.Config.PublicDir, env.Config.ImgURLPrefix)
|
||||||
// Refresh the shows
|
// Refresh the shows
|
||||||
err := show.Refresh(env, env.Config.Show.Detailers)
|
err := show.Refresh(env, env.Config.Show.Detailers)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -196,7 +196,7 @@ func RefreshMovies(env *web.Env) {
|
|||||||
|
|
||||||
// Iterate over the map of movies to refresh them
|
// Iterate over the map of movies to refresh them
|
||||||
for id := range movieMap {
|
for id := range movieMap {
|
||||||
movie := movies.New(id, nil, nil, false)
|
movie := movies.New(env, id, nil, nil, false)
|
||||||
// Refresh the movie
|
// Refresh the movie
|
||||||
err := movie.Refresh(env, env.Config.Movie.Detailers)
|
err := movie.Refresh(env, env.Config.Movie.Detailers)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -80,7 +80,7 @@ func GetMovies(env *web.Env, user *models.User, source string, category string)
|
|||||||
// Fill all the movies infos from the list of IDs
|
// Fill all the movies infos from the list of IDs
|
||||||
for _, id := range media.IDs {
|
for _, id := range media.IDs {
|
||||||
pMovie, _ := pMovies.Has(id)
|
pMovie, _ := pMovies.Has(id)
|
||||||
movie := movies.New(id, client, pMovie, moviesWishlist.IsMovieInWishlist(id))
|
movie := movies.New(env, id, client, pMovie, moviesWishlist.IsMovieInWishlist(id))
|
||||||
// First check in the DB
|
// First check in the DB
|
||||||
before := []polochon.Detailer{env.Backend.Detailer}
|
before := []polochon.Detailer{env.Backend.Detailer}
|
||||||
// Then with the default detailers
|
// Then with the default detailers
|
||||||
@ -141,7 +141,7 @@ func GetShows(env *web.Env, user *models.User, source string, category string, f
|
|||||||
for _, id := range media.IDs {
|
for _, id := range media.IDs {
|
||||||
pShow, _ := pShows.Has(id)
|
pShow, _ := pShows.Has(id)
|
||||||
wShow, _ := wShows.IsShowInWishlist(id)
|
wShow, _ := wShows.IsShowInWishlist(id)
|
||||||
show := shows.NewWithClient(&polochon.Show{ImdbID: id}, client, pShow, wShow)
|
show := shows.NewWithClient(&polochon.Show{ImdbID: id}, client, pShow, wShow, env.Config.PublicDir, env.Config.ImgURLPrefix)
|
||||||
|
|
||||||
// First check in the DB
|
// First check in the DB
|
||||||
before := []polochon.Detailer{env.Backend.Detailer}
|
before := []polochon.Detailer{env.Backend.Detailer}
|
||||||
|
@ -4,7 +4,6 @@ import (
|
|||||||
"database/sql"
|
"database/sql"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/jmoiron/sqlx"
|
"github.com/jmoiron/sqlx"
|
||||||
"github.com/jmoiron/sqlx/types"
|
"github.com/jmoiron/sqlx/types"
|
||||||
@ -26,16 +25,7 @@ const (
|
|||||||
RETURNING *;`
|
RETURNING *;`
|
||||||
deleteUserQuery = `DELETE FROM users WHERE id=:id;`
|
deleteUserQuery = `DELETE FROM users WHERE id=:id;`
|
||||||
|
|
||||||
getAllUsersQuery = `
|
getAllUsersQuery = `SELECT * FROM users order by created_at;`
|
||||||
SELECT u.*, tok.last_seen
|
|
||||||
FROM users u
|
|
||||||
LEFT OUTER JOIN (
|
|
||||||
SELECT username, MAX(last_used) AS last_seen
|
|
||||||
FROM tokens GROUP BY username
|
|
||||||
) AS tok
|
|
||||||
ON u.name = tok.username
|
|
||||||
ORDER by u.created_at;
|
|
||||||
`
|
|
||||||
getPolochonUsersQuery = `SELECT * FROM users WHERE polochon_id = $1;`
|
getPolochonUsersQuery = `SELECT * FROM users WHERE polochon_id = $1;`
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -61,7 +51,6 @@ type User struct {
|
|||||||
PolochonID sql.NullString `json:"polochon_id" db:"polochon_id"`
|
PolochonID sql.NullString `json:"polochon_id" db:"polochon_id"`
|
||||||
PolochonActivated bool `json:"polochon_activated" db:"polochon_activated"`
|
PolochonActivated bool `json:"polochon_activated" db:"polochon_activated"`
|
||||||
Polochon *Polochon `json:"polochon"`
|
Polochon *Polochon `json:"polochon"`
|
||||||
LastSeen *time.Time `json:"last_seen" db:"last_seen"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewPapiClient creates a new papi client for the given user
|
// NewPapiClient creates a new papi client for the given user
|
||||||
|
@ -76,7 +76,7 @@ func RefreshMovieHandler(env *web.Env, w http.ResponseWriter, r *http.Request) e
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Create a new movie
|
// Create a new movie
|
||||||
m := New(id, client, pMovie, isWishlisted)
|
m := New(env, id, client, pMovie, isWishlisted)
|
||||||
|
|
||||||
// Refresh the movie's infos
|
// Refresh the movie's infos
|
||||||
if err := m.Refresh(env, env.Config.Movie.Detailers); err != nil {
|
if err := m.Refresh(env, env.Config.Movie.Detailers); err != nil {
|
||||||
@ -141,6 +141,7 @@ func SearchMovie(env *web.Env, w http.ResponseWriter, r *http.Request) error {
|
|||||||
for _, m := range movies {
|
for _, m := range movies {
|
||||||
pMovie, _ := pMovies.Has(m.ImdbID)
|
pMovie, _ := pMovies.Has(m.ImdbID)
|
||||||
movie := New(
|
movie := New(
|
||||||
|
env,
|
||||||
m.ImdbID,
|
m.ImdbID,
|
||||||
client,
|
client,
|
||||||
pMovie,
|
pMovie,
|
||||||
@ -250,6 +251,7 @@ func GetWishlistHandler(env *web.Env, w http.ResponseWriter, r *http.Request) er
|
|||||||
for _, imdbID := range moviesWishlist.List() {
|
for _, imdbID := range moviesWishlist.List() {
|
||||||
pMovie, _ := pMovies.Has(imdbID)
|
pMovie, _ := pMovies.Has(imdbID)
|
||||||
movie := New(
|
movie := New(
|
||||||
|
env,
|
||||||
imdbID,
|
imdbID,
|
||||||
client,
|
client,
|
||||||
pMovie,
|
pMovie,
|
||||||
|
@ -19,9 +19,11 @@ import (
|
|||||||
// Movie represents a movie
|
// Movie represents a movie
|
||||||
type Movie struct {
|
type Movie struct {
|
||||||
*polochon.Movie
|
*polochon.Movie
|
||||||
client *papi.Client
|
client *papi.Client
|
||||||
pMovie *papi.Movie
|
pMovie *papi.Movie
|
||||||
Wishlisted bool `json:"wishlisted"`
|
publicDir string
|
||||||
|
imgURLPrefix string
|
||||||
|
Wishlisted bool `json:"wishlisted"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// MarshalJSON implements the Marshal interface
|
// MarshalJSON implements the Marshal interface
|
||||||
@ -72,11 +74,13 @@ func (m *Movie) MarshalJSON() ([]byte, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// New returns a new Movie with all the needed infos
|
// New returns a new Movie with all the needed infos
|
||||||
func New(imdbID string, client *papi.Client, pMovie *papi.Movie, isWishlisted bool) *Movie {
|
func New(env *web.Env, imdbID string, client *papi.Client, pMovie *papi.Movie, isWishlisted bool) *Movie {
|
||||||
return &Movie{
|
return &Movie{
|
||||||
client: client,
|
client: client,
|
||||||
pMovie: pMovie,
|
pMovie: pMovie,
|
||||||
Wishlisted: isWishlisted,
|
publicDir: env.Config.PublicDir,
|
||||||
|
imgURLPrefix: env.Config.ImgURLPrefix,
|
||||||
|
Wishlisted: isWishlisted,
|
||||||
Movie: &polochon.Movie{
|
Movie: &polochon.Movie{
|
||||||
ImdbID: imdbID,
|
ImdbID: imdbID,
|
||||||
},
|
},
|
||||||
@ -237,7 +241,7 @@ func (m *Movie) imgURL() string {
|
|||||||
|
|
||||||
// imgFile returns the image location on disk
|
// imgFile returns the image location on disk
|
||||||
func (m *Movie) imgFile() string {
|
func (m *Movie) imgFile() string {
|
||||||
return filepath.Join(models.PublicDir, "img", m.imgURL())
|
return filepath.Join(m.publicDir, "img", m.imgURL())
|
||||||
}
|
}
|
||||||
|
|
||||||
// getPolochonMovies returns an array of the user's polochon movies
|
// getPolochonMovies returns an array of the user's polochon movies
|
||||||
@ -265,6 +269,7 @@ func getPolochonMovies(user *models.User, env *web.Env) ([]*Movie, error) {
|
|||||||
// Create Movies objects from the movies retrieved
|
// Create Movies objects from the movies retrieved
|
||||||
for _, pmovie := range pmovies.List() {
|
for _, pmovie := range pmovies.List() {
|
||||||
movie := New(
|
movie := New(
|
||||||
|
env,
|
||||||
pmovie.ImdbID,
|
pmovie.ImdbID,
|
||||||
client,
|
client,
|
||||||
pmovie,
|
pmovie,
|
||||||
|
@ -43,7 +43,7 @@ func GetDetailsHandler(env *web.Env, w http.ResponseWriter, r *http.Request) err
|
|||||||
log.Println("Got error getting wishlisted show ", err)
|
log.Println("Got error getting wishlisted show ", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
s := NewWithClient(&polochon.Show{ImdbID: id}, client, pShow, wShow)
|
s := NewWithClient(&polochon.Show{ImdbID: id}, client, pShow, wShow, env.Config.PublicDir, env.Config.ImgURLPrefix)
|
||||||
// First try from the db
|
// First try from the db
|
||||||
first := []polochon.Detailer{env.Backend.Detailer}
|
first := []polochon.Detailer{env.Backend.Detailer}
|
||||||
// Then try from the polochon detailers
|
// Then try from the polochon detailers
|
||||||
@ -89,7 +89,7 @@ func RefreshShowHandler(env *web.Env, w http.ResponseWriter, r *http.Request) er
|
|||||||
log.Println("Got error getting wishlisted show ", err)
|
log.Println("Got error getting wishlisted show ", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
s := NewWithClient(&polochon.Show{ImdbID: id}, client, pShow, wShow)
|
s := NewWithClient(&polochon.Show{ImdbID: id}, client, pShow, wShow, env.Config.PublicDir, env.Config.ImgURLPrefix)
|
||||||
// Refresh the polochon detailers
|
// Refresh the polochon detailers
|
||||||
detailers := env.Config.Show.Detailers
|
detailers := env.Config.Show.Detailers
|
||||||
err = s.Refresh(env, detailers)
|
err = s.Refresh(env, detailers)
|
||||||
@ -163,7 +163,7 @@ func SearchShow(env *web.Env, w http.ResponseWriter, r *http.Request) error {
|
|||||||
for _, s := range shows {
|
for _, s := range shows {
|
||||||
pShow, _ := pShows.Has(s.ImdbID)
|
pShow, _ := pShows.Has(s.ImdbID)
|
||||||
wShow, _ := wShows.IsShowInWishlist(s.ImdbID)
|
wShow, _ := wShows.IsShowInWishlist(s.ImdbID)
|
||||||
show := NewWithClient(s, client, pShow, wShow)
|
show := NewWithClient(s, client, pShow, wShow, env.Config.PublicDir, env.Config.ImgURLPrefix)
|
||||||
|
|
||||||
// First try from the db
|
// First try from the db
|
||||||
first := []polochon.Detailer{env.Backend.Detailer}
|
first := []polochon.Detailer{env.Backend.Detailer}
|
||||||
@ -243,7 +243,7 @@ func GetWishlistHandler(env *web.Env, w http.ResponseWriter, r *http.Request) er
|
|||||||
for _, wishedShow := range wShows.List() {
|
for _, wishedShow := range wShows.List() {
|
||||||
pShow, _ := pShows.Has(wishedShow.ImdbID)
|
pShow, _ := pShows.Has(wishedShow.ImdbID)
|
||||||
poloShow := &polochon.Show{ImdbID: wishedShow.ImdbID}
|
poloShow := &polochon.Show{ImdbID: wishedShow.ImdbID}
|
||||||
show := NewWithClient(poloShow, client, pShow, wishedShow)
|
show := NewWithClient(poloShow, client, pShow, wishedShow, env.Config.PublicDir, env.Config.ImgURLPrefix)
|
||||||
|
|
||||||
// First check in the DB
|
// First check in the DB
|
||||||
before := []polochon.Detailer{env.Backend.Detailer}
|
before := []polochon.Detailer{env.Backend.Detailer}
|
||||||
@ -309,9 +309,11 @@ func RefreshEpisodeHandler(env *web.Env, w http.ResponseWriter, r *http.Request)
|
|||||||
}
|
}
|
||||||
|
|
||||||
s := &Show{
|
s := &Show{
|
||||||
Show: &polochon.Show{ImdbID: id},
|
Show: &polochon.Show{ImdbID: id},
|
||||||
client: client,
|
client: client,
|
||||||
pShow: pShow,
|
pShow: pShow,
|
||||||
|
publicDir: env.Config.PublicDir,
|
||||||
|
imgURLPrefix: env.Config.ImgURLPrefix,
|
||||||
}
|
}
|
||||||
|
|
||||||
e := NewEpisode(s, season, episode)
|
e := NewEpisode(s, season, episode)
|
||||||
|
@ -22,6 +22,8 @@ type Show struct {
|
|||||||
*polochon.Show
|
*polochon.Show
|
||||||
TrackedSeason *int `json:"tracked_season"`
|
TrackedSeason *int `json:"tracked_season"`
|
||||||
TrackedEpisode *int `json:"tracked_episode"`
|
TrackedEpisode *int `json:"tracked_episode"`
|
||||||
|
publicDir string
|
||||||
|
imgURLPrefix string
|
||||||
}
|
}
|
||||||
|
|
||||||
// MarshalJSON implements the Marshal interface
|
// MarshalJSON implements the Marshal interface
|
||||||
@ -53,20 +55,24 @@ func (s *Show) MarshalJSON() ([]byte, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// New returns a new Show with a polochon ShowConfig
|
// New returns a new Show with a polochon ShowConfig
|
||||||
func New(imdbID string) *Show {
|
func New(imdbID string, publicDir, imgURLPrefix string) *Show {
|
||||||
return &Show{
|
return &Show{
|
||||||
Show: &polochon.Show{
|
Show: &polochon.Show{
|
||||||
ImdbID: imdbID,
|
ImdbID: imdbID,
|
||||||
},
|
},
|
||||||
|
publicDir: publicDir,
|
||||||
|
imgURLPrefix: imgURLPrefix,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewWithClient returns a new Show with a polochon ShowConfig
|
// NewWithClient returns a new Show with a polochon ShowConfig
|
||||||
func NewWithClient(show *polochon.Show, client *papi.Client, pShow *papi.Show, wShow *models.WishedShow) *Show {
|
func NewWithClient(show *polochon.Show, client *papi.Client, pShow *papi.Show, wShow *models.WishedShow, publicDir, imgURLPrefix string) *Show {
|
||||||
s := &Show{
|
s := &Show{
|
||||||
Show: show,
|
Show: show,
|
||||||
client: client,
|
client: client,
|
||||||
pShow: pShow,
|
pShow: pShow,
|
||||||
|
publicDir: publicDir,
|
||||||
|
imgURLPrefix: imgURLPrefix,
|
||||||
}
|
}
|
||||||
if wShow != nil {
|
if wShow != nil {
|
||||||
s.TrackedSeason = &wShow.Season
|
s.TrackedSeason = &wShow.Season
|
||||||
@ -149,7 +155,7 @@ func (s *Show) GetImageURL(imgType string) string {
|
|||||||
if _, err := os.Stat(s.imgFile(imgType)); os.IsNotExist(err) {
|
if _, err := os.Stat(s.imgFile(imgType)); os.IsNotExist(err) {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
return models.ImgURLPrefix + s.imgURL(imgType)
|
return s.imgURLPrefix + s.imgURL(imgType)
|
||||||
}
|
}
|
||||||
|
|
||||||
// downloadImages will download the show images
|
// downloadImages will download the show images
|
||||||
@ -211,12 +217,12 @@ func (s *Show) imgURL(imgType string) string {
|
|||||||
|
|
||||||
// imgDirectory returns the directory containing all the show images
|
// imgDirectory returns the directory containing all the show images
|
||||||
func (s *Show) imgDirectory() string {
|
func (s *Show) imgDirectory() string {
|
||||||
return filepath.Join(models.PublicDir, "img", fmt.Sprintf("shows/%s", s.ImdbID))
|
return filepath.Join(s.publicDir, "img", fmt.Sprintf("shows/%s", s.ImdbID))
|
||||||
}
|
}
|
||||||
|
|
||||||
// imgFile returns the image location on disk
|
// imgFile returns the image location on disk
|
||||||
func (s *Show) imgFile(imgType string) string {
|
func (s *Show) imgFile(imgType string) string {
|
||||||
return filepath.Join(models.PublicDir, "img", s.imgURL(imgType))
|
return filepath.Join(s.publicDir, "img", s.imgURL(imgType))
|
||||||
}
|
}
|
||||||
|
|
||||||
// getPolochonShows returns all the Shows from the polochon of a user
|
// getPolochonShows returns all the Shows from the polochon of a user
|
||||||
@ -242,7 +248,7 @@ func getPolochonShows(env *web.Env, user *models.User) ([]*Show, error) {
|
|||||||
// Create Shows objects from the shows retrieved
|
// Create Shows objects from the shows retrieved
|
||||||
for _, pShow := range pshows.List() {
|
for _, pShow := range pshows.List() {
|
||||||
wShow, _ := wShows.IsShowInWishlist(pShow.ImdbID)
|
wShow, _ := wShows.IsShowInWishlist(pShow.ImdbID)
|
||||||
show := NewWithClient(&polochon.Show{ImdbID: pShow.ImdbID}, client, pShow, wShow)
|
show := NewWithClient(&polochon.Show{ImdbID: pShow.ImdbID}, client, pShow, wShow, env.Config.PublicDir, env.Config.ImgURLPrefix)
|
||||||
shows = append(shows, show)
|
shows = append(shows, show)
|
||||||
}
|
}
|
||||||
return shows, nil
|
return shows, nil
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import moment from "moment";
|
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
import { useSelector } from "react-redux";
|
import { useSelector } from "react-redux";
|
||||||
|
|
||||||
@ -8,10 +7,10 @@ import { UserEdit } from "./userEdit";
|
|||||||
export const User = ({ id }) => {
|
export const User = ({ id }) => {
|
||||||
const user = useSelector((state) => state.admin.users.get(id));
|
const user = useSelector((state) => state.admin.users.get(id));
|
||||||
const polochon = user.polochon;
|
const polochon = user.polochon;
|
||||||
const lastSeen = moment(user.last_seen, "YYYY-MM-DDTHH:mm:ss.SZ");
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<tr>
|
<tr>
|
||||||
|
<td>{user.id}</td>
|
||||||
<td>{user.name}</td>
|
<td>{user.name}</td>
|
||||||
<td>
|
<td>
|
||||||
<span
|
<span
|
||||||
@ -33,7 +32,6 @@ export const User = ({ id }) => {
|
|||||||
}
|
}
|
||||||
></span>
|
></span>
|
||||||
</td>
|
</td>
|
||||||
<td>{lastSeen.isValid() ? lastSeen.fromNow() : "-"}</td>
|
|
||||||
<td>
|
<td>
|
||||||
<UserEdit id={id} />
|
<UserEdit id={id} />
|
||||||
</td>
|
</td>
|
||||||
|
@ -24,13 +24,13 @@ export const UserList = () => {
|
|||||||
<table className="table table-striped">
|
<table className="table table-striped">
|
||||||
<thead className="table-secondary">
|
<thead className="table-secondary">
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>#</th>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Activated</th>
|
<th>Activated</th>
|
||||||
<th>Admin</th>
|
<th>Admin</th>
|
||||||
<th>Polochon URL</th>
|
<th>Polochon URL</th>
|
||||||
<th>Polochon token</th>
|
<th>Polochon token</th>
|
||||||
<th>Polochon activated</th>
|
<th>Polochon activated</th>
|
||||||
<th>Last seen</th>
|
|
||||||
<th>Actions</th>
|
<th>Actions</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user