trin5tensa / moviedb

A movie lover's notebook.
GNU General Public License v3.0
1 stars 0 forks source link

Add Movie Stars #359

Open trin5tensa opened 3 months ago

trin5tensa commented 3 months ago

Add movie stars to the database.

TMDB

Examine TMDB's API and evaluate a method of identifying stars from the crew list. Decide if there is any feasible basis for adding movie stars to the data base and, if not, abandon this issue. Add stars to the movies placed into in the work_queue.

GUI

Display the movie's stars already present in the database.. Display the stars returned from TMDB. Pass the stars' names with other data which will be sent to the database.

Database

Update database schema with tables for Star(ID, Name) and MovieStar(MovieID, StarID). Add database functions.

add_star_link Will add a star link and the star if not already present. delete_star_link Will delete a star link and the star if there are no other links for that star.