Compare commits
131 Commits
Author | SHA1 | Date | |
---|---|---|---|
2967aee16d | |||
3c32356227 | |||
46aeda73d8 | |||
b6ab359a37 | |||
e825f94028 | |||
fbf286c09c | |||
fa21ba4f25 | |||
f06da8044f | |||
ac126f6a9d | |||
d8aee9e5b7 | |||
fe1a00d1af | |||
6c7cc11038 | |||
66eb72d7fb | |||
0c3f9204bc | |||
4ca590639d | |||
3e9cb7410f | |||
272c88ab50 | |||
c4227faf14 | |||
80a04456e6 | |||
e11f021efe | |||
60b14b3c0d | |||
350471363e | |||
bce4ec49da | |||
4b664d0ae6 | |||
e075a87750 | |||
866d8f72b4 | |||
7d696122fa | |||
c049aa345c | |||
c5d231d9f2 | |||
707c54e5f5 | |||
2d8bb06852 | |||
2ae00f8af0 | |||
9e53b217b0 | |||
7fbc7e98c9 | |||
598137ed63 | |||
bbb36606e1 | |||
fd692c7c02 | |||
0eb9167deb | |||
362484f92c | |||
a7790b289a | |||
635e9f009c | |||
83227da6da | |||
777cc2a712 | |||
812c45cb13 | |||
92d6ae0e7e | |||
5eed1849bc | |||
8f7ba53c39 | |||
5b6b1e3473 | |||
ee073c0dab | |||
28f3d6db70 | |||
b21d2a29cc | |||
76f879a0f2 | |||
6076512dd0 | |||
d799cdd610 | |||
3021126e86 | |||
2bfe3c28b2 | |||
f1c49ea049 | |||
13a980f161 | |||
c2991bcd50 | |||
653146213e | |||
8f88aa3c02 | |||
b36327b332 | |||
444ef3f074 | |||
b3555efa57 | |||
e5ef1f94a4 | |||
f0902d29b7 | |||
1de36afb69 | |||
13336cbf1c | |||
e14d485a07 | |||
186c24277c | |||
f87c02c276 | |||
72a652f5f3 | |||
f80554bfdd | |||
5970e4d19e | |||
987ae7fb8e | |||
747f3005c8 | |||
8bea726e98 | |||
226f718348 | |||
ad1c4b221d | |||
748f0410de | |||
08df6d64dd | |||
a2385e8e4c | |||
fd9a54209d | |||
827fd6a1b2 | |||
8c4b1a836a | |||
0ec4954ec5 | |||
aa741c5a90 | |||
d3c3ee3044 | |||
a3b63618b4 | |||
15ede7821e | |||
1eddddcbac | |||
e4b55a1c76 | |||
643c4a872d | |||
ca499fed99 | |||
1d9cf31f13 | |||
8b89db6d5c | |||
b9b9ac0bc2 | |||
5662a6e6e5 | |||
537d869338 | |||
24dac2135c | |||
7954af888d | |||
133851fe0d | |||
75ae0d7d8b | |||
8292d13a70 | |||
720c218a11 | |||
24a29369b4 | |||
9ce867c6c8 | |||
3b1d85824f | |||
1739ffd32c | |||
0ca25ec4d1 | |||
08c2567551 | |||
cbc191b7ec | |||
791f2327e1 | |||
fdfb36bcd2 | |||
afae31618c | |||
a6f6b2d96f | |||
753ea99693 | |||
e640b36ce4 | |||
4ac21506f3 | |||
89153b5da9 | |||
ec4e54e991 | |||
18ce670836 | |||
8150f884ab | |||
82f8fb7350 | |||
d034b2bc52 | |||
63284da11e | |||
37e5a1a51e | |||
c4098a8d3d | |||
043750170b | |||
23a1fdca75 | |||
72c68d8a7c |
65
.codeclimate.yml
Normal file
65
.codeclimate.yml
Normal file
@ -0,0 +1,65 @@
|
||||
version: "2"
|
||||
plugins:
|
||||
csslint:
|
||||
enabled: true
|
||||
coffeelint:
|
||||
enabled: true
|
||||
duplication:
|
||||
enabled: true
|
||||
config:
|
||||
languages:
|
||||
- ruby
|
||||
- javascript
|
||||
- python
|
||||
- php
|
||||
eslint:
|
||||
enabled: true
|
||||
channel: __ESLINT_CHANNEL__
|
||||
fixme:
|
||||
enabled: true
|
||||
rubocop:
|
||||
enabled: true
|
||||
exclude_patterns:
|
||||
- config/
|
||||
- db/
|
||||
- dist/
|
||||
- features/
|
||||
- "**/node_modules/"
|
||||
- script/
|
||||
- "**/spec/"
|
||||
- "**/test/"
|
||||
- "**/tests/"
|
||||
- Tests/
|
||||
- "**/vendor/"
|
||||
- "**/*_test.go"
|
||||
- "**/*.d.ts"
|
||||
- "**/*.min.js"
|
||||
- "**/*.min.css"
|
||||
- "**/__tests__/"
|
||||
- "**/__mocks__/"
|
||||
- "**/*.test.js"
|
||||
checks:
|
||||
argument-count:
|
||||
config:
|
||||
threshold: 5
|
||||
complex-logic:
|
||||
config:
|
||||
threshold: 4
|
||||
file-lines:
|
||||
config:
|
||||
threshold: 350
|
||||
method-complexity:
|
||||
config:
|
||||
threshold: 5
|
||||
method-count:
|
||||
config:
|
||||
threshold: 20
|
||||
method-lines:
|
||||
config:
|
||||
threshold: 60
|
||||
nested-control-flow:
|
||||
config:
|
||||
threshold: 4
|
||||
return-statements:
|
||||
config:
|
||||
threshold: 4
|
@ -1,34 +1,87 @@
|
||||
image: node:latest
|
||||
image: node:14
|
||||
|
||||
stages:
|
||||
- test
|
||||
- coverage
|
||||
- prepare
|
||||
- build
|
||||
- test
|
||||
- packaging
|
||||
- deploy
|
||||
|
||||
cache:
|
||||
key: ${CI_COMMIT_REF_SLUG}
|
||||
paths:
|
||||
- .npm/
|
||||
- node_modules/
|
||||
|
||||
test:
|
||||
include:
|
||||
- template: Code-Quality.gitlab-ci.yml
|
||||
|
||||
variables:
|
||||
SAST_DISABLE_DIND: "true"
|
||||
|
||||
Node_dependencies:
|
||||
stage: prepare
|
||||
script:
|
||||
- npm ci --cache .npm --prefer-offline
|
||||
|
||||
Minimize:
|
||||
stage: build
|
||||
script:
|
||||
- npm run build
|
||||
artifacts:
|
||||
expire_in: 7 days
|
||||
paths:
|
||||
- build/
|
||||
needs: ["Node_dependencies"]
|
||||
|
||||
Frontend_Tests:
|
||||
stage: test
|
||||
script:
|
||||
- npm install
|
||||
- CI=true npm run test
|
||||
- npm run test
|
||||
artifacts:
|
||||
reports:
|
||||
junit:
|
||||
- ./junit.xml
|
||||
needs: ["Node_dependencies"]
|
||||
|
||||
coverage:
|
||||
stage: coverage
|
||||
code_quality:
|
||||
tags:
|
||||
- dind
|
||||
|
||||
Debian_Server:
|
||||
stage: packaging
|
||||
image: debian
|
||||
script:
|
||||
- CI=true npm run coverage
|
||||
- vers=$(grep -Po '"version":.*?[^\\]",' package.json | grep -Po '[0-9]+\.[0-9]+\.[0-9]+') # parse the version out of package .json
|
||||
- cd deb
|
||||
- mkdir -p "./OpenMediaCenter/var/www/openmediacenter/videos/"
|
||||
- mkdir -p "./OpenMediaCenter/tmp/"
|
||||
- cp -r ../build/* ./OpenMediaCenter/var/www/openmediacenter/
|
||||
- cp -r ../api ./OpenMediaCenter/var/www/openmediacenter/
|
||||
- cp ../database.sql ./OpenMediaCenter/tmp/openmediacenter.sql
|
||||
- 'echo "Version: ${vers}" >> ./OpenMediaCenter/DEBIAN/control'
|
||||
- chmod -R 0775 *
|
||||
- dpkg-deb --build OpenMediaCenter
|
||||
- mv OpenMediaCenter.deb OpenMediaCenter-${vers}_amd64.deb
|
||||
artifacts:
|
||||
reports:
|
||||
cobertura:
|
||||
- ./coverage/cobertura-coverage.xml
|
||||
paths:
|
||||
- deb/OpenMediaCenter-*.deb
|
||||
needs: ["Minimize"]
|
||||
|
||||
build:
|
||||
stage: build
|
||||
Test_Server:
|
||||
stage: deploy
|
||||
image: luki42/alpineopenssh:latest
|
||||
needs:
|
||||
- Frontend_Tests
|
||||
- Debian_Server
|
||||
only:
|
||||
- master
|
||||
script:
|
||||
- npm run build
|
||||
- eval $(ssh-agent -s)
|
||||
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||
- mkdir -p ~/.ssh
|
||||
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||
- scp deb/OpenMediaCenter-*.deb root@192.168.0.42:/tmp/
|
||||
- ssh root@192.168.0.42 "DEBIAN_FRONTEND=noninteractive apt-get --reinstall -y -qq install /tmp/OpenMediaCenter-*.deb && rm /tmp/OpenMediaCenter-*.deb"
|
||||
allow_failure: true
|
||||
|
||||
|
17
README.md
17
README.md
@ -7,14 +7,19 @@ Feel free to contribute or open an issue here: https://gitlab.heili.eu/lukas/ope
|
||||
|
||||
## What is this?
|
||||
Open Media Center is an open source solution for a mediacenter in your home network.
|
||||
It's based on Reactjs and uses PHP for backend.
|
||||
Transform your webserver into a mediaserver.
|
||||
It's based on Reactjs and PHP is used for backend.
|
||||
It is optimized for general videos as well as for movies.
|
||||
For grabbing movie data TMDB is used.
|
||||
For organizing videos tags are used.
|
||||
With the help of tags you can organize your video gravity.
|
||||
|
||||
Here you can see an example main page:
|
||||
Here you can see an example main page in light mode:
|
||||
|
||||

|
||||

|
||||
|
||||
and in dark mode:
|
||||
|
||||

|
||||
|
||||
## Installation
|
||||
First of all clone the repository.
|
||||
@ -31,9 +36,9 @@ You need also to setup a Database with the structure described in [SQL Style Ref
|
||||
The login data to this database needs to be specified in the `api/Database.php` file.
|
||||
|
||||
## Usage
|
||||
To index Videos run on your server: `php extractvideopreviews.php`.
|
||||
Now you can access your MediaCenter via your servers global ip (:
|
||||
|
||||
Now you can access your MediaCenter via the servers global ip (:
|
||||
At the settings tab you can set the correct videopath on server and click reindex afterwards.
|
||||
|
||||
## Contact
|
||||
Any contribution is appreciated.
|
||||
|
31
api/Tags.php
31
api/Tags.php
@ -1,31 +0,0 @@
|
||||
<?php
|
||||
require 'Database.php';
|
||||
|
||||
$conn = Database::getInstance()->getConnection();
|
||||
|
||||
if (isset($_POST['action'])) {
|
||||
$action = $_POST['action'];
|
||||
switch ($action) {
|
||||
case "getAllTags":
|
||||
$query = "SELECT tag_name,tag_id from tags";
|
||||
|
||||
$result = $conn->query($query);
|
||||
$rows = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows, $r);
|
||||
}
|
||||
echo json_encode($rows);
|
||||
|
||||
break;
|
||||
|
||||
case "createTag":
|
||||
$query = "INSERT INTO tags (tag_name) VALUES ('" . $_POST['tagname'] . "')";
|
||||
|
||||
if ($conn->query($query) === TRUE) {
|
||||
echo('{"result":"success"}');
|
||||
} else {
|
||||
echo('{"result":"' . $conn->error . '"}');
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
5
api/actor.php
Normal file
5
api/actor.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include_once __DIR__ . '/src/handlers/Actor.php';
|
||||
|
||||
$actor = new Actor();
|
||||
$actor->handleAction();
|
@ -1,18 +0,0 @@
|
||||
<?php
|
||||
$return = new stdClass();
|
||||
if (file_exists("/tmp/output.log")) {
|
||||
$out = file_get_contents("/tmp/output.log");
|
||||
// clear log file
|
||||
file_put_contents("/tmp/output.log", "");
|
||||
$return->message = $out;
|
||||
$return->contentAvailable = true;
|
||||
|
||||
if (substr($out, -strlen("-42")) == "-42") {
|
||||
unlink("/tmp/output.log");
|
||||
}
|
||||
} else {
|
||||
$return->contentAvailable = false;
|
||||
}
|
||||
|
||||
|
||||
echo json_encode($return);
|
@ -1,265 +1,18 @@
|
||||
<?php
|
||||
require 'Database.php';
|
||||
require 'TMDBMovie.php';
|
||||
require_once __DIR__ . '/src/Database.php';
|
||||
require_once __DIR__ . '/src/TMDBMovie.php';
|
||||
require_once __DIR__ . '/src/SSettings.php';
|
||||
require_once __DIR__ . '/src/VideoParser.php';
|
||||
|
||||
writeLog("starting extraction!\n");
|
||||
// allow UTF8 characters
|
||||
setlocale(LC_ALL, 'en_US.UTF-8');
|
||||
set_time_limit(3600);
|
||||
|
||||
$ffmpeg = 'ffmpeg'; //or: /usr/bin/ffmpeg , or /usr/local/bin/ffmpeg - depends on your installation (type which ffmpeg into a console to find the install path)
|
||||
$tmdb = new TMDBMovie();
|
||||
// initial load of all available movie genres
|
||||
$tmdbgenres = $tmdb->getAllGenres();
|
||||
$vp = new VideoParser();
|
||||
$vp->writeLog("starting extraction!!\n");
|
||||
|
||||
$conn = Database::getInstance()->getConnection();
|
||||
$sett = new SSettings();
|
||||
|
||||
$scandir = "../videos/prn/";
|
||||
$arr = scandir($scandir);
|
||||
|
||||
$all = 0;
|
||||
$added = 0;
|
||||
$deleted = 0;
|
||||
$failed = 0;
|
||||
|
||||
foreach ($arr as $elem) {
|
||||
if ($elem != "." && $elem != "..") {
|
||||
if (strpos($elem, '.mp4') !== false) {
|
||||
$moviename = substr($elem, 0, -4);
|
||||
|
||||
$query = "SELECT * FROM videos WHERE movie_name = '" . mysqli_real_escape_string($conn, $moviename) . "'";
|
||||
$result = $conn->query($query);
|
||||
|
||||
// insert if not available in db
|
||||
if (!mysqli_fetch_assoc($result)) {
|
||||
// try to fetch data from TMDB
|
||||
$poster = -1;
|
||||
$genres = -1;
|
||||
if (!is_null($dta = $tmdb->searchMovie($moviename))) {
|
||||
$pic = file_get_contents($tmdb->picturebase . $dta->poster_path);
|
||||
$poster = shell_exec("ffmpeg -hide_banner -loglevel panic -ss 00:04:00 -i \"../videos/prn/$elem\" -vframes 1 -q:v 2 -f singlejpeg pipe:1 2>/dev/null");
|
||||
|
||||
// error handling for download error
|
||||
if (!$pic) {
|
||||
$pic = $poster;
|
||||
$poster = -1;
|
||||
echo "Failed to load Picture from TMDB! \n";
|
||||
}
|
||||
|
||||
$genres = $dta->genre_ids;
|
||||
} else {
|
||||
echo "nothing found with TMDB!\n";
|
||||
writeLog("nothing found with TMDB!\n");
|
||||
$pic = shell_exec("ffmpeg -hide_banner -loglevel panic -ss 00:04:00 -i \"../videos/prn/$elem\" -vframes 1 -q:v 2 -f singlejpeg pipe:1 2>/dev/null");
|
||||
}
|
||||
|
||||
//convert video to base64
|
||||
$image_base64 = base64_encode($pic);
|
||||
// add base64 fileinfo
|
||||
$image = 'data:image/jpeg;base64,' . $image_base64;
|
||||
|
||||
// extract other video attributes
|
||||
$video_attributes = _get_video_attributes($elem);
|
||||
$duration = 0;
|
||||
$size = 0;
|
||||
$width = 0;
|
||||
|
||||
if ($video_attributes) {
|
||||
$duration = $video_attributes->media->track[0]->Duration; // in seconds
|
||||
$size = $video_attributes->media->track[0]->FileSize; // in Bytes
|
||||
$width = $video_attributes->media->track[1]->Width; // width
|
||||
}
|
||||
|
||||
|
||||
if ($poster != -1) {
|
||||
$poster_base64 = 'data:image/jpeg;base64,' . base64_encode($poster);
|
||||
|
||||
$query = "INSERT INTO videos(movie_name,movie_url,poster,thumbnail,quality,length)
|
||||
VALUES ('" . mysqli_real_escape_string($conn, $moviename) . "',
|
||||
'" . mysqli_real_escape_string($conn, 'videos/prn/' . $elem) . "',
|
||||
'$poster_base64',
|
||||
'$image',
|
||||
'$width',
|
||||
'$duration')";
|
||||
} else {
|
||||
$query = "INSERT INTO videos(movie_name,movie_url,thumbnail,quality,length)
|
||||
VALUES ('" . mysqli_real_escape_string($conn, $moviename) . "',
|
||||
'" . mysqli_real_escape_string($conn, 'videos/prn/' . $elem) . "',
|
||||
'$image',
|
||||
'$width',
|
||||
'$duration')";
|
||||
}
|
||||
|
||||
|
||||
if ($conn->query($query) === TRUE) {
|
||||
echo('successfully added ' . $elem . " to video gravity\n");
|
||||
writeLog('successfully added ' . $elem . " to video gravity\n");
|
||||
|
||||
// add this entry to the default tags
|
||||
$last_id = $conn->insert_id;
|
||||
|
||||
// full hd
|
||||
if ($width >= 1900) {
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($last_id,2)";
|
||||
if ($conn->query($query) !== TRUE) {
|
||||
echo "failed to add default tag here.\n";
|
||||
writeLog("failed to add default tag here.\n");
|
||||
}
|
||||
}
|
||||
|
||||
// HD
|
||||
if ($width >= 1250 && $width < 1900) {
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($last_id,4)";
|
||||
if ($conn->query($query) !== TRUE) {
|
||||
echo "failed to add default tag here.\n";
|
||||
writeLog("failed to add default tag here.\n");
|
||||
}
|
||||
}
|
||||
|
||||
// SD
|
||||
if ($width < 1250 && $width > 0) {
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($last_id,3)";
|
||||
if ($conn->query($query) !== TRUE) {
|
||||
echo "failed to add default tag here.\n";
|
||||
writeLog("failed to add default tag here.\n");
|
||||
}
|
||||
}
|
||||
|
||||
// handle tmdb genres here!
|
||||
if ($genres != -1) {
|
||||
// transform genre ids in valid names
|
||||
foreach ($genres as $genreid) {
|
||||
// check if genre is already a tag in db if not insert it
|
||||
$tagname = array_column($tmdbgenres, 'name', 'id')[$genreid];
|
||||
$tagid = tagExists($tagname);
|
||||
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($last_id,$tagid)";
|
||||
if ($conn->query($query) !== TRUE) {
|
||||
echo "failed to add $genreid tag here.\n";
|
||||
writeLog("failed to add $genreid tag here.\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$added++;
|
||||
$all++;
|
||||
} else {
|
||||
echo('errored item: ' . $elem . "\n");
|
||||
writeLog('errored item: ' . $elem . "\n");
|
||||
echo('{"data":"' . $conn->error . '"}\n');
|
||||
writeLog('{"data":"' . $conn->error . '"}\n');
|
||||
$failed++;
|
||||
}
|
||||
} else {
|
||||
$all++;
|
||||
}
|
||||
} else {
|
||||
echo($elem . " does not contain a .mp4 extension! - skipping \n");
|
||||
writeLog($elem . " does not contain a .mp4 extension! - skipping \n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// auto cleanup db entries
|
||||
$query = "SELECT COUNT(*) as count FROM videos";
|
||||
$result = $conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
|
||||
if ($all < $r['count']) {
|
||||
echo "should be in gravity: " . $all . "\n";
|
||||
writeLog("should be in gravity: " . $all . "\n");
|
||||
echo "really in gravity: " . $r['count'] . "\n";
|
||||
writeLog("really in gravity: " . $r['count'] . "\n");
|
||||
echo "cleaning up gravity\n";
|
||||
writeLog("cleaning up gravity\n");
|
||||
|
||||
$query = "SELECT movie_id,movie_url FROM videos";
|
||||
$result = $conn->query($query);
|
||||
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
if (!file_exists("../" . $r['movie_url'])) {
|
||||
$query = "DELETE FROM videos WHERE movie_id='" . $r['movie_id'] . "'";
|
||||
if ($conn->query($query) === TRUE) {
|
||||
echo('successfully deleted ' . $r['movie_url'] . " from video gravity\n");
|
||||
writeLog('successfully deleted ' . $r['movie_url'] . " from video gravity\n");
|
||||
$deleted++;
|
||||
} else {
|
||||
echo "failed to delete " . $r['movie_url'] . " from gravity: " . $conn->error . "\n";
|
||||
writeLog("failed to delete " . $r['movie_url'] . " from gravity: " . $conn->error . "\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// calculate size of databse here
|
||||
$size = -1;
|
||||
$query = "SELECT table_schema AS \"Database\",
|
||||
ROUND(SUM(data_length + index_length) / 1024 / 1024, 3) AS \"Size\"
|
||||
FROM information_schema.TABLES
|
||||
WHERE TABLE_SCHEMA='" . Database::getInstance()->getDatabaseName() . "'
|
||||
GROUP BY table_schema;";
|
||||
$result = $conn->query($query);
|
||||
if ($result->num_rows == 1) {
|
||||
$row = $result->fetch_assoc();
|
||||
$size = $row["Size"];
|
||||
}
|
||||
|
||||
echo "Total gravity: " . $all . "\n";
|
||||
writeLog("Total gravity: " . $all . "\n");
|
||||
echo "Size of Databse is: " . $size . "MB\n";
|
||||
writeLog("Size of Databse is: " . $size . "MB\n");
|
||||
echo "added in this run: " . $added . "\n";
|
||||
writeLog("added in this run: " . $added . "\n");
|
||||
echo "deleted in this run: " . $deleted . "\n";
|
||||
writeLog("deleted in this run: " . $deleted . "\n");
|
||||
echo "errored in this run: " . $failed . "\n";
|
||||
writeLog("errored in this run: " . $failed . "\n");
|
||||
|
||||
writeLog("-42"); // terminating characters to stop webui requesting infos
|
||||
|
||||
/**
|
||||
* get all videoinfos of a video file
|
||||
*
|
||||
* @param $video string name including extension
|
||||
* @return object all infos as object
|
||||
*/
|
||||
function _get_video_attributes($video)
|
||||
{
|
||||
$command = "mediainfo \"../videos/prn/$video\" --Output=JSON";
|
||||
$output = shell_exec($command);
|
||||
return json_decode($output);
|
||||
}
|
||||
|
||||
/**
|
||||
* write a line to the output log file
|
||||
*
|
||||
* @param string $message message to write
|
||||
*/
|
||||
function writeLog(string $message)
|
||||
{
|
||||
file_put_contents("/tmp/output.log", $message, FILE_APPEND);
|
||||
flush();
|
||||
}
|
||||
|
||||
/**
|
||||
* ckecks if tag exists -- if not creates it
|
||||
* @param string $tagname the name of the tag
|
||||
* @return integer the id of the inserted tag
|
||||
*/
|
||||
function tagExists(string $tagname)
|
||||
{
|
||||
global $conn;
|
||||
|
||||
$query = "SELECT * FROM tags WHERE tag_name='$tagname'";
|
||||
|
||||
$result = $conn->query($query);
|
||||
if ($result->num_rows == 0) {
|
||||
// tag does not exist --> create it
|
||||
$query = "INSERT INTO tags (tag_name) VALUES ('$tagname')";
|
||||
if ($conn->query($query) !== TRUE) {
|
||||
echo "failed to create $tagname tag in database\n";
|
||||
writeLog("failed to create $tagname tag in database\n");
|
||||
}
|
||||
return $conn->insert_id;
|
||||
} else {
|
||||
return $result->fetch_assoc()['tag_id'];
|
||||
}
|
||||
}
|
||||
// load video path from settings
|
||||
$scandir = __DIR__ . "/../" . $sett->getVideoPath();
|
||||
$vp->extractVideos($scandir);
|
||||
|
5
api/settings.php
Normal file
5
api/settings.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/src/handlers/Settings.php';
|
||||
|
||||
$sett = new Settings();
|
||||
$sett->handleAction();
|
@ -5,19 +5,17 @@
|
||||
*
|
||||
* Class with all neccessary stuff for the Database connections.
|
||||
*/
|
||||
class Database
|
||||
{
|
||||
private static ?Database $instance = null;
|
||||
private mysqli $conn;
|
||||
class Database {
|
||||
private static $instance = null;
|
||||
private $conn;
|
||||
|
||||
private string $servername = "192.168.0.30";
|
||||
private string $username = "root";
|
||||
private string $password = "1qayxsw2";
|
||||
private string $dbname = "mediacenter";
|
||||
private $servername = "127.0.0.1";
|
||||
private $username = "mediacenteruser";
|
||||
private $password = "mediapassword";
|
||||
private $dbname = "mediacenter";
|
||||
|
||||
// The db connection is established in the private constructor.
|
||||
private function __construct()
|
||||
{
|
||||
private function __construct() {
|
||||
// Create connection
|
||||
$this->conn = new mysqli($this->servername, $this->username, $this->password, $this->dbname);
|
||||
|
||||
@ -32,8 +30,7 @@ class Database
|
||||
*
|
||||
* @return Database dbobject
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
public static function getInstance() {
|
||||
if (!self::$instance) {
|
||||
self::$instance = new Database();
|
||||
}
|
||||
@ -46,8 +43,7 @@ class Database
|
||||
*
|
||||
* @return mysqli mysqli instance
|
||||
*/
|
||||
public function getConnection()
|
||||
{
|
||||
public function getConnection() {
|
||||
return $this->conn;
|
||||
}
|
||||
|
45
api/src/SSettings.php
Normal file
45
api/src/SSettings.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Class SSettings
|
||||
* class handling all Settings used by php scripts
|
||||
*/
|
||||
class SSettings {
|
||||
private $database;
|
||||
|
||||
/**
|
||||
* SSettings constructor.
|
||||
*/
|
||||
public function __construct() {
|
||||
$this->database = Database::getInstance();
|
||||
}
|
||||
|
||||
/**
|
||||
* get the videopath saved in db
|
||||
* @return string videopath
|
||||
*/
|
||||
public function getVideoPath() {
|
||||
$query = "SELECT video_path from settings";
|
||||
|
||||
$result = $this->database->getConnection()->query($query);
|
||||
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
return $r['video_path'];
|
||||
}
|
||||
|
||||
/**
|
||||
* check if TMDB is enableds
|
||||
* @return bool isenabled?
|
||||
*/
|
||||
public function isTMDBGrabbingEnabled(): bool {
|
||||
$query = "SELECT TMDB_grabbing from settings WHERE 1";
|
||||
|
||||
$result = $this->database->getConnection()->query($query);
|
||||
if (!$result) {
|
||||
return true; // if undefined in db --> default true
|
||||
} else {
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
return $r['TMDB_grabbing'] == '1';
|
||||
}
|
||||
}
|
||||
}
|
@ -1,10 +1,13 @@
|
||||
<?php
|
||||
|
||||
class TMDBMovie
|
||||
{
|
||||
/**
|
||||
* Class TMDBMovie
|
||||
* class to handle all interactions with the tmdb api
|
||||
*/
|
||||
class TMDBMovie {
|
||||
public $picturebase = "https://image.tmdb.org/t/p/w500";
|
||||
private $apikey = "9fd90530b11447f5646f8e6fb4733fb4";
|
||||
private $baseurl = "https://api.themoviedb.org/3/";
|
||||
public $picturebase = "https://image.tmdb.org/t/p/w500";
|
||||
|
||||
/**
|
||||
* search for a specific movie
|
||||
@ -12,13 +15,25 @@ class TMDBMovie
|
||||
* @param string $moviename moviename
|
||||
* @return object movie object or null if not found
|
||||
*/
|
||||
public function searchMovie(string $moviename)
|
||||
{
|
||||
public function searchMovie(string $moviename, string $year = null) {
|
||||
$reply = json_decode(file_get_contents($this->baseurl . "search/movie?api_key=" . $this->apikey . "&query=" . urlencode($moviename)));
|
||||
if ($reply->total_results == 0) {
|
||||
// no results found
|
||||
// todo maybe parse first pictures somehow
|
||||
return null;
|
||||
} elseif ($year != null) {
|
||||
// if year is defined check year
|
||||
$regex = '/[0-9]{4}?/'; // matches year of string
|
||||
|
||||
for ($i = 0; $i < count($reply->results); $i++) {
|
||||
$releasedate = $reply->results[$i]->release_date;
|
||||
|
||||
preg_match($regex, $releasedate, $matches);
|
||||
if (count($matches) > 0) {
|
||||
$curryear = $matches[0];
|
||||
if ($curryear == $year)
|
||||
return $reply->results[$i];
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return $reply->results[0];
|
||||
}
|
||||
@ -29,8 +44,7 @@ class TMDBMovie
|
||||
*
|
||||
* @return array of all available genres
|
||||
*/
|
||||
public function getAllGenres()
|
||||
{
|
||||
public function getAllGenres() {
|
||||
$reply = json_decode(file_get_contents($this->baseurl . "genre/movie/list?api_key=" . $this->apikey));
|
||||
return $reply->genres;
|
||||
}
|
332
api/src/VideoParser.php
Normal file
332
api/src/VideoParser.php
Normal file
@ -0,0 +1,332 @@
|
||||
<?php
|
||||
require_once 'Database.php';
|
||||
require_once 'TMDBMovie.php';
|
||||
require_once 'SSettings.php';
|
||||
|
||||
/**
|
||||
* Class VideoParser
|
||||
* handling the parsing of all videos of a folder and adding
|
||||
* all videos with tags and thumbnails to the database
|
||||
*/
|
||||
class VideoParser {
|
||||
/// ffmpeg installation binary
|
||||
private string $ffmpeg = 'ffmpeg';
|
||||
private TMDBMovie $tmdb;
|
||||
/// initial load of all available movie genres
|
||||
private array $tmdbgenres;
|
||||
private string $videopath;
|
||||
|
||||
/// db connection instance
|
||||
private mysqli $conn;
|
||||
|
||||
/// settings object instance
|
||||
private SSettings $settings;
|
||||
|
||||
private bool $TMDBenabled;
|
||||
/// videos added in this run
|
||||
private int $added = 0;
|
||||
/// all videos in this run
|
||||
private int $all = 0;
|
||||
/// failed videos in this run
|
||||
private int $failed = 0;
|
||||
/// deleted videos in this run
|
||||
private int $deleted = 0;
|
||||
|
||||
/**
|
||||
* VideoParser constructor.
|
||||
*/
|
||||
public function __construct() {
|
||||
$this->tmdb = new TMDBMovie();
|
||||
$this->tmdbgenres = $this->tmdb->getAllGenres();
|
||||
$this->conn = Database::getInstance()->getConnection();
|
||||
|
||||
$this->settings = new SSettings();
|
||||
$this->TMDBenabled = $this->settings->isTMDBGrabbingEnabled();
|
||||
$this->videopath = $this->settings->getVideoPath();
|
||||
}
|
||||
|
||||
/**
|
||||
* searches a folder for mp4 videos and adds them to video gravity
|
||||
* @param $foldername string the folder where to search (relative to the webserver root)
|
||||
*/
|
||||
public function extractVideos(string $foldername) {
|
||||
echo("TMDB grabbing is " . ($this->TMDBenabled ? "" : "not") . " enabled \n");
|
||||
$arr = scandir($foldername);
|
||||
|
||||
foreach ($arr as $elem) {
|
||||
if ($elem == '.' || $elem == '..') continue;
|
||||
|
||||
$ext = pathinfo($elem, PATHINFO_EXTENSION);
|
||||
if ($ext == "mp4") {
|
||||
$this->processVideo($elem);
|
||||
} else {
|
||||
echo($elem . " does not contain a valid .mp4 extension! - skipping \n");
|
||||
$this->writeLog($elem . " does not contain a valid .mp4 extension! - skipping \n");
|
||||
}
|
||||
}
|
||||
|
||||
// cleanup gravity
|
||||
$this->cleanUpGravity();
|
||||
|
||||
// calculate size of databse here
|
||||
$size = -1;
|
||||
$query = "SELECT table_schema AS \"Database\",
|
||||
ROUND(SUM(data_length + index_length) / 1024 / 1024, 3) AS \"Size\"
|
||||
FROM information_schema.TABLES
|
||||
WHERE TABLE_SCHEMA='" . Database::getInstance()->getDatabaseName() . "'
|
||||
GROUP BY table_schema;";
|
||||
$result = $this->conn->query($query);
|
||||
if ($result->num_rows == 1) {
|
||||
$row = $result->fetch_assoc();
|
||||
$size = $row["Size"];
|
||||
}
|
||||
|
||||
echo "Total gravity: " . $this->all . "\n";
|
||||
$this->writeLog("Total gravity: " . $this->all . "\n");
|
||||
echo "Size of Databse is: " . $size . "MB\n";
|
||||
$this->writeLog("Size of Databse is: " . $size . "MB\n");
|
||||
echo "added in this run: " . $this->added . "\n";
|
||||
$this->writeLog("added in this run: " . $this->added . "\n");
|
||||
echo "deleted in this run: " . $this->deleted . "\n";
|
||||
$this->writeLog("deleted in this run: " . $this->deleted . "\n");
|
||||
echo "errored in this run: " . $this->failed . "\n";
|
||||
$this->writeLog("errored in this run: " . $this->failed . "\n");
|
||||
|
||||
$this->writeLog("-42"); // terminating characters to stop webui requesting infos
|
||||
}
|
||||
|
||||
/**
|
||||
* processes one mp4 video, extracts tags and adds it to the database
|
||||
* @param $filename string filename of the video to process
|
||||
*/
|
||||
private function processVideo(string $filename) {
|
||||
$moviename = substr($filename, 0, -4);
|
||||
|
||||
$regex = '/\([0-9]{4}?\)/'; //match year pattern
|
||||
preg_match($regex, $moviename, $matches);
|
||||
preg_replace($regex, '', $moviename);
|
||||
$year = null;
|
||||
if (count($matches) > 0) {
|
||||
$year = substr($matches[count($matches) - 1], 1, 4);
|
||||
$moviename = substr($moviename, 0, -6);
|
||||
}
|
||||
|
||||
$query = "SELECT * FROM videos WHERE movie_name = '" . mysqli_real_escape_string($this->conn, $moviename) . "'";
|
||||
$result = $this->conn->query($query);
|
||||
|
||||
// insert if not available in db
|
||||
if (!mysqli_fetch_assoc($result)) {
|
||||
$genres = -1;
|
||||
$insert_query = "";
|
||||
|
||||
// extract other video attributes
|
||||
$video_attributes = $this->_get_video_attributes($filename);
|
||||
$duration = 0;
|
||||
$size = 0;
|
||||
$width = 0;
|
||||
|
||||
if ($video_attributes) {
|
||||
$duration = $video_attributes->media->track[0]->Duration; // in seconds
|
||||
$size = $video_attributes->media->track[0]->FileSize; // in Bytes
|
||||
$width = $video_attributes->media->track[1]->Width; // width
|
||||
}
|
||||
|
||||
// extract poster from video
|
||||
$backpic = shell_exec("$this->ffmpeg -hide_banner -loglevel panic -ss 00:04:00 -i \"../$this->videopath$filename\" -vframes 1 -q:v 2 -f singlejpeg pipe:1 2>/dev/null");
|
||||
// convert video to base64
|
||||
$backpic64 = 'data:image/jpeg;base64,' . base64_encode($backpic);
|
||||
|
||||
// set default insert query without tmdb poster
|
||||
$insert_query = "INSERT INTO videos(movie_name,movie_url,thumbnail,quality,length)
|
||||
VALUES ('" . mysqli_real_escape_string($this->conn, $moviename) . "',
|
||||
'" . mysqli_real_escape_string($this->conn, $this->videopath . $filename) . "',
|
||||
'$backpic64',
|
||||
'$width',
|
||||
'$duration')";
|
||||
|
||||
// check if tmdb grabbing is enabled
|
||||
if ($this->TMDBenabled) {
|
||||
// search in tmdb api
|
||||
if (!is_null($dta = $this->tmdb->searchMovie($moviename, $year))) {
|
||||
$poster = file_get_contents($this->tmdb->picturebase . $dta->poster_path);
|
||||
|
||||
// error handling for download error
|
||||
if ($poster) {
|
||||
$poster_base64 = 'data:image/jpeg;base64,' . base64_encode($poster);
|
||||
|
||||
// override insert query if pic loaded correctly
|
||||
$insert_query = "INSERT INTO videos(movie_name,movie_url,poster,thumbnail,quality,length)
|
||||
VALUES ('" . mysqli_real_escape_string($this->conn, $moviename) . "',
|
||||
'" . mysqli_real_escape_string($this->conn, $this->videopath . $filename) . "',
|
||||
'$backpic64',
|
||||
'$poster_base64',
|
||||
'$width',
|
||||
'$duration')";
|
||||
}
|
||||
// store genre ids for parsing later
|
||||
$genres = $dta->genre_ids;
|
||||
} else {
|
||||
// nothing found with tmdb
|
||||
echo "my moviename: " . $moviename;
|
||||
$this->writeLog("nothing found with TMDB! -- $moviename\n");
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->conn->query($insert_query) === TRUE) {
|
||||
echo('successfully added ' . $filename . " to video gravity\n");
|
||||
$this->writeLog('successfully added ' . $filename . " to video gravity\n");
|
||||
|
||||
// add this entry to the default tags
|
||||
$last_id = $this->conn->insert_id;
|
||||
|
||||
$this->insertSizeTag($width, $last_id);
|
||||
|
||||
// handle tmdb genres here!
|
||||
if ($genres != -1) {
|
||||
// transform genre ids in valid names
|
||||
foreach ($genres as $genreid) {
|
||||
// check if genre is already a tag in db if not insert it
|
||||
$tagname = array_column($this->tmdbgenres, 'name', 'id')[$genreid];
|
||||
$tagid = $this->tagExists($tagname);
|
||||
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($last_id,$tagid)";
|
||||
if ($this->conn->query($query) !== TRUE) {
|
||||
echo "failed to add $genreid tag here.\n";
|
||||
$this->writeLog("failed to add $genreid tag here.\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$this->added++;
|
||||
$this->all++;
|
||||
} else {
|
||||
echo('errored item: ' . $filename . "\n");
|
||||
$this->writeLog('errored item: ' . $filename . "\n");
|
||||
echo('{"data":"' . $this->conn->error . '"}\n');
|
||||
$this->writeLog('{"data":"' . $this->conn->error . '"}\n');
|
||||
$this->failed++;
|
||||
}
|
||||
} else {
|
||||
$this->all++;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* get all videoinfos of a video file
|
||||
*
|
||||
* @param $video string name including extension
|
||||
* @return object all infos as object
|
||||
*/
|
||||
private function _get_video_attributes(string $video) {
|
||||
$command = "mediainfo \"../$this->videopath$video\" --Output=JSON";
|
||||
$output = shell_exec($command);
|
||||
return json_decode($output);
|
||||
}
|
||||
|
||||
/**
|
||||
* write a line to the output log file
|
||||
*
|
||||
* @param string $message message to write
|
||||
*/
|
||||
public function writeLog(string $message) {
|
||||
file_put_contents("/tmp/output.log", $message, FILE_APPEND);
|
||||
flush();
|
||||
}
|
||||
|
||||
/**
|
||||
* insert the corresponding videosize tag to a specific videoid
|
||||
* @param $width int video width
|
||||
* @param $videoid int id of video
|
||||
*/
|
||||
private function insertSizeTag(int $width, int $videoid) {
|
||||
// full hd
|
||||
if ($width >= 1900) {
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($videoid,2)";
|
||||
if ($this->conn->query($query) !== TRUE) {
|
||||
echo "failed to add default tag here.\n";
|
||||
$this->writeLog("failed to add default tag here.\n");
|
||||
}
|
||||
}
|
||||
|
||||
// HD
|
||||
if ($width >= 1250 && $width < 1900) {
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($videoid,4)";
|
||||
if ($this->conn->query($query) !== TRUE) {
|
||||
echo "failed to add default tag here.\n";
|
||||
$this->writeLog("failed to add default tag here.\n");
|
||||
}
|
||||
}
|
||||
|
||||
// SD
|
||||
if ($width < 1250 && $width > 0) {
|
||||
$query = "INSERT INTO video_tags(video_id,tag_id) VALUES ($videoid,3)";
|
||||
if ($this->conn->query($query) !== TRUE) {
|
||||
echo "failed to add default tag here.\n";
|
||||
$this->writeLog("failed to add default tag here.\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ckecks if tag exists -- if not creates it
|
||||
* @param string $tagname the name of the tag
|
||||
* @return integer the id of the inserted tag
|
||||
*/
|
||||
private function tagExists(string $tagname) {
|
||||
$query = "SELECT * FROM tags WHERE tag_name='$tagname'";
|
||||
|
||||
$result = $this->conn->query($query);
|
||||
if ($result->num_rows == 0) {
|
||||
// tag does not exist --> create it
|
||||
$query = "INSERT INTO tags (tag_name) VALUES ('$tagname')";
|
||||
if ($this->conn->query($query) !== TRUE) {
|
||||
echo "failed to create $tagname tag in database\n";
|
||||
$this->writeLog("failed to create $tagname tag in database\n");
|
||||
}
|
||||
return $this->conn->insert_id;
|
||||
} else {
|
||||
return $result->fetch_assoc()['tag_id'];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* cleans up the video gravity and removes non existent videos
|
||||
*/
|
||||
public function cleanUpGravity() {
|
||||
// auto cleanup db entries
|
||||
$query = "SELECT COUNT(*) as count FROM videos";
|
||||
$result = $this->conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
|
||||
if ($this->all < $r['count']) {
|
||||
echo "\n\nshould be in gravity: " . $this->all . "\n";
|
||||
$this->writeLog("should be in gravity: " . $this->all . "\n");
|
||||
echo "really in gravity: " . $r['count'] . "\n";
|
||||
$this->writeLog("really in gravity: " . $r['count'] . "\n");
|
||||
echo "cleaning up gravity\n";
|
||||
$this->writeLog("cleaning up gravity\n");
|
||||
|
||||
$query = "SELECT movie_id,movie_url FROM videos";
|
||||
$result = $this->conn->query($query);
|
||||
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
$movie_id = $r['movie_id'];
|
||||
$url = $r['movie_url'];
|
||||
|
||||
// todo ORDER BY movie_url and erase duplicates also
|
||||
if (!file_exists("../$url")) {
|
||||
$query = "DELETE FROM videos WHERE movie_id=$movie_id";
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
echo("successfully deleted $url from video gravity\n");
|
||||
$this->writeLog("successfully deleted $url from video gravity\n");
|
||||
$this->deleted++;
|
||||
} else {
|
||||
echo "failed to delete $url from gravity: $this->conn->error \n";
|
||||
$this->writeLog("failed to delete $url from gravity: $this->conn->error \n");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
75
api/src/handlers/Actor.php
Normal file
75
api/src/handlers/Actor.php
Normal file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/../SSettings.php';
|
||||
require_once 'RequestBase.php';
|
||||
|
||||
class Actor extends RequestBase {
|
||||
|
||||
function initHandlers() {
|
||||
$this->databaseAdds();
|
||||
$this->databaseRequests();
|
||||
}
|
||||
|
||||
function databaseAdds() {
|
||||
$this->addActionHandler("createActor", function () {
|
||||
// skip tag create if already existing
|
||||
$actorname = $_POST["actorname"];
|
||||
|
||||
$query = "INSERT IGNORE INTO actors (name) VALUES ('$actorname')";
|
||||
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
$this->commitMessage('{"result":"success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result":"' . $this->conn->error . '"}');
|
||||
}
|
||||
});
|
||||
|
||||
$this->addActionHandler("addActorToVideo", function () {
|
||||
// skip tag create if already existing
|
||||
$actorid = $_POST["actorid"];
|
||||
$videoid = $_POST["videoid"];
|
||||
|
||||
$query = "INSERT IGNORE INTO actors_videos (actor_id, video_id) VALUES ($actorid,$videoid)";
|
||||
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
$this->commitMessage('{"result":"success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result":"' . $this->conn->error . '"}');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function databaseRequests() {
|
||||
$this->addActionHandler("getAllActors", function () {
|
||||
// query the actors corresponding to video
|
||||
$query = "SELECT * FROM actors";
|
||||
$result = $this->conn->query($query);
|
||||
$this->commitMessage(json_encode(mysqli_fetch_all($result, MYSQLI_ASSOC)));
|
||||
});
|
||||
|
||||
$this->addActionHandler("getActorsOfVideo", function () {
|
||||
// query the actors corresponding to video
|
||||
$video_id = $_POST["videoid"];
|
||||
|
||||
$query = "SELECT a.actor_id, name, thumbnail FROM actors_videos
|
||||
JOIN actors a on actors_videos.actor_id = a.actor_id
|
||||
WHERE actors_videos.video_id=$video_id";
|
||||
$result = $this->conn->query($query);
|
||||
$this->commitMessage(json_encode(mysqli_fetch_all($result, MYSQLI_ASSOC)));
|
||||
});
|
||||
|
||||
$this->addActionHandler("getActorInfo", function (){
|
||||
$actorid = $_POST["actorid"];
|
||||
|
||||
$query = "SELECT movie_id, movie_name FROM actors_videos
|
||||
JOIN videos v on v.movie_id = actors_videos.video_id
|
||||
WHERE actors_videos.actor_id=$actorid";
|
||||
$result = $this->conn->query($query);
|
||||
|
||||
$actorinfo = $this->conn->query("SELECT name, thumbnail, actor_id FROM actors WHERE actor_id=$actorid");
|
||||
|
||||
$reply = array("videos" => mysqli_fetch_all($result, MYSQLI_ASSOC), "info" => mysqli_fetch_assoc($actorinfo));
|
||||
|
||||
$this->commitMessage(json_encode($reply));
|
||||
});
|
||||
}
|
||||
}
|
50
api/src/handlers/RequestBase.php
Normal file
50
api/src/handlers/RequestBase.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/../Database.php';
|
||||
|
||||
abstract class RequestBase {
|
||||
protected $conn;
|
||||
private $actions = array();
|
||||
|
||||
/**
|
||||
* adds a new action handler to the current api file
|
||||
*
|
||||
* @param $action string name of the action variable
|
||||
* @param $callback Closure callback function to be called
|
||||
*/
|
||||
function addActionHandler($action, $callback) {
|
||||
$this->actions[$action] = $callback;
|
||||
}
|
||||
|
||||
/**
|
||||
* runs the correct handler
|
||||
* should be called once within the api request
|
||||
*/
|
||||
function handleAction() {
|
||||
$this->conn = Database::getInstance()->getConnection();
|
||||
|
||||
if (isset($_POST['action'])) {
|
||||
$this->initHandlers();
|
||||
|
||||
$action = $_POST['action'];
|
||||
|
||||
// call the right handler
|
||||
$this->actions[$action]();
|
||||
} else {
|
||||
$this->commitMessage('{"data": "error"}');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* add the action handlers in this abstract method
|
||||
*/
|
||||
abstract function initHandlers();
|
||||
|
||||
/**
|
||||
* Send response message and exit script
|
||||
* @param $message string the response message
|
||||
*/
|
||||
function commitMessage($message) {
|
||||
echo $message;
|
||||
exit(0);
|
||||
}
|
||||
}
|
160
api/src/handlers/Settings.php
Normal file
160
api/src/handlers/Settings.php
Normal file
@ -0,0 +1,160 @@
|
||||
<?php
|
||||
require_once 'RequestBase.php';
|
||||
require_once __DIR__ . '/../VideoParser.php';
|
||||
|
||||
/**
|
||||
* Class Settings
|
||||
* Backend for the Settings page
|
||||
*/
|
||||
class Settings extends RequestBase {
|
||||
function initHandlers() {
|
||||
$this->getFromDB();
|
||||
$this->saveToDB();
|
||||
$this->reIndexHandling();
|
||||
}
|
||||
|
||||
/**
|
||||
* handle settings stuff to load from db
|
||||
*/
|
||||
private function getFromDB() {
|
||||
/**
|
||||
* load currently set settings form db for init of settings page
|
||||
*/
|
||||
$this->addActionHandler("loadGeneralSettings", function () {
|
||||
// query settings and infotile values
|
||||
$query = "
|
||||
SELECT (
|
||||
SELECT COUNT(*)
|
||||
FROM videos
|
||||
) AS videonr,
|
||||
(
|
||||
SELECT ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS Size
|
||||
FROM information_schema.TABLES
|
||||
WHERE TABLE_SCHEMA = '" . Database::getInstance()->getDatabaseName() . "'
|
||||
GROUP BY table_schema
|
||||
) AS dbsize,
|
||||
(
|
||||
SELECT COUNT(*)
|
||||
FROM tags
|
||||
) AS difftagnr,
|
||||
(
|
||||
SELECT COUNT(*)
|
||||
FROM video_tags
|
||||
) AS tagsadded,
|
||||
settings.*
|
||||
FROM settings
|
||||
LIMIT 1
|
||||
";
|
||||
|
||||
$result = $this->conn->query($query);
|
||||
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
// booleans need to be set manually
|
||||
$r['passwordEnabled'] = $r['password'] != "-1";
|
||||
$r['TMDB_grabbing'] = ($r['TMDB_grabbing'] != '0');
|
||||
|
||||
echo json_encode($r);
|
||||
});
|
||||
|
||||
/**
|
||||
* load initial data for home page load to check if pwd is set
|
||||
*/
|
||||
$this->addActionHandler("loadInitialData", function () {
|
||||
$query = "SELECT * from settings";
|
||||
|
||||
$result = $this->conn->query($query);
|
||||
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
|
||||
$r['passwordEnabled'] = $r['password'] != "-1";
|
||||
unset($r['password']);
|
||||
$r['DarkMode'] = (bool)($r['DarkMode'] != '0');
|
||||
$this->commitMessage(json_encode($r));
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* handle setting stuff to save to db
|
||||
*/
|
||||
private function saveToDB() {
|
||||
/**
|
||||
* save changed settings to db
|
||||
*/
|
||||
$this->addActionHandler("saveGeneralSettings", function () {
|
||||
$mediacentername = $_POST['mediacentername'];
|
||||
$password = $_POST['password'];
|
||||
$videopath = $_POST['videopath'];
|
||||
$tvshowpath = $_POST['tvshowpath'];
|
||||
$tmdbsupport = $_POST['tmdbsupport'];
|
||||
$darkmodeenabled = $_POST['darkmodeenabled'];
|
||||
|
||||
$query = "UPDATE settings SET
|
||||
video_path='$videopath',
|
||||
episode_path='$tvshowpath',
|
||||
password='$password',
|
||||
mediacenter_name='$mediacentername',
|
||||
TMDB_grabbing=$tmdbsupport,
|
||||
DarkMode=$darkmodeenabled
|
||||
WHERE 1";
|
||||
|
||||
if ($this->conn->query($query) === true) {
|
||||
$this->commitMessage('{"result": "success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result": "success"}');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* methods for handling reindexing and cleanup of db gravity
|
||||
*/
|
||||
private function reIndexHandling() {
|
||||
$this->addActionHandler("startReindex", function () {
|
||||
$indexrunning = false;
|
||||
if (file_exists("/tmp/output.log")) {
|
||||
|
||||
$out = file_get_contents("/tmp/output.log");
|
||||
if (substr($out, -strlen("-42")) == "-42") {
|
||||
unlink("/tmp/output.log");
|
||||
} else {
|
||||
$indexrunning = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$indexrunning) {
|
||||
// start extraction of video previews in background
|
||||
|
||||
$cmd = 'php extractvideopreviews.php';
|
||||
exec(sprintf("%s > %s 2>&1 & echo $! >> %s", $cmd, '/dev/zero', '/tmp/openmediacenterpid'));
|
||||
|
||||
$this->commitMessage('{"result": "success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result": "success"}');
|
||||
}
|
||||
});
|
||||
|
||||
$this->addActionHandler("cleanupGravity", function () {
|
||||
$vp = new VideoParser();
|
||||
$vp->cleanUpGravity();
|
||||
});
|
||||
|
||||
$this->addActionHandler("getStatusMessage", function () {
|
||||
$return = new stdClass();
|
||||
if (file_exists("/tmp/output.log")) {
|
||||
$out = file_get_contents("/tmp/output.log");
|
||||
// clear log file
|
||||
file_put_contents("/tmp/output.log", "");
|
||||
$return->message = $out;
|
||||
$return->contentAvailable = true;
|
||||
|
||||
if (substr($out, -strlen("-42")) == "-42") {
|
||||
unlink("/tmp/output.log");
|
||||
}
|
||||
} else {
|
||||
$return->contentAvailable = false;
|
||||
}
|
||||
|
||||
$this->commitMessage(json_encode($return));
|
||||
});
|
||||
}
|
||||
}
|
101
api/src/handlers/Tags.php
Normal file
101
api/src/handlers/Tags.php
Normal file
@ -0,0 +1,101 @@
|
||||
<?php
|
||||
require_once 'RequestBase.php';
|
||||
|
||||
/**
|
||||
* Class Tags
|
||||
* backend to handle Tag database interactions
|
||||
*/
|
||||
class Tags extends RequestBase {
|
||||
function initHandlers() {
|
||||
$this->addToDB();
|
||||
$this->getFromDB();
|
||||
$this->delete();
|
||||
}
|
||||
|
||||
private function addToDB() {
|
||||
/**
|
||||
* creates a new tag
|
||||
* query requirements:
|
||||
* * tagname -- name of the new tag
|
||||
*/
|
||||
$this->addActionHandler("createTag", function () {
|
||||
// skip tag create if already existing
|
||||
$query = "INSERT IGNORE INTO tags (tag_name) VALUES ('" . $_POST['tagname'] . "')";
|
||||
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
$this->commitMessage('{"result":"success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result":"' . $this->conn->error . '"}');
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* adds a new tag to an existing video
|
||||
*
|
||||
* query requirements:
|
||||
* * movieid -- the id of the video to add the tag to
|
||||
* * id -- the tag id which tag to add
|
||||
*/
|
||||
$this->addActionHandler("addTag", function () {
|
||||
$movieid = $_POST['movieid'];
|
||||
$tagid = $_POST['id'];
|
||||
|
||||
// skip tag add if already assigned
|
||||
$query = "INSERT IGNORE INTO video_tags(tag_id, video_id) VALUES ('$tagid','$movieid')";
|
||||
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
$this->commitMessage('{"result":"success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result":"' . $this->conn->error . '"}');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private function getFromDB() {
|
||||
/**
|
||||
* returns all available tags from database
|
||||
*/
|
||||
$this->addActionHandler("getAllTags", function () {
|
||||
$query = "SELECT tag_name,tag_id from tags";
|
||||
$result = $this->conn->query($query);
|
||||
|
||||
$rows = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows, $r);
|
||||
}
|
||||
$this->commitMessage(json_encode($rows));
|
||||
});
|
||||
}
|
||||
|
||||
private function delete() {
|
||||
/**
|
||||
* delete a Tag with specified id
|
||||
*/
|
||||
$this->addActionHandler("deleteTag", function () {
|
||||
$tag_id = $_POST['tagId'];
|
||||
$force = $_POST['force'];
|
||||
|
||||
// delete key constraints first
|
||||
if ($force === "true") {
|
||||
$query = "DELETE FROM video_tags WHERE tag_id=$tag_id";
|
||||
|
||||
if ($this->conn->query($query) !== TRUE) {
|
||||
$this->commitMessage('{"result":"' . $this->conn->error . '"}');
|
||||
}
|
||||
}
|
||||
|
||||
$query = "DELETE FROM tags WHERE tag_id=$tag_id";
|
||||
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
$this->commitMessage('{"result":"success"}');
|
||||
} else {
|
||||
// check if error is a constraint error
|
||||
if (preg_match('/^.*a foreign key constraint fails.*$/i', $this->conn->error)) {
|
||||
$this->commitMessage('{"result":"not empty tag"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result":"' . $this->conn->eror . '"}');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
245
api/src/handlers/Video.php
Executable file
245
api/src/handlers/Video.php
Executable file
@ -0,0 +1,245 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/../SSettings.php';
|
||||
require_once 'RequestBase.php';
|
||||
|
||||
/**
|
||||
* Class Video
|
||||
* backend for all interactions with videoloads and receiving of video infos
|
||||
*/
|
||||
class Video extends RequestBase {
|
||||
private $videopath;
|
||||
|
||||
public function __construct() {
|
||||
$settings = new SSettings();
|
||||
// load video path from settings
|
||||
$this->videopath = $settings->getVideoPath();
|
||||
}
|
||||
|
||||
function initHandlers() {
|
||||
$this->getVideos();
|
||||
$this->loadVideos();
|
||||
$this->addToVideo();
|
||||
}
|
||||
|
||||
/**
|
||||
* function handles load of all videos and search for videos
|
||||
*/
|
||||
private function getVideos() {
|
||||
$this->addActionHandler("getMovies", function () {
|
||||
$query = "SELECT movie_id,movie_name FROM videos ORDER BY create_date DESC, movie_name";
|
||||
if (isset($_POST['tag'])) {
|
||||
$tag = $_POST['tag'];
|
||||
// if not all tags allowed filter for specific one
|
||||
if (strtolower($_POST['tag']) != "all") {
|
||||
$query = "SELECT movie_id,movie_name FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_id = '$tag'
|
||||
ORDER BY likes DESC, create_date, movie_name";
|
||||
}
|
||||
}
|
||||
$result = $this->conn->query($query);
|
||||
$rows = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows, $r);
|
||||
}
|
||||
|
||||
$this->commitMessage(json_encode($rows));
|
||||
});
|
||||
|
||||
$this->addActionHandler("getRandomMovies", function () {
|
||||
$return = new stdClass();
|
||||
$query = "SELECT movie_id,movie_name FROM videos ORDER BY RAND() LIMIT " . $_POST['number'];
|
||||
$result = $this->conn->query($query);
|
||||
$return->rows = array();
|
||||
|
||||
// get tags of random videos
|
||||
$ids = [];
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($return->rows, $r);
|
||||
array_push($ids, "video_tags.video_id=" . $r['movie_id']);
|
||||
}
|
||||
|
||||
$idstring = implode(" OR ", $ids);
|
||||
|
||||
$return->tags = array();
|
||||
$query = "SELECT t.tag_name,t.tag_id FROM video_tags
|
||||
INNER JOIN tags t on video_tags.tag_id = t.tag_id
|
||||
WHERE $idstring
|
||||
GROUP BY t.tag_id";
|
||||
$result = $this->conn->query($query);
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($return->tags, array('tag_name' => $r['tag_name'], 'tag_id' => $r['tag_id']));
|
||||
}
|
||||
|
||||
$this->commitMessage(json_encode($return));
|
||||
});
|
||||
|
||||
$this->addActionHandler("getSearchKeyWord", function () {
|
||||
$search = $_POST['keyword'];
|
||||
|
||||
$query = "SELECT movie_id,movie_name FROM videos
|
||||
WHERE movie_name LIKE '%$search%'
|
||||
ORDER BY likes DESC, create_date DESC, movie_name";
|
||||
$result = $this->conn->query($query);
|
||||
$rows = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows, $r);
|
||||
}
|
||||
|
||||
$this->commitMessage(json_encode($rows));
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* function to handle stuff for loading specific videos and startdata
|
||||
*/
|
||||
private function loadVideos() {
|
||||
$this->addActionHandler("loadVideo", function () {
|
||||
$video_id = $_POST['movieid'];
|
||||
|
||||
// todo join with actor db and add actors of movieid
|
||||
$query = " SELECT movie_name,movie_id,movie_url,thumbnail,poster,likes,quality,length
|
||||
FROM videos WHERE movie_id=$video_id";
|
||||
|
||||
$result = $this->conn->query($query);
|
||||
$row = $result->fetch_assoc();
|
||||
|
||||
$arr = array();
|
||||
if ($row["poster"] == null) {
|
||||
$arr["thumbnail"] = $row["thumbnail"];
|
||||
} else {
|
||||
$arr["thumbnail"] = $row["poster"];
|
||||
}
|
||||
|
||||
$arr["movie_id"] = $row["movie_id"];
|
||||
$arr["movie_name"] = $row["movie_name"];
|
||||
// todo drop video url from db -- maybe one with and one without extension
|
||||
// extension hardcoded here!!!
|
||||
$arr["movie_url"] = str_replace("?", "%3F", $this->videopath . $row["movie_name"] . ".mp4");
|
||||
$arr["likes"] = (int)$row["likes"];
|
||||
$arr["quality"] = $row["quality"];
|
||||
$arr["length"] = $row["length"];
|
||||
|
||||
// load tags of this video
|
||||
$arr['tags'] = array();
|
||||
$query = "SELECT t.tag_name, t.tag_id FROM video_tags
|
||||
INNER JOIN tags t on video_tags.tag_id = t.tag_id
|
||||
WHERE video_tags.video_id=$video_id
|
||||
GROUP BY t.tag_id";
|
||||
$result = $this->conn->query($query);
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($arr['tags'], $r);
|
||||
}
|
||||
|
||||
// get the random predict tags
|
||||
$arr['suggesttag'] = array();
|
||||
// select 5 random tags which are not selected for current video
|
||||
$query = "SELECT * FROM tags
|
||||
WHERE tag_id NOT IN (
|
||||
SELECT video_tags.tag_id FROM video_tags
|
||||
WHERE video_id=$video_id)
|
||||
ORDER BY rand()
|
||||
LIMIT 5";
|
||||
$result = $this->conn->query($query);
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($arr['suggesttag'], $r);
|
||||
}
|
||||
|
||||
// query the actors corresponding to video
|
||||
$query = "SELECT a.actor_id, name, thumbnail FROM actors_videos
|
||||
JOIN actors a on actors_videos.actor_id = a.actor_id
|
||||
WHERE actors_videos.video_id=$video_id";
|
||||
$result = $this->conn->query($query);
|
||||
$arr['actors'] = mysqli_fetch_all($result, MYSQLI_ASSOC);
|
||||
|
||||
$this->commitMessage(json_encode($arr));
|
||||
});
|
||||
|
||||
$this->addActionHandler("readThumbnail", function () {
|
||||
$query = "SELECT thumbnail FROM videos WHERE movie_id='" . $_POST['movieid'] . "'";
|
||||
|
||||
$result = $this->conn->query($query);
|
||||
$row = $result->fetch_assoc();
|
||||
|
||||
$this->commitMessage($row["thumbnail"]);
|
||||
});
|
||||
|
||||
$this->addActionHandler("getStartData", function () {
|
||||
$query = "SELECT COUNT(*) as nr FROM videos";
|
||||
$result = $this->conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
|
||||
$arr = array();
|
||||
$arr['total'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id";
|
||||
$result = $this->conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['tagged'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_name='hd'";
|
||||
$result = $this->conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['hd'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_name='fullhd'";
|
||||
$result = $this->conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['fullhd'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_name='lowquality'";
|
||||
$result = $this->conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['sd'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM tags";
|
||||
$result = $this->conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['tags'] = $r['nr'];
|
||||
|
||||
$this->commitMessage(json_encode($arr));
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* function to handle api handlers for stuff to add to video or database
|
||||
*/
|
||||
private function addToVideo() {
|
||||
$this->addActionHandler("addLike", function () {
|
||||
$movieid = $_POST['movieid'];
|
||||
|
||||
$query = "update videos set likes = likes + 1 where movie_id = '$movieid'";
|
||||
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
$this->commitMessage('{"result":"success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result":"' . $this->conn->error . '"}');
|
||||
}
|
||||
});
|
||||
|
||||
$this->addActionHandler("deleteVideo", function () {
|
||||
$movieid = $_POST['movieid'];
|
||||
|
||||
// delete video entry and corresponding tag infos
|
||||
$query = "DELETE FROM videos WHERE movie_id=$movieid";
|
||||
|
||||
if ($this->conn->query($query) === TRUE) {
|
||||
$this->commitMessage('{"result":"success"}');
|
||||
} else {
|
||||
$this->commitMessage('{"result":"' . $this->conn->error . '"}');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
5
api/tags.php
Normal file
5
api/tags.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include_once __DIR__ . '/src/handlers/Tags.php';
|
||||
|
||||
$tags = new Tags();
|
||||
$tags->handleAction();
|
5
api/video.php
Normal file
5
api/video.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include_once __DIR__ . '/src/handlers/Video.php';
|
||||
|
||||
$video = new Video();
|
||||
$video->handleAction();
|
@ -1,232 +0,0 @@
|
||||
<?php
|
||||
require 'Database.php';
|
||||
|
||||
$conn = Database::getInstance()->getConnection();
|
||||
|
||||
//$_POST['action'] = "getRandomMovies";$_POST['number'] =6;
|
||||
if (isset($_POST['action'])) {
|
||||
$action = $_POST['action'];
|
||||
switch ($action) {
|
||||
case "getMovies":
|
||||
$query = "SELECT movie_id,movie_name FROM videos ORDER BY likes DESC, create_date DESC, movie_name ASC";
|
||||
if (isset($_POST['tag'])) {
|
||||
$tag = $_POST['tag'];
|
||||
if ($_POST['tag'] != "all") {
|
||||
$query = "SELECT movie_id,movie_name FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_name = '$tag'
|
||||
ORDER BY likes DESC, create_date ASC, movie_name ASC";
|
||||
}
|
||||
}
|
||||
$result = $conn->query($query);
|
||||
$rows = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows, $r);
|
||||
}
|
||||
|
||||
echo(json_encode($rows));
|
||||
break;
|
||||
case "getRandomMovies":
|
||||
$return = new stdClass();
|
||||
$query = "SELECT movie_id,movie_name FROM videos ORDER BY RAND() LIMIT " . $_POST['number'];
|
||||
$result = $conn->query($query);
|
||||
$return->rows = array();
|
||||
|
||||
// get tags of random videos
|
||||
$ids = [];
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($return->rows, $r);
|
||||
array_push($ids, "video_tags.video_id=" . $r['movie_id']);
|
||||
}
|
||||
|
||||
$idstring = implode(" OR ", $ids);
|
||||
|
||||
$return->tags = array();
|
||||
$query = "SELECT t.tag_name FROM video_tags
|
||||
INNER JOIN tags t on video_tags.tag_id = t.tag_id
|
||||
WHERE $idstring
|
||||
GROUP BY t.tag_name";
|
||||
$result = $conn->query($query);
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($return->tags, $r);
|
||||
}
|
||||
|
||||
echo(json_encode($return));
|
||||
break;
|
||||
case "getSearchKeyWord":
|
||||
$search = $_POST['keyword'];
|
||||
|
||||
$query = "SELECT movie_id,movie_name FROM videos
|
||||
WHERE movie_name LIKE '%$search%'
|
||||
ORDER BY likes DESC, create_date DESC, movie_name ASC";
|
||||
$result = $conn->query($query);
|
||||
$rows = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows, $r);
|
||||
}
|
||||
|
||||
echo(json_encode($rows));
|
||||
|
||||
break;
|
||||
case "loadVideo":
|
||||
$query = "SELECT movie_name,movie_id,movie_url,thumbnail,poster,likes,quality,length FROM videos WHERE movie_id='" . $_POST['movieid'] . "'";
|
||||
|
||||
$result = $conn->query($query);
|
||||
$row = $result->fetch_assoc();
|
||||
|
||||
$arr = array();
|
||||
if ($row["poster"] == null) {
|
||||
$arr["thumbnail"] = $row["thumbnail"];
|
||||
} else {
|
||||
$arr["thumbnail"] = $row["poster"];
|
||||
}
|
||||
|
||||
$arr["movie_id"] = $row["movie_id"];
|
||||
$arr["movie_name"] = $row["movie_name"];
|
||||
$arr["movie_url"] = str_replace("?","%3F",$row["movie_url"]);
|
||||
$arr["likes"] = $row["likes"];
|
||||
$arr["quality"] = $row["quality"];
|
||||
$arr["length"] = $row["length"];
|
||||
|
||||
// load tags of this video
|
||||
$arr['tags'] = array();
|
||||
$query = "SELECT t.tag_name FROM video_tags
|
||||
INNER JOIN tags t on video_tags.tag_id = t.tag_id
|
||||
WHERE video_tags.video_id=" . $_POST['movieid'] . "
|
||||
GROUP BY t.tag_name";
|
||||
$result = $conn->query($query);
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($arr['tags'], $r);
|
||||
}
|
||||
|
||||
echo(json_encode($arr));
|
||||
|
||||
break;
|
||||
case "getDbSize":
|
||||
$query = "SELECT table_schema AS \"Database\",
|
||||
ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS \"Size\"
|
||||
FROM information_schema.TABLES
|
||||
WHERE TABLE_SCHEMA='hub'
|
||||
GROUP BY table_schema;";
|
||||
$result = $conn->query($query);
|
||||
|
||||
if ($result->num_rows == 1) {
|
||||
$row = $result->fetch_assoc();
|
||||
echo '{"data":"' . $row["Size"] . 'MB"}';
|
||||
}
|
||||
|
||||
break;
|
||||
case "readThumbnail":
|
||||
$query = "SELECT thumbnail FROM videos WHERE movie_id='" . $_POST['movieid'] . "'";
|
||||
|
||||
$result = $conn->query($query);
|
||||
$row = $result->fetch_assoc();
|
||||
|
||||
echo($row["thumbnail"]);
|
||||
|
||||
break;
|
||||
case "getTags":
|
||||
// todo add this to loadVideo maybe
|
||||
$movieid = $_POST['movieid'];
|
||||
|
||||
$query = "SELECT tag_name FROM video_tags
|
||||
INNER JOIN tags t on video_tags.tag_id = t.tag_id
|
||||
WHERE video_id='$movieid'";
|
||||
|
||||
$result = $conn->query($query);
|
||||
|
||||
$rows = array();
|
||||
$rows['tags'] = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows['tags'], $r['tag_name']);
|
||||
}
|
||||
|
||||
echo(json_encode($rows));
|
||||
break;
|
||||
case "addLike":
|
||||
$movieid = $_POST['movieid'];
|
||||
|
||||
$query = "update videos set likes = likes + 1 where movie_id = '$movieid'";
|
||||
|
||||
if ($conn->query($query) === TRUE) {
|
||||
echo('{"result":"success"}');
|
||||
} else {
|
||||
echo('{"result":"' . $conn->error . '"}');
|
||||
}
|
||||
break;
|
||||
case "getStartData":
|
||||
$query = "SELECT COUNT(*) as nr FROM videos";
|
||||
$result = $conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
|
||||
$arr = array();
|
||||
$arr['total'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id";
|
||||
$result = $conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['tagged'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_name='hd'";
|
||||
$result = $conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['hd'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_name='fullhd'";
|
||||
$result = $conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['fullhd'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM videos
|
||||
INNER JOIN video_tags vt on videos.movie_id = vt.video_id
|
||||
INNER JOIN tags t on vt.tag_id = t.tag_id
|
||||
WHERE t.tag_name='lowquality'";
|
||||
$result = $conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['sd'] = $r['nr'];
|
||||
|
||||
$query = "SELECT COUNT(*) as nr FROM tags";
|
||||
$result = $conn->query($query);
|
||||
$r = mysqli_fetch_assoc($result);
|
||||
$arr['tags'] = $r['nr'];
|
||||
|
||||
echo(json_encode($arr));
|
||||
break;
|
||||
|
||||
case "getAllTags":
|
||||
$query = "SELECT tag_name,tag_id from tags";
|
||||
$result = $conn->query($query);
|
||||
|
||||
$rows = array();
|
||||
while ($r = mysqli_fetch_assoc($result)) {
|
||||
array_push($rows, $r);
|
||||
}
|
||||
echo(json_encode($rows));
|
||||
break;
|
||||
case "addTag":
|
||||
$movieid = $_POST['movieid'];
|
||||
$tagid = $_POST['id'];
|
||||
|
||||
$query = "INSERT INTO video_tags(tag_id, video_id) VALUES ('$tagid','$movieid')";
|
||||
|
||||
if ($conn->query($query) === TRUE) {
|
||||
echo('{"result":"success"}');
|
||||
} else {
|
||||
echo('{"result":"' . $conn->error . '"}');
|
||||
}
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
echo('{data:"error"}');
|
||||
}
|
||||
return;
|
||||
|
50
database.sql
50
database.sql
@ -1,3 +1,22 @@
|
||||
create table if not exists actors
|
||||
(
|
||||
actor_id int auto_increment
|
||||
primary key,
|
||||
name varchar(50) null,
|
||||
thumbnail mediumblob null
|
||||
)
|
||||
comment 'informations about different actors';
|
||||
|
||||
create table if not exists settings
|
||||
(
|
||||
video_path varchar(255) null,
|
||||
episode_path varchar(255) null,
|
||||
password varchar(32) null,
|
||||
mediacenter_name varchar(32) null,
|
||||
TMDB_grabbing tinyint null,
|
||||
DarkMode tinyint default 0 null
|
||||
);
|
||||
|
||||
create table if not exists tags
|
||||
(
|
||||
tag_id int auto_increment
|
||||
@ -12,13 +31,29 @@ create table if not exists videos
|
||||
movie_name varchar(200) null,
|
||||
movie_url varchar(250) null,
|
||||
thumbnail mediumblob null,
|
||||
poster mediumblob null,
|
||||
likes int default 0 null,
|
||||
create_date datetime default CURRENT_TIMESTAMP null,
|
||||
quality int null,
|
||||
length int null comment 'in seconds',
|
||||
create_date datetime default CURRENT_TIMESTAMP null
|
||||
poster mediumblob null
|
||||
);
|
||||
|
||||
create table if not exists actors_videos
|
||||
(
|
||||
actor_id int null,
|
||||
video_id int null,
|
||||
constraint actors_videos_actors_id_fk
|
||||
foreign key (actor_id) references actors (actor_id),
|
||||
constraint actors_videos_videos_movie_id_fk
|
||||
foreign key (video_id) references videos (movie_id)
|
||||
);
|
||||
|
||||
create index actors_videos_actor_id_index
|
||||
on actors_videos (actor_id);
|
||||
|
||||
create index actors_videos_video_id_index
|
||||
on actors_videos (video_id);
|
||||
|
||||
create table if not exists video_tags
|
||||
(
|
||||
tag_id int null,
|
||||
@ -27,11 +62,16 @@ create table if not exists video_tags
|
||||
foreign key (tag_id) references tags (tag_id),
|
||||
constraint video_tags_videos_movie_id_fk
|
||||
foreign key (video_id) references videos (movie_id)
|
||||
on delete cascade
|
||||
);
|
||||
|
||||
INSERT INTO tags (tag_id, tag_name)
|
||||
|
||||
INSERT IGNORE INTO tags (tag_id, tag_name)
|
||||
VALUES (2, 'fullhd');
|
||||
INSERT INTO tags (tag_id, tag_name)
|
||||
INSERT IGNORE INTO tags (tag_id, tag_name)
|
||||
VALUES (3, 'lowquality');
|
||||
INSERT INTO tags (tag_id, tag_name)
|
||||
INSERT IGNORE INTO tags (tag_id, tag_name)
|
||||
VALUES (4, 'hd');
|
||||
|
||||
INSERT IGNORE INTO settings (video_path, episode_path, password, mediacenter_name)
|
||||
VALUES ('./videos/', './tvshows/', -1, 'OpenMediaCenter');
|
||||
|
9
deb/OpenMediaCenter/DEBIAN/control
Executable file
9
deb/OpenMediaCenter/DEBIAN/control
Executable file
@ -0,0 +1,9 @@
|
||||
Package: OpenMediaCenter
|
||||
Depends: nginx, php-fpm, php-mysqli, mariadb-server
|
||||
Section: web
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Essential: no
|
||||
Installed-Size: 1024
|
||||
Maintainer: heili.eu
|
||||
Description: OpenMediaCenter
|
36
deb/OpenMediaCenter/DEBIAN/postinst
Executable file
36
deb/OpenMediaCenter/DEBIAN/postinst
Executable file
@ -0,0 +1,36 @@
|
||||
#!/bin/bash
|
||||
# enable nginx site
|
||||
ln -sf /etc/nginx/sites-available/OpenMediaCenter.conf /etc/nginx/sites-enabled/OpenMediaCenter.conf
|
||||
|
||||
# link general socket to current one
|
||||
phpsymlink="/var/run/php/php-fpm.sock";
|
||||
|
||||
# create a gneral symlink to the php socket if not already existing
|
||||
if [ -L ${phpsymlink} ] ; then
|
||||
if [ -e ${phpsymlink} ] ; then
|
||||
echo "general php symlink already exists."
|
||||
else
|
||||
ln -sf /var/run/php/php*.*-fpm.sock /var/run/php/php-fpm.sock
|
||||
fi
|
||||
else
|
||||
ln -sf /var/run/php/php*.*-fpm.sock /var/run/php/php-fpm.sock
|
||||
fi
|
||||
|
||||
# setup database
|
||||
mysql -uroot -pPASS -e "CREATE DATABASE IF NOT EXISTS mediacenter;"
|
||||
mysql -uroot -pPASS -e "CREATE USER IF NOT EXISTS 'mediacenteruser'@'localhost' IDENTIFIED BY 'mediapassword';"
|
||||
mysql -uroot -pPASS -e "GRANT ALL PRIVILEGES ON mediacenter . * TO 'mediacenteruser'@'localhost';"
|
||||
mysql -u mediacenteruser -pmediapassword mediacenter < /tmp/openmediacenter.sql
|
||||
|
||||
# removed unused sql style file
|
||||
rm /tmp/openmediacenter.sql
|
||||
|
||||
# correct user rights
|
||||
chown -R www-data:www-data /var/www/openmediacenter
|
||||
|
||||
# restart services
|
||||
systemctl restart nginx
|
||||
|
||||
# trigger a movie reindex
|
||||
php /var/www/openmediacenter/api/extractvideopreviews.php
|
||||
rm /tmp/output.log
|
4
deb/OpenMediaCenter/DEBIAN/preinst
Normal file
4
deb/OpenMediaCenter/DEBIAN/preinst
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
#preset db password
|
||||
debconf-set-selections <<< 'mariadb-server-10.0 mysql-server/root_password password PASS'
|
||||
debconf-set-selections <<< 'mariadb-server-10.0 mysql-server/root_password_again password PASS'
|
21
deb/OpenMediaCenter/etc/nginx/sites-available/OpenMediaCenter.conf
Executable file
21
deb/OpenMediaCenter/etc/nginx/sites-available/OpenMediaCenter.conf
Executable file
@ -0,0 +1,21 @@
|
||||
server {
|
||||
listen 8080 default_server;
|
||||
listen [::]:8080 default_server;
|
||||
|
||||
root /var/www/openmediacenter;
|
||||
|
||||
index index.html;
|
||||
|
||||
access_log /var/log/nginx/openmediacenter.access.log;
|
||||
error_log /var/log/nginx/openmediacenter.error.log;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.html;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
include snippets/fastcgi-php.conf;
|
||||
|
||||
fastcgi_pass unix:/var/run/php/php-fpm.sock;
|
||||
}
|
||||
}
|
1
declaration.d.ts
vendored
Normal file
1
declaration.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
declare module '*.css';
|
19522
package-lock.json
generated
Normal file
19522
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
65
package.json
65
package.json
@ -1,21 +1,31 @@
|
||||
{
|
||||
"name": "openmediacenter",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.2",
|
||||
"private": true,
|
||||
"main": "public/electron.js",
|
||||
"author": {
|
||||
"email": "lukas.heiligenbrunner@gmail.com",
|
||||
"name": "Lukas Heiligenbrunner",
|
||||
"url": "https://heili.eu"
|
||||
},
|
||||
"dependencies": {
|
||||
"bootstrap": "^4.5.0",
|
||||
"plyr-react": "^2.2.0",
|
||||
"react": "^16.13.1",
|
||||
"react-bootstrap": "^1.0.1",
|
||||
"react-dom": "^16.13.1",
|
||||
"react-scripts": "^3.4.1"
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.32",
|
||||
"@fortawesome/free-regular-svg-icons": "^5.15.1",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.15.1",
|
||||
"@fortawesome/react-fontawesome": "^0.1.13",
|
||||
"bootstrap": "^4.5.3",
|
||||
"plyr-react": "^3.0.7",
|
||||
"react": "^17.0.1",
|
||||
"react-bootstrap": "^1.4.0",
|
||||
"react-dom": "^17.0.1",
|
||||
"react-router": "^5.2.0",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"typescript": "^4.1.3"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test --reporters=jest-junit --reporters=default",
|
||||
"coverage": "react-scripts test --coverage --watchAll=false",
|
||||
"eject": "react-scripts eject"
|
||||
"test": "CI=true react-scripts test --reporters=jest-junit --verbose --silent --coverage --reporters=default"
|
||||
},
|
||||
"jest": {
|
||||
"collectCoverageFrom": [
|
||||
@ -27,10 +37,24 @@
|
||||
"text-summary"
|
||||
]
|
||||
},
|
||||
"proxy": "http://192.168.0.248",
|
||||
"proxy": "http://192.168.0.209",
|
||||
"homepage": "/",
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
"extends": [
|
||||
"react-app",
|
||||
"react-app/jest"
|
||||
],
|
||||
"overrides": [
|
||||
{
|
||||
"files": [
|
||||
"**/*.ts?(x)"
|
||||
],
|
||||
"rules": {
|
||||
"@typescript-eslint/no-explicit-any": "error",
|
||||
"@typescript-eslint/explicit-function-return-type": "error"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
@ -45,11 +69,18 @@
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@testing-library/jest-dom": "^4.2.4",
|
||||
"@testing-library/react": "^9.5.0",
|
||||
"@testing-library/user-event": "^7.2.1",
|
||||
"@testing-library/jest-dom": "^5.11.6",
|
||||
"@testing-library/react": "^11.2.2",
|
||||
"@testing-library/user-event": "^12.6.0",
|
||||
"@types/react-router-dom": "^5.1.6",
|
||||
"@types/react-router": "5.1.8",
|
||||
"@types/jest": "^26.0.19",
|
||||
"@types/node": "^12.19.9",
|
||||
"@types/react": "^16.14.2",
|
||||
"@types/react-dom": "^16.9.10",
|
||||
"enzyme": "^3.11.0",
|
||||
"enzyme-adapter-react-16": "^1.15.2",
|
||||
"jest-junit": "^10.0.0"
|
||||
"enzyme-adapter-react-16": "^1.15.5",
|
||||
"jest-junit": "^12.0.0",
|
||||
"react-scripts": "4.0.1"
|
||||
}
|
||||
}
|
||||
|
105
src/App.js
105
src/App.js
@ -1,105 +0,0 @@
|
||||
import React from 'react';
|
||||
import "./css/App.css"
|
||||
import HomePage from "./pages/HomePage/HomePage";
|
||||
import RandomPage from "./pages/RandomPage/RandomPage";
|
||||
|
||||
// include bootstraps css
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import SettingsPage from "./pages/SettingsPage/SettingsPage";
|
||||
import CategoryPage from "./pages/CategoryPage/CategoryPage";
|
||||
|
||||
class App extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
this.state = {page: "default"};
|
||||
|
||||
// bind this to the method for being able to call methods such as this.setstate
|
||||
this.showVideo = this.showVideo.bind(this);
|
||||
this.hideVideo = this.hideVideo.bind(this);
|
||||
}
|
||||
|
||||
videoelement = null;
|
||||
|
||||
MainBody() {
|
||||
let page;
|
||||
if (this.state.page === "default") {
|
||||
page = <HomePage viewbinding={{showVideo: this.showVideo, hideVideo: this.hideVideo}}/>;
|
||||
this.mypage = page;
|
||||
} else if (this.state.page === "random") {
|
||||
page = <RandomPage viewbinding={{showVideo: this.showVideo, hideVideo: this.hideVideo}}/>;
|
||||
this.mypage = page;
|
||||
} else if (this.state.page === "settings") {
|
||||
page = <SettingsPage/>;
|
||||
this.mypage = page;
|
||||
} else if (this.state.page === "categories") {
|
||||
page = <CategoryPage viewbinding={{showVideo: this.showVideo, hideVideo: this.hideVideo}}/>;
|
||||
this.mypage = page;
|
||||
} else if (this.state.page === "video") {
|
||||
// show videoelement if neccessary
|
||||
page = this.videoelement;
|
||||
|
||||
console.log(page);
|
||||
} else if (this.state.page === "lastpage") {
|
||||
// return back to last page
|
||||
page = this.mypage;
|
||||
} else {
|
||||
page = <div>unimplemented yet!</div>;
|
||||
}
|
||||
return (page);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className="App">
|
||||
<nav className="navbar navbar-expand-sm bg-primary navbar-dark">
|
||||
<div className="navbar-brand">OpenMediaCenter</div>
|
||||
|
||||
<ul className="navbar-nav">
|
||||
<li className="nav-item">
|
||||
<div className="nav-link"
|
||||
style={this.state.page === "default" ? {color: "rgba(255,255,255,.75"} : {}}
|
||||
onClick={() => this.setState({page: "default"})}>Home
|
||||
</div>
|
||||
</li>
|
||||
<li className="nav-item">
|
||||
<div className="nav-link"
|
||||
style={this.state.page === "random" ? {color: "rgba(255,255,255,.75"} : {}}
|
||||
onClick={() => this.setState({page: "random"})}>Random Video
|
||||
</div>
|
||||
</li>
|
||||
<li className="nav-item">
|
||||
<div className="nav-link"
|
||||
style={this.state.page === "categories" ? {color: "rgba(255,255,255,.75"} : {}}
|
||||
onClick={() => this.setState({page: "categories"})}>Categories
|
||||
</div>
|
||||
</li>
|
||||
<li className="nav-item">
|
||||
<div className="nav-link"
|
||||
style={this.state.page === "settings" ? {color: "rgba(255,255,255,.75"} : {}}
|
||||
onClick={() => this.setState({page: "settings"})}>Settings
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
{this.MainBody()}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
showVideo(element) {
|
||||
this.videoelement = element;
|
||||
|
||||
this.setState({
|
||||
page: "video"
|
||||
});
|
||||
}
|
||||
|
||||
hideVideo() {
|
||||
this.setState({
|
||||
page: "lastpage"
|
||||
});
|
||||
this.element = null;
|
||||
}
|
||||
}
|
||||
|
||||
export default App;
|
58
src/App.module.css
Normal file
58
src/App.module.css
Normal file
@ -0,0 +1,58 @@
|
||||
.app {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.navitem {
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
|
||||
margin-left: 20px;
|
||||
opacity: 0.6;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.navitem:hover {
|
||||
opacity: 1;
|
||||
text-decoration: none;
|
||||
transition: opacity .5s;
|
||||
}
|
||||
|
||||
.navitem::after {
|
||||
content: '';
|
||||
display: block;
|
||||
height: 2px;
|
||||
transition: width .3s;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.navitem:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.navitemselected {
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.navcontainer {
|
||||
border-style: dotted;
|
||||
border-width: 0 0 2px 0;
|
||||
|
||||
padding-bottom: 40px;
|
||||
padding-top: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.navbrand {
|
||||
float: left;
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import React from 'react';
|
||||
import App from './App';
|
||||
import {shallow} from 'enzyme'
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
describe('<App/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
@ -10,11 +10,34 @@ describe('<App/>', function () {
|
||||
|
||||
it('renders title', () => {
|
||||
const wrapper = shallow(<App/>);
|
||||
expect(wrapper.find('.navbar-brand').text()).toBe('OpenMediaCenter');
|
||||
expect(wrapper.find('.navbrand').text()).toBe('OpenMediaCenter');
|
||||
});
|
||||
|
||||
it('are navlinks correct', function () {
|
||||
const wrapper = shallow(<App/>);
|
||||
expect(wrapper.find('nav').find('li')).toHaveLength(4);
|
||||
expect(wrapper.find('.navitem')).toHaveLength(4);
|
||||
});
|
||||
|
||||
it('test initial fetch from api', done => {
|
||||
global.fetch = global.prepareFetchApi({
|
||||
generalSettingsLoaded: true,
|
||||
passwordsupport: true,
|
||||
mediacentername: 'testname'
|
||||
});
|
||||
|
||||
const wrapper = shallow(<App/>);
|
||||
|
||||
|
||||
const func = jest.fn();
|
||||
wrapper.instance().setState = func;
|
||||
|
||||
expect(global.fetch).toBeCalledTimes(1);
|
||||
|
||||
process.nextTick(() => {
|
||||
expect(func).toBeCalledTimes(1);
|
||||
|
||||
global.fetch.mockClear();
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
124
src/App.tsx
Normal file
124
src/App.tsx
Normal file
@ -0,0 +1,124 @@
|
||||
import React from 'react';
|
||||
import HomePage from './pages/HomePage/HomePage';
|
||||
import RandomPage from './pages/RandomPage/RandomPage';
|
||||
import GlobalInfos from './utils/GlobalInfos';
|
||||
|
||||
// include bootstraps css
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import style from './App.module.css';
|
||||
|
||||
import SettingsPage from './pages/SettingsPage/SettingsPage';
|
||||
import CategoryPage from './pages/CategoryPage/CategoryPage';
|
||||
import {APINode, callAPI} from './utils/Api';
|
||||
import {NoBackendConnectionPopup} from './elements/Popups/NoBackendConnectionPopup/NoBackendConnectionPopup';
|
||||
|
||||
import {BrowserRouter as Router, NavLink, Route, Switch} from 'react-router-dom';
|
||||
import Player from './pages/Player/Player';
|
||||
import ActorOverviewPage from './pages/ActorOverviewPage/ActorOverviewPage';
|
||||
import ActorPage from './pages/ActorPage/ActorPage';
|
||||
import {SettingsTypes} from './types/ApiTypes';
|
||||
|
||||
interface state {
|
||||
generalSettingsLoaded: boolean;
|
||||
passwordsupport: boolean;
|
||||
mediacentername: string;
|
||||
onapierror: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* The main App handles the main tabs and which content to show
|
||||
*/
|
||||
class App extends React.Component<{}, state> {
|
||||
constructor(props: {}) {
|
||||
super(props);
|
||||
this.state = {
|
||||
generalSettingsLoaded: false,
|
||||
passwordsupport: false,
|
||||
mediacentername: 'OpenMediaCenter',
|
||||
onapierror: false
|
||||
};
|
||||
}
|
||||
|
||||
initialAPICall(): void {
|
||||
// this is the first api call so if it fails we know there is no connection to backend
|
||||
callAPI(APINode.Settings, {action: 'loadInitialData'}, (result: SettingsTypes.initialApiCallData) => {
|
||||
// set theme
|
||||
GlobalInfos.enableDarkTheme(result.DarkMode);
|
||||
|
||||
this.setState({
|
||||
generalSettingsLoaded: true,
|
||||
passwordsupport: result.passwordEnabled,
|
||||
mediacentername: result.mediacenter_name,
|
||||
onapierror: false
|
||||
});
|
||||
// set tab title to received mediacenter name
|
||||
document.title = result.mediacenter_name;
|
||||
}, error => {
|
||||
this.setState({onapierror: true});
|
||||
});
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
this.initialAPICall();
|
||||
}
|
||||
|
||||
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
// add the main theme to the page body
|
||||
document.body.className = themeStyle.backgroundcolor;
|
||||
|
||||
return (
|
||||
<Router>
|
||||
<div className={style.app}>
|
||||
<div className={[style.navcontainer, themeStyle.backgroundcolor, themeStyle.textcolor, themeStyle.hrcolor].join(' ')}>
|
||||
<div className={style.navbrand}>{this.state.mediacentername}</div>
|
||||
<NavLink className={[style.navitem, themeStyle.navitem].join(' ')} to={'/'} activeStyle={{opacity: '0.85'}}>Home</NavLink>
|
||||
<NavLink className={[style.navitem, themeStyle.navitem].join(' ')} to={'/random'} activeStyle={{opacity: '0.85'}}>Random
|
||||
Video</NavLink>
|
||||
|
||||
<NavLink className={[style.navitem, themeStyle.navitem].join(' ')} to={'/categories'} activeStyle={{opacity: '0.85'}}>Categories</NavLink>
|
||||
<NavLink className={[style.navitem, themeStyle.navitem].join(' ')} to={'/settings'} activeStyle={{opacity: '0.85'}}>Settings</NavLink>
|
||||
</div>
|
||||
{this.routing()}
|
||||
</div>
|
||||
{this.state.onapierror ? this.ApiError() : null}
|
||||
</Router>
|
||||
);
|
||||
}
|
||||
|
||||
routing(): JSX.Element {
|
||||
return (
|
||||
<Switch>
|
||||
<Route path="/random">
|
||||
<RandomPage/>
|
||||
</Route>
|
||||
<Route path="/categories">
|
||||
<CategoryPage/>
|
||||
</Route>
|
||||
<Route path="/settings">
|
||||
<SettingsPage/>
|
||||
</Route>
|
||||
<Route exact path="/player/:id">
|
||||
<Player/>
|
||||
</Route>
|
||||
<Route exact path="/actors">
|
||||
<ActorOverviewPage/>
|
||||
</Route>
|
||||
<Route path="/actors/:id">
|
||||
<ActorPage/>
|
||||
</Route>
|
||||
<Route path="/">
|
||||
<HomePage/>
|
||||
</Route>
|
||||
</Switch>
|
||||
);
|
||||
}
|
||||
|
||||
ApiError(): JSX.Element {
|
||||
// on api error show popup and retry and show again if failing..
|
||||
return (<NoBackendConnectionPopup onHide={(): void => this.initialAPICall()}/>);
|
||||
}
|
||||
}
|
||||
|
||||
export default App;
|
48
src/AppDarkTheme.module.css
Normal file
48
src/AppDarkTheme.module.css
Normal file
@ -0,0 +1,48 @@
|
||||
/**
|
||||
* The coloring elements for dark theme
|
||||
*/
|
||||
|
||||
.backgroundcolor {
|
||||
background-color: #141520;
|
||||
}
|
||||
|
||||
.textcolor {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.subtextcolor {
|
||||
color: #dedad6;
|
||||
}
|
||||
|
||||
.lighttextcolor {
|
||||
color: #d5d5d5;
|
||||
}
|
||||
|
||||
.navitem::after {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.navitem {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.navitem:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.hrcolor {
|
||||
border-color: rgba(255, 255, 255, .1);
|
||||
}
|
||||
|
||||
.secbackground {
|
||||
background-color: #3c3d48;
|
||||
}
|
||||
|
||||
.thirdbackground {
|
||||
background-color: #141520;
|
||||
}
|
||||
|
||||
.preview:hover {
|
||||
box-shadow: rgba(255, 255, 255, 0.7) 0 0 0 5px;
|
||||
}
|
||||
|
47
src/AppLightTheme.module.css
Normal file
47
src/AppLightTheme.module.css
Normal file
@ -0,0 +1,47 @@
|
||||
/**
|
||||
* The coloring elements for light theme
|
||||
*/
|
||||
|
||||
.navitem {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.navitem:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.navitem::after {
|
||||
background: black;
|
||||
}
|
||||
|
||||
.backgroundcolor {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.textcolor {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.subtextcolor {
|
||||
color: #212529;
|
||||
}
|
||||
|
||||
.lighttextcolor {
|
||||
color: #3d3d3d;
|
||||
}
|
||||
|
||||
.hrcolor {
|
||||
border-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.secbackground {
|
||||
background-color: #a8c3ff;
|
||||
}
|
||||
|
||||
.thirdbackground {
|
||||
background-color: #8ca3fc;
|
||||
}
|
||||
|
||||
.preview:hover {
|
||||
box-shadow: rgba(2, 12, 27, 0.7) 0 0 0 5px;
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
.nav-item {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
color: rgba(255, 255, 255, .5);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: rgba(255, 255, 255, 1);
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
29
src/elements/ActorTile/ActorTile.module.css
Normal file
29
src/elements/ActorTile/ActorTile.module.css
Normal file
@ -0,0 +1,29 @@
|
||||
.actortile {
|
||||
background-color: #179017;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
height: 200px;
|
||||
margin: 3px;
|
||||
transition: opacity ease 0.5s;
|
||||
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
.actortile:hover {
|
||||
opacity: 0.7;
|
||||
transition: opacity ease 0.5s;
|
||||
}
|
||||
|
||||
.actortile_thumbnail {
|
||||
color: #c6c6c6;
|
||||
height: 160px;
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.actortile_name {
|
||||
color: white;
|
||||
text-align: center;
|
||||
/*todo dynamic text coloring dependent on theme*/
|
||||
}
|
23
src/elements/ActorTile/ActorTile.test.js
Normal file
23
src/elements/ActorTile/ActorTile.test.js
Normal file
@ -0,0 +1,23 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import ActorTile from './ActorTile';
|
||||
|
||||
describe('<ActorTile/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<ActorTile actor={{thumbnail: '-1', name: 'testname', id: 3}}/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('simulate click with custom handler', function () {
|
||||
const func = jest.fn((_) => {});
|
||||
const wrapper = shallow(<ActorTile actor={{thumbnail: '-1', name: 'testname', id: 3}} onClick={() => func()}/>);
|
||||
|
||||
const func1 = jest.fn();
|
||||
prepareViewBinding(func1);
|
||||
|
||||
wrapper.simulate('click');
|
||||
|
||||
expect(func1).toBeCalledTimes(0);
|
||||
expect(func).toBeCalledTimes(1);
|
||||
});
|
||||
});
|
47
src/elements/ActorTile/ActorTile.tsx
Normal file
47
src/elements/ActorTile/ActorTile.tsx
Normal file
@ -0,0 +1,47 @@
|
||||
import style from './ActorTile.module.css';
|
||||
import {FontAwesomeIcon} from '@fortawesome/react-fontawesome';
|
||||
import {faUser} from '@fortawesome/free-solid-svg-icons';
|
||||
import React from 'react';
|
||||
import {Link} from 'react-router-dom';
|
||||
import {ActorType} from '../../types/VideoTypes';
|
||||
|
||||
interface props {
|
||||
actor: ActorType;
|
||||
onClick?: (actor: ActorType) => void
|
||||
}
|
||||
|
||||
class ActorTile extends React.Component<props> {
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {};
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
if (this.props.onClick) {
|
||||
return this.renderActorTile(this.props.onClick);
|
||||
} else {
|
||||
return (
|
||||
<Link to={{pathname: '/actors/' + this.props.actor.actor_id}}>
|
||||
{this.renderActorTile(() => {
|
||||
})}
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
renderActorTile(customclickhandler: (actor: ActorType) => void): JSX.Element {
|
||||
return (
|
||||
<div className={style.actortile} onClick={(): void => customclickhandler(this.props.actor)}>
|
||||
<div className={style.actortile_thumbnail}>
|
||||
{this.props.actor.thumbnail === null ? <FontAwesomeIcon style={{
|
||||
lineHeight: '130px'
|
||||
}} icon={faUser} size='5x'/> : 'dfdf' /* todo render picture provided here! */}
|
||||
</div>
|
||||
<div className={style.actortile_name}>{this.props.actor.name}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default ActorTile;
|
@ -1,89 +0,0 @@
|
||||
import React from "react";
|
||||
import Modal from 'react-bootstrap/Modal'
|
||||
import Dropdown from "react-bootstrap/Dropdown";
|
||||
import DropdownButton from "react-bootstrap/DropdownButton";
|
||||
|
||||
class AddTagPopup extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
|
||||
this.state = {
|
||||
selection: {
|
||||
name: "nothing selected",
|
||||
id: -1
|
||||
},
|
||||
items: []
|
||||
};
|
||||
|
||||
this.props = props;
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
const updateRequest = new FormData();
|
||||
updateRequest.append('action', 'getAllTags');
|
||||
|
||||
fetch('/api/videoload.php', {method: 'POST', body: updateRequest})
|
||||
.then((response) => response.json())
|
||||
.then((result) => {
|
||||
this.setState({
|
||||
items: result
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<>
|
||||
<Modal
|
||||
show={this.props.show}
|
||||
onHide={this.props.onHide}
|
||||
size="lg"
|
||||
aria-labelledby="contained-modal-title-vcenter"
|
||||
centered>
|
||||
<Modal.Header closeButton>
|
||||
<Modal.Title id="contained-modal-title-vcenter">
|
||||
Add to Tag
|
||||
</Modal.Title>
|
||||
</Modal.Header>
|
||||
<Modal.Body>
|
||||
<h4>Select a Tag:</h4>
|
||||
<DropdownButton id="dropdown-basic-button" title={this.state.selection.name}>
|
||||
{this.state.items ?
|
||||
this.state.items.map((i) => (
|
||||
<Dropdown.Item key={i.tag_name} onClick={() => {
|
||||
this.setState({selection: {name: i.tag_name, id: i.tag_id}})
|
||||
}}>{i.tag_name}</Dropdown.Item>
|
||||
)) :
|
||||
<Dropdown.Item>loading tags...</Dropdown.Item>}
|
||||
</DropdownButton>
|
||||
</Modal.Body>
|
||||
<Modal.Footer>
|
||||
<button className='btn btn-primary' onClick={() => {
|
||||
this.storeselection();
|
||||
}}>Add
|
||||
</button>
|
||||
</Modal.Footer>
|
||||
</Modal>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
storeselection() {
|
||||
const updateRequest = new FormData();
|
||||
updateRequest.append('action', 'addTag');
|
||||
updateRequest.append('id', this.state.selection.id);
|
||||
updateRequest.append('movieid', this.props.movie_id);
|
||||
|
||||
fetch('/api/videoload.php', {method: 'POST', body: updateRequest})
|
||||
.then((response) => response.json()
|
||||
.then((result) => {
|
||||
if (result.result !== "success") {
|
||||
console.log("error occured while writing to db -- todo error handling");
|
||||
console.log(result.result);
|
||||
}
|
||||
this.props.onHide();
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
||||
export default AddTagPopup;
|
@ -1,60 +0,0 @@
|
||||
import React from "react";
|
||||
|
||||
import {shallow} from 'enzyme'
|
||||
import "@testing-library/jest-dom"
|
||||
|
||||
import AddTagPopup from "./AddTagPopup";
|
||||
|
||||
describe('<AddTagPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<AddTagPopup/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('test dropdown insertion', function () {
|
||||
const wrapper = shallow(<AddTagPopup/>);
|
||||
wrapper.setState({items: ["test1", "test2", "test3"]});
|
||||
expect(wrapper.find('DropdownItem')).toHaveLength(3);
|
||||
});
|
||||
|
||||
it('test storeseletion click event', done => {
|
||||
const mockSuccessResponse = {};
|
||||
const mockJsonPromise = Promise.resolve(mockSuccessResponse);
|
||||
const mockFetchPromise = Promise.resolve({
|
||||
json: () => mockJsonPromise,
|
||||
});
|
||||
global.fetch = jest.fn().mockImplementation(() => mockFetchPromise);
|
||||
|
||||
const func = jest.fn();
|
||||
|
||||
const wrapper = shallow(<AddTagPopup/>);
|
||||
wrapper.setProps({
|
||||
onHide: () => {
|
||||
func()
|
||||
}
|
||||
});
|
||||
|
||||
wrapper.setState({
|
||||
items: ["test1", "test2", "test3"],
|
||||
selection: {
|
||||
name: "test1",
|
||||
id: 42
|
||||
}
|
||||
});
|
||||
|
||||
// first call of fetch is getting of available tags
|
||||
expect(global.fetch).toHaveBeenCalledTimes(1);
|
||||
wrapper.find('ModalFooter').find('button').simulate('click');
|
||||
|
||||
// now called 2 times
|
||||
expect(global.fetch).toHaveBeenCalledTimes(2);
|
||||
|
||||
process.nextTick(() => {
|
||||
//callback to close window should have called
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
|
||||
global.fetch.mockClear();
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
8
src/elements/GPElements/Button.module.css
Normal file
8
src/elements/GPElements/Button.module.css
Normal file
@ -0,0 +1,8 @@
|
||||
.button {
|
||||
background-color: green;
|
||||
border-radius: 5px;
|
||||
border-width: 0;
|
||||
color: white;
|
||||
margin-right: 15px;
|
||||
padding: 6px;
|
||||
}
|
32
src/elements/GPElements/Button.test.js
Normal file
32
src/elements/GPElements/Button.test.js
Normal file
@ -0,0 +1,32 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import {Button} from './Button';
|
||||
|
||||
function prepareFetchApi(response) {
|
||||
const mockJsonPromise = Promise.resolve(response);
|
||||
const mockFetchPromise = Promise.resolve({
|
||||
json: () => mockJsonPromise
|
||||
});
|
||||
return (jest.fn().mockImplementation(() => mockFetchPromise));
|
||||
}
|
||||
|
||||
describe('<Button/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<Button onClick={() => {}} title='test'/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('renders title', function () {
|
||||
const wrapper = shallow(<Button onClick={() => {}} title='test1'/>);
|
||||
expect(wrapper.text()).toBe('test1');
|
||||
});
|
||||
|
||||
it('test onclick handling', () => {
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<Button onClick={func} title='test1'/>);
|
||||
|
||||
wrapper.find('button').simulate('click');
|
||||
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
});
|
16
src/elements/GPElements/Button.tsx
Normal file
16
src/elements/GPElements/Button.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import style from './Button.module.css';
|
||||
|
||||
interface ButtonProps {
|
||||
title: string | JSX.Element;
|
||||
onClick?: () => void;
|
||||
color?: React.CSSProperties;
|
||||
}
|
||||
|
||||
export function Button(props: ButtonProps): JSX.Element {
|
||||
return (
|
||||
<button className={style.button} style={props.color} onClick={props.onClick}>
|
||||
{props.title}
|
||||
</button>
|
||||
);
|
||||
}
|
58
src/elements/InfoHeaderItem/InfoHeaderItem.module.css
Normal file
58
src/elements/InfoHeaderItem/InfoHeaderItem.module.css
Normal file
@ -0,0 +1,58 @@
|
||||
/* styling for tile */
|
||||
.infoheaderitem {
|
||||
background-color: lightblue;
|
||||
border-radius: 5px;
|
||||
flex: calc(25% - 10px);
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
/* On screens that are 1317px wide or less, go from four columns to two columns */
|
||||
@media screen and (max-width: 1317px) {
|
||||
.infoheaderitem {
|
||||
flex: calc(50% - 10px);
|
||||
}
|
||||
}
|
||||
|
||||
/* change opacity of icon when hovering whole tile */
|
||||
.infoheaderitem:hover .icon {
|
||||
opacity: 0.75;
|
||||
transition: opacity linear 0.4s;
|
||||
}
|
||||
|
||||
/* change cursor on hover */
|
||||
.infoheaderitem:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.icon {
|
||||
float: left;
|
||||
height: 130px;
|
||||
margin-left: 5px;
|
||||
margin-right: 17px;
|
||||
margin-top: 20px;
|
||||
opacity: 0.5;
|
||||
text-align: center;
|
||||
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
/* big main text in tile */
|
||||
.maintext {
|
||||
font-size: x-large;
|
||||
font-weight: bold;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
/* small subtext in tile */
|
||||
.subtext {
|
||||
font-size: large;
|
||||
margin-top: 5px;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.loadAnimation {
|
||||
display: inline-block;
|
||||
line-height: 145px;
|
||||
margin-left: calc(25% - 15px);
|
||||
vertical-align: middle;
|
||||
}
|
43
src/elements/InfoHeaderItem/InfoHeaderItem.test.js
Normal file
43
src/elements/InfoHeaderItem/InfoHeaderItem.test.js
Normal file
@ -0,0 +1,43 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import InfoHeaderItem from './InfoHeaderItem';
|
||||
|
||||
describe('<InfoHeaderItem/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<InfoHeaderItem/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('renders correct text', function () {
|
||||
const wrapper = shallow(<InfoHeaderItem text='mytext'/>);
|
||||
expect(wrapper.find('.maintext').text()).toBe('mytext');
|
||||
});
|
||||
|
||||
it('renders correct subtext', function () {
|
||||
const wrapper = shallow(<InfoHeaderItem text='mimi' subtext='testtext'/>);
|
||||
expect(wrapper.find('.subtext').text()).toBe('testtext');
|
||||
});
|
||||
|
||||
it('test no subtext if no text defined', function () {
|
||||
const wrapper = shallow(<InfoHeaderItem subtext='testi'/>);
|
||||
expect(wrapper.find('.subtext')).toHaveLength(0);
|
||||
});
|
||||
|
||||
it('test custom click handler', function () {
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<InfoHeaderItem onClick={() => func()}/>);
|
||||
expect(func).toBeCalledTimes(0);
|
||||
wrapper.simulate('click');
|
||||
expect(func).toBeCalledTimes(1);
|
||||
});
|
||||
|
||||
it('test insertion of loading spinner', function () {
|
||||
const wrapper = shallow(<InfoHeaderItem text={null}/>);
|
||||
expect(wrapper.find('Spinner').length).toBe(1);
|
||||
});
|
||||
|
||||
it('test loading spinner if undefined', function () {
|
||||
const wrapper = shallow(<InfoHeaderItem/>);
|
||||
expect(wrapper.find('Spinner').length).toBe(1);
|
||||
});
|
||||
});
|
43
src/elements/InfoHeaderItem/InfoHeaderItem.tsx
Normal file
43
src/elements/InfoHeaderItem/InfoHeaderItem.tsx
Normal file
@ -0,0 +1,43 @@
|
||||
import React from 'react';
|
||||
import style from './InfoHeaderItem.module.css';
|
||||
import {FontAwesomeIcon} from '@fortawesome/react-fontawesome';
|
||||
import {Spinner} from 'react-bootstrap';
|
||||
import {IconDefinition} from '@fortawesome/fontawesome-common-types';
|
||||
|
||||
interface props {
|
||||
onClick?: () => void
|
||||
backColor: string
|
||||
icon: IconDefinition
|
||||
text: string | number
|
||||
subtext: string | number
|
||||
}
|
||||
|
||||
/**
|
||||
* a component to display one of the short quickinfo tiles on dashboard
|
||||
*/
|
||||
class InfoHeaderItem extends React.Component<props> {
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<div onClick={(): void => {
|
||||
// call clicklistener if defined
|
||||
if (this.props.onClick != null) this.props.onClick();
|
||||
}} className={style.infoheaderitem} style={{backgroundColor: this.props.backColor}}>
|
||||
<div className={style.icon}>
|
||||
<FontAwesomeIcon style={{
|
||||
verticalAlign: 'middle',
|
||||
lineHeight: '130px'
|
||||
}} icon={this.props.icon} size='5x'/>
|
||||
</div>
|
||||
{this.props.text !== null && this.props.text !== undefined ?
|
||||
<>
|
||||
<div className={style.maintext}>{this.props.text}</div>
|
||||
<div className={style.subtext}>{this.props.subtext}</div>
|
||||
</>
|
||||
: <span className={style.loadAnimation}><Spinner animation='border'/></span>
|
||||
}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default InfoHeaderItem;
|
@ -1,65 +0,0 @@
|
||||
import React from "react";
|
||||
import Modal from 'react-bootstrap/Modal'
|
||||
import {Form} from "react-bootstrap";
|
||||
|
||||
class NewTagPopup extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
|
||||
this.props = props;
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<>
|
||||
<Modal
|
||||
show={this.props.show}
|
||||
onHide={this.props.onHide}
|
||||
size="lg"
|
||||
aria-labelledby="contained-modal-title-vcenter"
|
||||
centered>
|
||||
<Modal.Header closeButton>
|
||||
<Modal.Title id="contained-modal-title-vcenter">
|
||||
Create a new Tag!
|
||||
</Modal.Title>
|
||||
</Modal.Header>
|
||||
<Modal.Body>
|
||||
<Form.Group>
|
||||
<Form.Label>Tag Name:</Form.Label>
|
||||
<Form.Control id='namefield' type="text" placeholder="Enter Tag name" onChange={(v) => {
|
||||
this.value = v.target.value
|
||||
}}/>
|
||||
<Form.Text className="text-muted">
|
||||
This Tag will automatically show up on category page.
|
||||
</Form.Text>
|
||||
</Form.Group>
|
||||
</Modal.Body>
|
||||
<Modal.Footer>
|
||||
<button className='btn btn-primary' onClick={() => {
|
||||
this.storeselection();
|
||||
}}>Add
|
||||
</button>
|
||||
</Modal.Footer>
|
||||
</Modal>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
storeselection() {
|
||||
const updateRequest = new FormData();
|
||||
updateRequest.append('action', 'createTag');
|
||||
updateRequest.append('tagname', this.value);
|
||||
|
||||
fetch('/api/Tags.php', {method: 'POST', body: updateRequest})
|
||||
.then((response) => response.json())
|
||||
.then((result) => {
|
||||
if (result.result !== "success") {
|
||||
console.log("error occured while writing to db -- todo error handling");
|
||||
console.log(result.result);
|
||||
}
|
||||
this.props.onHide();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default NewTagPopup;
|
@ -1,8 +1,5 @@
|
||||
.pageheader {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
padding-left: 22%;
|
||||
padding-right: 12%;
|
||||
padding: 20px 12% 20px 22%;
|
||||
}
|
||||
|
||||
.pageheadertitle {
|
||||
@ -11,8 +8,7 @@
|
||||
}
|
||||
|
||||
.pageheadersubtitle {
|
||||
margin-left: 20px;
|
||||
font-size: 23pt;
|
||||
margin-left: 20px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
38
src/elements/PageTitle/PageTitle.test.js
Normal file
38
src/elements/PageTitle/PageTitle.test.js
Normal file
@ -0,0 +1,38 @@
|
||||
import React from 'react';
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
import PageTitle, {Line} from './PageTitle';
|
||||
|
||||
describe('<Preview/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<PageTitle/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('renders childs correctly', function () {
|
||||
const wrapper = shallow(<PageTitle>heyimachild</PageTitle>);
|
||||
|
||||
const children = wrapper.children();
|
||||
expect(children.at(children.length - 2).text()).toBe('heyimachild');
|
||||
});
|
||||
|
||||
it('renders pagetitle prop', function () {
|
||||
const wrapper = shallow(<PageTitle title='testtitle'/>);
|
||||
|
||||
expect(wrapper.find('.pageheader').text()).toBe('testtitle<Line />');
|
||||
});
|
||||
|
||||
it('renders subtitle prop', function () {
|
||||
const wrapper = shallow(<PageTitle subtitle='testsubtitle'/>);
|
||||
|
||||
expect(wrapper.find('.pageheadersubtitle').text()).toBe('testsubtitle');
|
||||
});
|
||||
});
|
||||
|
||||
describe('<Line/>', () => {
|
||||
it('renders without crashing', function () {
|
||||
const wrapper = shallow(<Line/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
});
|
||||
|
44
src/elements/PageTitle/PageTitle.tsx
Normal file
44
src/elements/PageTitle/PageTitle.tsx
Normal file
@ -0,0 +1,44 @@
|
||||
import React from 'react';
|
||||
import style from './PageTitle.module.css';
|
||||
import GlobalInfos from '../../utils/GlobalInfos';
|
||||
|
||||
interface props {
|
||||
title: string;
|
||||
subtitle: string | number | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Component for generating PageTitle with bottom Line
|
||||
*/
|
||||
class PageTitle extends React.Component<props> {
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
return (
|
||||
<div className={style.pageheader + ' ' + themeStyle.backgroundcolor}>
|
||||
<span className={style.pageheadertitle + ' ' + themeStyle.textcolor}>{this.props.title}</span>
|
||||
<span className={style.pageheadersubtitle + ' ' + themeStyle.textcolor}>{this.props.subtitle}</span>
|
||||
<>
|
||||
{this.props.children}
|
||||
</>
|
||||
<Line/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* class to override default <hr> color and styling
|
||||
* use this for horizontal lines to use the current active theming
|
||||
*/
|
||||
export class Line extends React.Component {
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
return (
|
||||
<>
|
||||
<hr className={themeStyle.hrcolor}/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default PageTitle;
|
19
src/elements/Popups/AddActorPopup/AddActorPopup.module.css
Normal file
19
src/elements/Popups/AddActorPopup/AddActorPopup.module.css
Normal file
@ -0,0 +1,19 @@
|
||||
.newactorbutton {
|
||||
background-color: green;
|
||||
border-radius: 5px;
|
||||
border-width: 0;
|
||||
color: white;
|
||||
margin-right: 15px;
|
||||
margin-top: 12px;
|
||||
padding: 6px;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.searchinput {
|
||||
float: left;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.searchbar {
|
||||
margin-bottom: 13px;
|
||||
}
|
89
src/elements/Popups/AddActorPopup/AddActorPopup.test.js
Normal file
89
src/elements/Popups/AddActorPopup/AddActorPopup.test.js
Normal file
@ -0,0 +1,89 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import AddActorPopup from './AddActorPopup';
|
||||
import {callAPI} from '../../../utils/Api';
|
||||
|
||||
describe('<AddActorPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<AddActorPopup/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('simulate change to other page', function () {
|
||||
const wrapper = shallow(<AddActorPopup/>);
|
||||
|
||||
expect(wrapper.find('NewActorPopupContent')).toHaveLength(0);
|
||||
wrapper.find('PopupBase').props().banner.props.onClick();
|
||||
|
||||
// check if new content is showing
|
||||
expect(wrapper.find('NewActorPopupContent')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('hide new actor page', function () {
|
||||
const wrapper = shallow(<AddActorPopup/>);
|
||||
wrapper.find('PopupBase').props().banner.props.onClick();
|
||||
|
||||
// call onhide event listener manually
|
||||
wrapper.find('NewActorPopupContent').props().onHide();
|
||||
|
||||
// expect other page to be hidden again
|
||||
expect(wrapper.find('NewActorPopupContent')).toHaveLength(0);
|
||||
});
|
||||
|
||||
it('test api call and insertion of actor tiles', function () {
|
||||
global.callAPIMock([{id: 1, name: 'test'}, {id: 2, name: 'test2'}]);
|
||||
|
||||
const wrapper = shallow(<AddActorPopup/>);
|
||||
|
||||
expect(wrapper.find('ActorTile')).toHaveLength(2);
|
||||
});
|
||||
|
||||
it('simulate actortile click', function () {
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<AddActorPopup onHide={() => {func();}} movie_id={1}/>);
|
||||
|
||||
global.callAPIMock({result: 'success'});
|
||||
|
||||
wrapper.setState({actors: [{actor_id: 1, name: 'test'}]}, () => {
|
||||
wrapper.find('ActorTile').dive().simulate('click');
|
||||
|
||||
expect(callAPI).toHaveBeenCalledTimes(1);
|
||||
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
});
|
||||
|
||||
it('test failing actortile click', function () {
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<AddActorPopup onHide={() => {func();}}/>);
|
||||
|
||||
global.callAPIMock({result: 'nosuccess'});
|
||||
|
||||
wrapper.setState({actors: [{actor_id: 1, name: 'test'}]}, () => {
|
||||
wrapper.find('ActorTile').dive().simulate('click');
|
||||
|
||||
expect(callAPI).toHaveBeenCalledTimes(1);
|
||||
|
||||
// hide funtion should not have been called on error!
|
||||
expect(func).toHaveBeenCalledTimes(0);
|
||||
});
|
||||
});
|
||||
|
||||
it('test no actor on loading', function () {
|
||||
const wrapper = shallow(<AddActorPopup/>);
|
||||
|
||||
expect(wrapper.find('PopupBase').find('ActorTile')).toHaveLength(0);
|
||||
});
|
||||
|
||||
it('test Enter submit if only one element left', function () {
|
||||
const wrapper = shallow(<AddActorPopup/>);
|
||||
|
||||
callAPIMock({});
|
||||
|
||||
wrapper.setState({actors: [{name: 'test', actor_id: 1}]});
|
||||
|
||||
wrapper.find('PopupBase').props().ParentSubmit();
|
||||
|
||||
expect(callAPI).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
});
|
201
src/elements/Popups/AddActorPopup/AddActorPopup.tsx
Normal file
201
src/elements/Popups/AddActorPopup/AddActorPopup.tsx
Normal file
@ -0,0 +1,201 @@
|
||||
import PopupBase from '../PopupBase';
|
||||
import React from 'react';
|
||||
import ActorTile from '../../ActorTile/ActorTile';
|
||||
import style from './AddActorPopup.module.css';
|
||||
import {NewActorPopupContent} from '../NewActorPopup/NewActorPopup';
|
||||
import {APINode, callAPI} from '../../../utils/Api';
|
||||
import {ActorType} from '../../../types/VideoTypes';
|
||||
import {GeneralSuccess} from '../../../types/GeneralTypes';
|
||||
import {FontAwesomeIcon} from '@fortawesome/react-fontawesome';
|
||||
import {faFilter, faTimes} from '@fortawesome/free-solid-svg-icons';
|
||||
import {Button} from '../../GPElements/Button';
|
||||
import {addKeyHandler, removeKeyHandler} from '../../../utils/ShortkeyHandler';
|
||||
|
||||
interface props {
|
||||
onHide: () => void;
|
||||
movie_id: number;
|
||||
}
|
||||
|
||||
interface state {
|
||||
contentDefault: boolean;
|
||||
actors: ActorType[];
|
||||
filter: string;
|
||||
filtervisible: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Popup for Adding a new Actor to a Video
|
||||
*/
|
||||
class AddActorPopup extends React.Component<props, state> {
|
||||
// filterfield anchor, needed to focus after filter btn click
|
||||
private filterfield: HTMLInputElement | null | undefined;
|
||||
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
contentDefault: true,
|
||||
actors: [],
|
||||
filter: '',
|
||||
filtervisible: false
|
||||
};
|
||||
|
||||
this.tileClickHandler = this.tileClickHandler.bind(this);
|
||||
this.filterSearch = this.filterSearch.bind(this);
|
||||
this.parentSubmit = this.parentSubmit.bind(this);
|
||||
this.keypress = this.keypress.bind(this);
|
||||
}
|
||||
|
||||
componentWillUnmount(): void {
|
||||
removeKeyHandler(this.keypress);
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
addKeyHandler(this.keypress);
|
||||
|
||||
// fetch the available actors
|
||||
this.loadActors();
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
{/* todo render actor tiles here and add search field*/}
|
||||
<PopupBase title='Add new Actor to Video' onHide={this.props.onHide} banner={
|
||||
<button
|
||||
className={style.newactorbutton}
|
||||
onClick={(): void => {
|
||||
this.setState({contentDefault: false});
|
||||
}}>Create new Actor</button>} ParentSubmit={this.parentSubmit}>
|
||||
{this.resolvePage()}
|
||||
</PopupBase>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* selector for current showing popup page
|
||||
* @returns {JSX.Element}
|
||||
*/
|
||||
resolvePage(): JSX.Element {
|
||||
if (this.state.contentDefault) return (this.getContent());
|
||||
else return (<NewActorPopupContent onHide={(): void => {
|
||||
this.loadActors();
|
||||
this.setState({contentDefault: true});
|
||||
}}/>);
|
||||
}
|
||||
|
||||
/**
|
||||
* returns content for the newActor popup
|
||||
* @returns {JSX.Element}
|
||||
*/
|
||||
getContent(): JSX.Element {
|
||||
if (this.state.actors.length !== 0) {
|
||||
return (
|
||||
<>
|
||||
<div className={style.searchbar}>
|
||||
{
|
||||
this.state.filtervisible ?
|
||||
<>
|
||||
<input className={'form-control mr-sm-2 ' + style.searchinput}
|
||||
type='text' placeholder='Filter' value={this.state.filter}
|
||||
onChange={(e): void => {
|
||||
this.setState({filter: e.target.value});
|
||||
}}
|
||||
ref={(input): void => {this.filterfield = input;}}/>
|
||||
<Button title={<FontAwesomeIcon style={{
|
||||
verticalAlign: 'middle',
|
||||
lineHeight: '130px'
|
||||
}} icon={faTimes} size='1x'/>} color={{backgroundColor: 'red'}} onClick={(): void => {
|
||||
this.setState({filter: '', filtervisible: false});
|
||||
}}/>
|
||||
</> :
|
||||
<Button
|
||||
title={<span>Filter <FontAwesomeIcon style={{
|
||||
verticalAlign: 'middle',
|
||||
lineHeight: '130px'
|
||||
}} icon={faFilter} size='1x'/></span>}
|
||||
color={{backgroundColor: 'cornflowerblue', color: 'white'}}
|
||||
onClick={(): void => this.enableFilterField()}/>
|
||||
}
|
||||
</div>
|
||||
{this.state.actors.filter(this.filterSearch).map((el) => (<ActorTile actor={el} onClick={this.tileClickHandler}/>))}
|
||||
</>
|
||||
);
|
||||
} else {
|
||||
return (<div>somekind of loading</div>);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* event handling for ActorTile Click
|
||||
*/
|
||||
tileClickHandler(actor: ActorType): void {
|
||||
// fetch the available actors
|
||||
callAPI<GeneralSuccess>(APINode.Actor, {
|
||||
action: 'addActorToVideo',
|
||||
actorid: actor.actor_id,
|
||||
videoid: this.props.movie_id
|
||||
}, result => {
|
||||
if (result.result === 'success') {
|
||||
// return back to player page
|
||||
this.props.onHide();
|
||||
} else {
|
||||
console.error('an error occured while fetching actors: ' + result);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* load the actors from backend and set state
|
||||
*/
|
||||
loadActors(): void {
|
||||
callAPI<ActorType[]>(APINode.Actor, {action: 'getAllActors'}, result => {
|
||||
this.setState({actors: result});
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* enable filterfield and focus into searchbar
|
||||
*/
|
||||
private enableFilterField(): void {
|
||||
this.setState({filtervisible: true}, () => {
|
||||
// focus filterfield after state update
|
||||
this.filterfield?.focus();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* filter the actor array for search matches
|
||||
* @param actor
|
||||
*/
|
||||
private filterSearch(actor: ActorType): boolean {
|
||||
return actor.name.toLowerCase().includes(this.state.filter.toLowerCase());
|
||||
}
|
||||
|
||||
/**
|
||||
* handle a Popupbase parent submit action
|
||||
*/
|
||||
private parentSubmit(): void {
|
||||
// allow submit only if one item is left in selection
|
||||
const filteredList = this.state.actors.filter(this.filterSearch);
|
||||
|
||||
if (filteredList.length === 1) {
|
||||
// simulate click if parent submit
|
||||
this.tileClickHandler(filteredList[0]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* key event handling
|
||||
* @param event keyevent
|
||||
*/
|
||||
private keypress(event: KeyboardEvent): void {
|
||||
// hide if escape is pressed
|
||||
if (event.key === 'f') {
|
||||
this.enableFilterField();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default AddActorPopup;
|
26
src/elements/Popups/AddTagPopup/AddTagPopup.module.css
Normal file
26
src/elements/Popups/AddTagPopup/AddTagPopup.module.css
Normal file
@ -0,0 +1,26 @@
|
||||
.popup {
|
||||
border: 3px #3574fe solid;
|
||||
border-radius: 18px;
|
||||
height: 80%;
|
||||
left: 20%;
|
||||
opacity: 0.95;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
width: 60%;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.header {
|
||||
cursor: move;
|
||||
font-size: x-large;
|
||||
margin-left: 15px;
|
||||
margin-top: 10px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
margin-top: 10px;
|
||||
opacity: 1;
|
||||
}
|
35
src/elements/Popups/AddTagPopup/AddTagPopup.test.js
Normal file
35
src/elements/Popups/AddTagPopup/AddTagPopup.test.js
Normal file
@ -0,0 +1,35 @@
|
||||
import React from 'react';
|
||||
|
||||
import {shallow} from 'enzyme';
|
||||
import '@testing-library/jest-dom';
|
||||
|
||||
import AddTagPopup from './AddTagPopup';
|
||||
|
||||
describe('<AddTagPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<AddTagPopup/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('test tag insertion', function () {
|
||||
const wrapper = shallow(<AddTagPopup/>);
|
||||
wrapper.setState({
|
||||
items: [{tag_id: 1, tag_name: 'test'}, {tag_id: 2, tag_name: 'ee'}]
|
||||
}, () => {
|
||||
expect(wrapper.find('Tag')).toHaveLength(2);
|
||||
expect(wrapper.find('Tag').first().dive().text()).toBe('test');
|
||||
});
|
||||
});
|
||||
|
||||
it('test tag click', function () {
|
||||
const wrapper = shallow(<AddTagPopup submit={jest.fn()} onHide={jest.fn()}/>);
|
||||
|
||||
wrapper.setState({
|
||||
items: [{tag_id: 1, tag_name: 'test'}]
|
||||
}, () => {
|
||||
wrapper.find('Tag').first().dive().simulate('click');
|
||||
expect(wrapper.instance().props.submit).toHaveBeenCalledTimes(1);
|
||||
expect(wrapper.instance().props.onHide).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
});
|
||||
});
|
51
src/elements/Popups/AddTagPopup/AddTagPopup.tsx
Normal file
51
src/elements/Popups/AddTagPopup/AddTagPopup.tsx
Normal file
@ -0,0 +1,51 @@
|
||||
import React from 'react';
|
||||
import Tag from '../../Tag/Tag';
|
||||
import PopupBase from '../PopupBase';
|
||||
import {APINode, callAPI} from '../../../utils/Api';
|
||||
import {TagType} from '../../../types/VideoTypes';
|
||||
|
||||
interface props {
|
||||
onHide: () => void;
|
||||
submit: (tagId: number, tagName: string) => void;
|
||||
movie_id: number;
|
||||
}
|
||||
|
||||
interface state {
|
||||
items: TagType[];
|
||||
}
|
||||
|
||||
/**
|
||||
* component creates overlay to add a new tag to a video
|
||||
*/
|
||||
class AddTagPopup extends React.Component<props, state> {
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {items: []};
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
callAPI(APINode.Tags, {action: 'getAllTags'}, (result: TagType[]) => {
|
||||
this.setState({
|
||||
items: result
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<PopupBase title='Add a Tag to this Video:' onHide={this.props.onHide}>
|
||||
{this.state.items ?
|
||||
this.state.items.map((i) => (
|
||||
<Tag tagInfo={i}
|
||||
onclick={(): void => {
|
||||
this.props.submit(i.tag_id, i.tag_name);
|
||||
this.props.onHide();
|
||||
}}/>
|
||||
)) : null}
|
||||
</PopupBase>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default AddTagPopup;
|
@ -0,0 +1,8 @@
|
||||
.savebtn {
|
||||
background-color: greenyellow;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
float: right;
|
||||
margin-top: 30px;
|
||||
padding: 3px;
|
||||
}
|
60
src/elements/Popups/NewActorPopup/NewActorPopup.test.js
Normal file
60
src/elements/Popups/NewActorPopup/NewActorPopup.test.js
Normal file
@ -0,0 +1,60 @@
|
||||
import React from 'react';
|
||||
|
||||
import {shallow} from 'enzyme';
|
||||
import '@testing-library/jest-dom';
|
||||
import NewActorPopup, {NewActorPopupContent} from './NewActorPopup';
|
||||
import {callAPI} from '../../../utils/Api';
|
||||
|
||||
describe('<NewActorPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<NewActorPopup/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
});
|
||||
|
||||
describe('<NewActorPopupContent/>', () => {
|
||||
it('renders without crashing', function () {
|
||||
const wrapper = shallow(<NewActorPopupContent/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('simulate button click', function () {
|
||||
global.callAPIMock({});
|
||||
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<NewActorPopupContent onHide={() => {func();}}/>);
|
||||
|
||||
// manually set typed in actorname
|
||||
wrapper.instance().value = 'testactorname';
|
||||
|
||||
global.fetch = prepareFetchApi({});
|
||||
|
||||
expect(callAPI).toBeCalledTimes(0);
|
||||
wrapper.find('button').simulate('click');
|
||||
|
||||
// fetch should have been called once now
|
||||
expect(callAPI).toBeCalledTimes(1);
|
||||
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it('test not allowing request if textfield is empty', function () {
|
||||
const wrapper = shallow(<NewActorPopupContent/>);
|
||||
|
||||
global.fetch = prepareFetchApi({});
|
||||
|
||||
expect(global.fetch).toBeCalledTimes(0);
|
||||
wrapper.find('button').simulate('click');
|
||||
|
||||
// fetch should not be called now
|
||||
expect(global.fetch).toBeCalledTimes(0);
|
||||
});
|
||||
|
||||
it('test input change', function () {
|
||||
const wrapper = shallow(<NewActorPopupContent/>);
|
||||
|
||||
wrapper.find('input').simulate('change', {target: {value: 'testinput'}});
|
||||
|
||||
expect(wrapper.instance().value).toBe('testinput');
|
||||
});
|
||||
});
|
56
src/elements/Popups/NewActorPopup/NewActorPopup.tsx
Normal file
56
src/elements/Popups/NewActorPopup/NewActorPopup.tsx
Normal file
@ -0,0 +1,56 @@
|
||||
import React from 'react';
|
||||
import PopupBase from '../PopupBase';
|
||||
import style from './NewActorPopup.module.css';
|
||||
import {APINode, callAPI} from '../../../utils/Api';
|
||||
import {GeneralSuccess} from '../../../types/GeneralTypes';
|
||||
|
||||
interface NewActorPopupProps {
|
||||
onHide: () => void;
|
||||
}
|
||||
|
||||
/**
|
||||
* creates modal overlay to define a new Tag
|
||||
*/
|
||||
class NewActorPopup extends React.Component<NewActorPopupProps> {
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<PopupBase title='Add new Tag' onHide={this.props.onHide} height='200px' width='400px'>
|
||||
<NewActorPopupContent onHide={this.props.onHide}/>
|
||||
</PopupBase>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export class NewActorPopupContent extends React.Component<NewActorPopupProps> {
|
||||
value: string | undefined;
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div>
|
||||
<input type='text' placeholder='Actor Name' onChange={(v): void => {
|
||||
this.value = v.target.value;
|
||||
}}/></div>
|
||||
<button className={style.savebtn} onClick={(): void => this.storeselection()}>Save</button>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* store the filled in form to the backend
|
||||
*/
|
||||
storeselection(): void {
|
||||
// check if user typed in name
|
||||
if (this.value === '' || this.value === undefined) return;
|
||||
|
||||
callAPI(APINode.Actor, {action: 'createActor', actorname: this.value}, (result: GeneralSuccess) => {
|
||||
if (result.result !== 'success') {
|
||||
console.log('error occured while writing to db -- todo error handling');
|
||||
console.log(result.result);
|
||||
}
|
||||
this.props.onHide();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default NewActorPopup;
|
8
src/elements/Popups/NewTagPopup/NewTagPopup.module.css
Normal file
8
src/elements/Popups/NewTagPopup/NewTagPopup.module.css
Normal file
@ -0,0 +1,8 @@
|
||||
.savebtn {
|
||||
background-color: greenyellow;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
float: right;
|
||||
margin-top: 30px;
|
||||
padding: 3px;
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
import React from "react";
|
||||
import React from 'react';
|
||||
|
||||
import {shallow} from 'enzyme'
|
||||
import "@testing-library/jest-dom"
|
||||
import NewTagPopup from "./NewTagPopup";
|
||||
import {shallow} from 'enzyme';
|
||||
import '@testing-library/jest-dom';
|
||||
import NewTagPopup from './NewTagPopup';
|
||||
|
||||
describe('<NewTagPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
@ -11,23 +11,20 @@ describe('<NewTagPopup/>', function () {
|
||||
});
|
||||
|
||||
it('test storeseletion click event', done => {
|
||||
const mockSuccessResponse = {};
|
||||
const mockJsonPromise = Promise.resolve(mockSuccessResponse);
|
||||
const mockFetchPromise = Promise.resolve({
|
||||
json: () => mockJsonPromise,
|
||||
});
|
||||
global.fetch = jest.fn().mockImplementation(() => mockFetchPromise);
|
||||
global.fetch = prepareFetchApi({});
|
||||
|
||||
const func = jest.fn();
|
||||
|
||||
const wrapper = shallow(<NewTagPopup/>);
|
||||
wrapper.setProps({
|
||||
onHide: () => {
|
||||
func()
|
||||
func();
|
||||
}
|
||||
});
|
||||
|
||||
wrapper.find('ModalFooter').find('button').simulate('click');
|
||||
wrapper.instance().value = 'testvalue';
|
||||
|
||||
wrapper.find('button').simulate('click');
|
||||
expect(global.fetch).toHaveBeenCalledTimes(1);
|
||||
|
||||
process.nextTick(() => {
|
||||
@ -38,4 +35,12 @@ describe('<NewTagPopup/>', function () {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('simulate textfield change', function () {
|
||||
const wrapper = shallow(<NewTagPopup/>);
|
||||
|
||||
wrapper.find('input').simulate('change', {target: {value: 'testvalue'}});
|
||||
|
||||
expect(wrapper.instance().value).toBe('testvalue');
|
||||
});
|
||||
});
|
42
src/elements/Popups/NewTagPopup/NewTagPopup.tsx
Normal file
42
src/elements/Popups/NewTagPopup/NewTagPopup.tsx
Normal file
@ -0,0 +1,42 @@
|
||||
import React from 'react';
|
||||
import PopupBase from '../PopupBase';
|
||||
import style from './NewTagPopup.module.css';
|
||||
import {APINode, callAPI} from '../../../utils/Api';
|
||||
import {GeneralSuccess} from '../../../types/GeneralTypes';
|
||||
|
||||
interface props {
|
||||
onHide: () => void
|
||||
}
|
||||
|
||||
/**
|
||||
* creates modal overlay to define a new Tag
|
||||
*/
|
||||
class NewTagPopup extends React.Component<props> {
|
||||
private value: string = '';
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<PopupBase title='Add new Tag' onHide={this.props.onHide} height='200px' width='400px' ParentSubmit={(): void => this.storeselection()}>
|
||||
<div><input type='text' placeholder='Tagname' onChange={(v): void => {
|
||||
this.value = v.target.value;
|
||||
}}/></div>
|
||||
<button className={style.savebtn} onClick={(): void => this.storeselection()}>Save</button>
|
||||
</PopupBase>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* store the filled in form to the backend
|
||||
*/
|
||||
storeselection(): void {
|
||||
callAPI(APINode.Tags, {action: 'createTag', tagname: this.value}, (result: GeneralSuccess) => {
|
||||
if (result.result !== 'success') {
|
||||
console.log('error occured while writing to db -- todo error handling');
|
||||
console.log(result.result);
|
||||
}
|
||||
this.props.onHide();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default NewTagPopup;
|
@ -0,0 +1,29 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import {NoBackendConnectionPopup} from './NoBackendConnectionPopup';
|
||||
import {getBackendDomain} from '../../../utils/Api';
|
||||
|
||||
describe('<NoBackendConnectionPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<NoBackendConnectionPopup onHide={() => {}}/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('hides on refresh click', function () {
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<NoBackendConnectionPopup onHide={func}/>);
|
||||
|
||||
expect(func).toBeCalledTimes(0);
|
||||
wrapper.find('button').simulate('click');
|
||||
|
||||
expect(func).toBeCalledTimes(1);
|
||||
});
|
||||
|
||||
it('simulate change of textfield', function () {
|
||||
const wrapper = shallow(<NoBackendConnectionPopup onHide={() => {}}/>);
|
||||
|
||||
wrapper.find('input').simulate('change', {target: {value: 'testvalue'}});
|
||||
|
||||
expect(getBackendDomain()).toBe('testvalue');
|
||||
});
|
||||
});
|
@ -0,0 +1,20 @@
|
||||
import React from 'react';
|
||||
import PopupBase from '../PopupBase';
|
||||
import style from '../NewActorPopup/NewActorPopup.module.css';
|
||||
import {setCustomBackendDomain} from '../../../utils/Api';
|
||||
|
||||
interface NBCProps {
|
||||
onHide: (_: void) => void
|
||||
}
|
||||
|
||||
export function NoBackendConnectionPopup(props: NBCProps): JSX.Element {
|
||||
return (
|
||||
<PopupBase title='No connection to backend API!' onHide={props.onHide} height='200px' width='600px'>
|
||||
<div>
|
||||
<input type='text' placeholder='http://192.168.0.2' onChange={(v): void => {
|
||||
setCustomBackendDomain(v.target.value);
|
||||
}}/></div>
|
||||
<button className={style.savebtn} onClick={(): void => props.onHide()}>Refresh</button>
|
||||
</PopupBase>
|
||||
);
|
||||
}
|
45
src/elements/Popups/PopupBase.module.css
Normal file
45
src/elements/Popups/PopupBase.module.css
Normal file
@ -0,0 +1,45 @@
|
||||
.popup {
|
||||
border: 3px #3574fe solid;
|
||||
border-radius: 18px;
|
||||
height: fit-content;
|
||||
left: 20%;
|
||||
min-height: 80%;
|
||||
opacity: 0.95;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
width: 60%;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.header {
|
||||
cursor: move;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.title {
|
||||
float: left;
|
||||
font-size: x-large;
|
||||
margin-left: 15px;
|
||||
margin-top: 10px;
|
||||
opacity: 1;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.banner {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
float: left;
|
||||
justify-content: flex-end;
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
margin-top: 10px;
|
||||
opacity: 1;
|
||||
overflow: auto;
|
||||
}
|
41
src/elements/Popups/PopupBase.test.js
Normal file
41
src/elements/Popups/PopupBase.test.js
Normal file
@ -0,0 +1,41 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import PopupBase from './PopupBase';
|
||||
|
||||
describe('<PopupBase/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<PopupBase/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
let events;
|
||||
|
||||
function mockKeyPress() {
|
||||
events = [];
|
||||
document.addEventListener = jest.fn((event, cb) => {
|
||||
events[event] = cb;
|
||||
});
|
||||
}
|
||||
|
||||
it('simulate keypress', function () {
|
||||
mockKeyPress();
|
||||
const func = jest.fn();
|
||||
shallow(<PopupBase onHide={() => func()}/>);
|
||||
|
||||
// trigger the keypress event
|
||||
events.keyup({key: 'Escape'});
|
||||
|
||||
expect(func).toBeCalledTimes(1);
|
||||
});
|
||||
|
||||
it('test an Enter sumit', function () {
|
||||
mockKeyPress();
|
||||
const func = jest.fn();
|
||||
shallow(<PopupBase ParentSubmit={() => func()}/>);
|
||||
|
||||
// trigger the keypress event
|
||||
events.keyup({key: 'Enter'});
|
||||
|
||||
expect(func).toBeCalledTimes(1);
|
||||
});
|
||||
});
|
141
src/elements/Popups/PopupBase.tsx
Normal file
141
src/elements/Popups/PopupBase.tsx
Normal file
@ -0,0 +1,141 @@
|
||||
import GlobalInfos from '../../utils/GlobalInfos';
|
||||
import style from './PopupBase.module.css';
|
||||
import {Line} from '../PageTitle/PageTitle';
|
||||
import React, {RefObject} from 'react';
|
||||
import {addKeyHandler, removeKeyHandler} from '../../utils/ShortkeyHandler';
|
||||
|
||||
interface props {
|
||||
width?: string;
|
||||
height?: string;
|
||||
banner?: JSX.Element;
|
||||
title: string;
|
||||
onHide: () => void;
|
||||
ParentSubmit?: () => void;
|
||||
}
|
||||
|
||||
/**
|
||||
* wrapper class for generic types of popups
|
||||
*/
|
||||
class PopupBase extends React.Component<props> {
|
||||
private wrapperRef: RefObject<HTMLDivElement>;
|
||||
private framedimensions: { minHeight: string | undefined; width: string | undefined; height: string | undefined };
|
||||
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {items: []};
|
||||
|
||||
this.wrapperRef = React.createRef();
|
||||
|
||||
this.handleClickOutside = this.handleClickOutside.bind(this);
|
||||
this.keypress = this.keypress.bind(this);
|
||||
|
||||
// parse style props
|
||||
this.framedimensions = {
|
||||
width: (this.props.width ? this.props.width : undefined),
|
||||
height: (this.props.height ? this.props.height : undefined),
|
||||
minHeight: (this.props.height ? this.props.height : undefined)
|
||||
};
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
document.addEventListener('mousedown', this.handleClickOutside);
|
||||
addKeyHandler(this.keypress);
|
||||
|
||||
// add element drag drop events
|
||||
if (this.wrapperRef != null) {
|
||||
this.dragElement();
|
||||
}
|
||||
}
|
||||
|
||||
componentWillUnmount(): void {
|
||||
// remove the appended listeners
|
||||
document.removeEventListener('mousedown', this.handleClickOutside);
|
||||
removeKeyHandler(this.keypress);
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
return (
|
||||
<div style={this.framedimensions} className={[style.popup, themeStyle.thirdbackground].join(' ')} ref={this.wrapperRef}>
|
||||
<div className={style.header}>
|
||||
<div className={[style.title, themeStyle.textcolor].join(' ')}>{this.props.title}</div>
|
||||
<div className={style.banner}>{this.props.banner}</div>
|
||||
</div>
|
||||
|
||||
<Line/>
|
||||
<div className={style.content}>
|
||||
{this.props.children}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Alert if clicked on outside of element
|
||||
*/
|
||||
handleClickOutside(event: MouseEvent): void {
|
||||
if (this.wrapperRef && this.wrapperRef.current && !this.wrapperRef.current.contains(event.target as Node)) {
|
||||
this.props.onHide();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* key event handling
|
||||
* @param event keyevent
|
||||
*/
|
||||
keypress(event: KeyboardEvent): void {
|
||||
// hide if escape is pressed
|
||||
if (event.key === 'Escape') {
|
||||
this.props.onHide();
|
||||
} else if (event.key === 'Enter') {
|
||||
// call a parentsubmit if defined
|
||||
if (this.props.ParentSubmit) this.props.ParentSubmit();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* make the element drag and droppable
|
||||
*/
|
||||
dragElement(): void {
|
||||
let xOld = 0, yOld = 0;
|
||||
|
||||
const elmnt = this.wrapperRef.current;
|
||||
if (elmnt === null) return;
|
||||
if (elmnt.firstChild === null) return;
|
||||
|
||||
(elmnt.firstChild as HTMLDivElement).onmousedown = dragMouseDown;
|
||||
|
||||
|
||||
function dragMouseDown(e: MouseEvent): void {
|
||||
e.preventDefault();
|
||||
// get the mouse cursor position at startup:
|
||||
xOld = e.clientX;
|
||||
yOld = e.clientY;
|
||||
document.onmouseup = closeDragElement;
|
||||
// call a function whenever the cursor moves:
|
||||
document.onmousemove = elementDrag;
|
||||
}
|
||||
|
||||
function elementDrag(e: MouseEvent): void {
|
||||
e.preventDefault();
|
||||
// calculate the new cursor position:
|
||||
const dx = xOld - e.clientX;
|
||||
const dy = yOld - e.clientY;
|
||||
xOld = e.clientX;
|
||||
yOld = e.clientY;
|
||||
// set the element's new position:
|
||||
if (elmnt === null) return;
|
||||
elmnt.style.top = (elmnt.offsetTop - dy) + 'px';
|
||||
elmnt.style.left = (elmnt.offsetLeft - dx) + 'px';
|
||||
}
|
||||
|
||||
function closeDragElement(): void {
|
||||
// stop moving when mouse button is released:
|
||||
document.onmouseup = null;
|
||||
document.onmousemove = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default PopupBase;
|
28
src/elements/Popups/SubmitPopup/SubmitPopup.test.js
Normal file
28
src/elements/Popups/SubmitPopup/SubmitPopup.test.js
Normal file
@ -0,0 +1,28 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import SubmitPopup from './SubmitPopup';
|
||||
|
||||
describe('<SubmitPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<SubmitPopup/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('test submit click', function () {
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<SubmitPopup submit={() => func()}/>);
|
||||
|
||||
wrapper.find('Button').findWhere(p => p.props().title === 'Submit').simulate('click');
|
||||
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it('test cancel click', function () {
|
||||
const func = jest.fn();
|
||||
const wrapper = shallow(<SubmitPopup onHide={() => func()}/>);
|
||||
|
||||
wrapper.find('Button').findWhere(p => p.props().title === 'Cancel').simulate('click');
|
||||
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
});
|
18
src/elements/Popups/SubmitPopup/SubmitPopup.tsx
Normal file
18
src/elements/Popups/SubmitPopup/SubmitPopup.tsx
Normal file
@ -0,0 +1,18 @@
|
||||
import React from 'react';
|
||||
import PopupBase from '../PopupBase';
|
||||
import {Button} from '../../GPElements/Button';
|
||||
|
||||
interface props {
|
||||
onHide: (_: void) => void;
|
||||
submit: (_: void) => void;
|
||||
}
|
||||
|
||||
export default function SubmitPopup(props: props): JSX.Element {
|
||||
return (
|
||||
<PopupBase title='Are you sure?' onHide={props.onHide} height='160px' width='300px'>
|
||||
<Button title='Submit' color={{backgroundColor: 'green'}} onClick={(): void => props.submit()}/>
|
||||
<Button title='Cancel' color={{backgroundColor: 'red'}} onClick={(): void => props.onHide()}/>
|
||||
</PopupBase>
|
||||
);
|
||||
|
||||
}
|
@ -1,112 +0,0 @@
|
||||
import React from "react";
|
||||
import "./Preview.css";
|
||||
import Player from "../../pages/Player/Player";
|
||||
import VideoContainer from "../VideoContainer/VideoContainer";
|
||||
|
||||
class Preview extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
this.props = props;
|
||||
|
||||
this.state = {
|
||||
previewpicture: null,
|
||||
name: null
|
||||
};
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
this.setState({});
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.setState({
|
||||
previewpicture: null,
|
||||
name: this.props.name
|
||||
});
|
||||
|
||||
const updateRequest = new FormData();
|
||||
updateRequest.append('action', 'readThumbnail');
|
||||
updateRequest.append('movieid', this.props.movie_id);
|
||||
|
||||
fetch('/api/videoload.php', {method: 'POST', body: updateRequest})
|
||||
.then((response) => response.text()
|
||||
.then((result) => {
|
||||
this.setState(prevState => ({
|
||||
...prevState.previewpicture, previewpicture: result
|
||||
}));
|
||||
}));
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className='videopreview' onClick={() => this.itemClick()}>
|
||||
<div className='previewtitle'>{this.state.name}</div>
|
||||
<div className='previewpic'>
|
||||
<img className='previewimage'
|
||||
src={this.state.previewpicture}
|
||||
alt='Pic loading.'/>
|
||||
</div>
|
||||
<div className='previewbottom'>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
itemClick() {
|
||||
console.log("item clicked!" + this.state.name);
|
||||
|
||||
this.props.viewbinding.showVideo(<Player
|
||||
viewbinding={this.props.viewbinding}
|
||||
movie_id={this.props.movie_id}/>);
|
||||
}
|
||||
}
|
||||
|
||||
export class TagPreview extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
|
||||
this.props = props;
|
||||
}
|
||||
|
||||
fetchVideoData(tag) {
|
||||
console.log(tag);
|
||||
const updateRequest = new FormData();
|
||||
updateRequest.append('action', 'getMovies');
|
||||
updateRequest.append('tag', tag);
|
||||
|
||||
console.log("fetching data");
|
||||
|
||||
// fetch all videos available
|
||||
fetch('/api/videoload.php', {method: 'POST', body: updateRequest})
|
||||
.then((response) => response.json()
|
||||
.then((result) => {
|
||||
console.log(result);
|
||||
this.props.categorybinding(
|
||||
<VideoContainer
|
||||
data={result}
|
||||
viewbinding={this.props.viewbinding}/>, tag
|
||||
);
|
||||
}))
|
||||
.catch(() => {
|
||||
console.log("no connection to backend");
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className='videopreview tagpreview' onClick={() => this.itemClick()}>
|
||||
<div className='tagpreviewtitle'>
|
||||
{this.props.name}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
itemClick() {
|
||||
this.fetchVideoData(this.props.name);
|
||||
}
|
||||
}
|
||||
|
||||
export default Preview;
|
@ -1,22 +1,30 @@
|
||||
.previewtitle {
|
||||
height: 20px;
|
||||
color: #3d3d3d;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
max-width: 266px;
|
||||
font-size: smaller;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
max-width: 266px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.previewpic {
|
||||
height: 80%;
|
||||
min-height: 150px;
|
||||
min-width: 266px;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.loadAnimation {
|
||||
display: inline-block;
|
||||
line-height: 150px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.previewimage {
|
||||
min-height: 150px;
|
||||
max-height: 400px;
|
||||
min-width: 266px;
|
||||
max-width: 410px;
|
||||
min-height: 150px;
|
||||
min-width: 266px;
|
||||
}
|
||||
|
||||
.previewbottom {
|
||||
@ -24,28 +32,25 @@
|
||||
}
|
||||
|
||||
.videopreview {
|
||||
border-radius: 20px;
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
margin-left: 25px;
|
||||
margin-top: 25px;
|
||||
/*background-color: #7F7F7F;*/
|
||||
background-color: #a8c3ff;
|
||||
cursor: pointer;
|
||||
opacity: 0.85;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.videopreview:hover {
|
||||
opacity: 1;
|
||||
box-shadow: rgba(2, 12, 27, 0.7) 0px 0px 0px 5px;
|
||||
transition: all 300ms;
|
||||
}
|
||||
|
||||
.tagpreview {
|
||||
text-transform: uppercase;
|
||||
font-weight: bolder;
|
||||
font-size: x-large;
|
||||
text-align: center;
|
||||
font-weight: bolder;
|
||||
height: 150px;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
width: 266px;
|
||||
}
|
||||
|
79
src/elements/Preview/Preview.tsx
Normal file
79
src/elements/Preview/Preview.tsx
Normal file
@ -0,0 +1,79 @@
|
||||
import React from 'react';
|
||||
import style from './Preview.module.css';
|
||||
import {Spinner} from 'react-bootstrap';
|
||||
import {Link} from 'react-router-dom';
|
||||
import GlobalInfos from '../../utils/GlobalInfos';
|
||||
import {APINode, callAPIPlain} from '../../utils/Api';
|
||||
|
||||
interface PreviewProps {
|
||||
name: string;
|
||||
movie_id: number;
|
||||
}
|
||||
|
||||
interface PreviewState {
|
||||
previewpicture: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Component for single preview tile
|
||||
* floating side by side
|
||||
*/
|
||||
class Preview extends React.Component<PreviewProps, PreviewState> {
|
||||
constructor(props: PreviewProps) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
previewpicture: null
|
||||
};
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
callAPIPlain(APINode.Video, {action: 'readThumbnail', movieid: this.props.movie_id}, (result) => {
|
||||
this.setState({
|
||||
previewpicture: result
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
return (
|
||||
<Link to={'/player/' + this.props.movie_id}>
|
||||
<div className={style.videopreview + ' ' + themeStyle.secbackground + ' ' + themeStyle.preview}>
|
||||
<div className={style.previewtitle + ' ' + themeStyle.lighttextcolor}>{this.props.name}</div>
|
||||
<div className={style.previewpic}>
|
||||
{this.state.previewpicture !== null ?
|
||||
<img className={style.previewimage}
|
||||
src={this.state.previewpicture}
|
||||
alt='Pic loading.'/> :
|
||||
<span className={style.loadAnimation}><Spinner animation='border'/></span>}
|
||||
|
||||
</div>
|
||||
<div className={style.previewbottom}>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Component for a Tag-name tile (used in category page)
|
||||
*/
|
||||
export class TagPreview extends React.Component<{ name: string }> {
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
return (
|
||||
<div
|
||||
className={style.videopreview + ' ' + style.tagpreview + ' ' + themeStyle.secbackground + ' ' + themeStyle.preview}>
|
||||
<div className={style.tagpreviewtitle + ' ' + themeStyle.lighttextcolor}>
|
||||
{this.props.name}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Preview;
|
@ -1,61 +1,45 @@
|
||||
import React from 'react';
|
||||
import {shallow} from 'enzyme'
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
import Preview, {TagPreview} from "./Preview";
|
||||
import Preview, {TagPreview} from './Preview';
|
||||
|
||||
describe('<Preview/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<Preview/>);
|
||||
const wrapper = shallow(<Preview movie_id={1}/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
// check if preview title renders correctly
|
||||
it('renders title', () => {
|
||||
const wrapper = shallow(<Preview name='test'/>);
|
||||
expect(wrapper.find('.previewtitle').text()).toBe('test');
|
||||
});
|
||||
|
||||
|
||||
it('click event triggered', () => {
|
||||
const func = jest.fn();
|
||||
|
||||
const wrapper = shallow(<Preview/>);
|
||||
wrapper.setProps({
|
||||
viewbinding: {
|
||||
showVideo: () => {
|
||||
func()
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
wrapper.find('.videopreview').simulate('click');
|
||||
|
||||
//callback to open player should have called
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it('picture rendered correctly', done => {
|
||||
const mockSuccessResponse = 'testsrc';
|
||||
const mockJsonPromise = Promise.resolve(mockSuccessResponse);
|
||||
const mockFetchPromise = Promise.resolve({
|
||||
text: () => mockJsonPromise,
|
||||
text: () => mockJsonPromise
|
||||
});
|
||||
global.fetch = jest.fn().mockImplementation(() => mockFetchPromise);
|
||||
|
||||
const wrapper = shallow(<Preview/>);
|
||||
const wrapper = shallow(<Preview name='test' movie_id={1}/>);
|
||||
|
||||
// now called 1 times
|
||||
expect(global.fetch).toHaveBeenCalledTimes(1);
|
||||
|
||||
process.nextTick(() => {
|
||||
// received picture should be rendered into wrapper
|
||||
expect(wrapper.find(".previewimage").props().src).not.toBeNull();
|
||||
expect(wrapper.find('.previewimage').props().src).not.toBeNull();
|
||||
// check if preview title renders correctly
|
||||
expect(wrapper.find('.previewtitle').text()).toBe('test');
|
||||
|
||||
global.fetch.mockClear();
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
it('spinner loads correctly', function () {
|
||||
const wrapper = shallow(<Preview movie_id={1}/>);
|
||||
|
||||
// expect load animation to be visible
|
||||
expect(wrapper.find('.loadAnimation')).toHaveLength(1);
|
||||
});
|
||||
});
|
||||
|
||||
describe('<TagPreview/>', function () {
|
||||
@ -69,39 +53,5 @@ describe('<TagPreview/>', function () {
|
||||
const wrapper = shallow(<TagPreview name='test'/>);
|
||||
expect(wrapper.find('.tagpreviewtitle').text()).toBe('test');
|
||||
});
|
||||
|
||||
|
||||
it('click event triggered', done => {
|
||||
const mockSuccessResponse = {};
|
||||
const mockJsonPromise = Promise.resolve(mockSuccessResponse);
|
||||
const mockFetchPromise = Promise.resolve({
|
||||
json: () => mockJsonPromise,
|
||||
});
|
||||
global.fetch = jest.fn().mockImplementation(() => mockFetchPromise);
|
||||
|
||||
const func = jest.fn();
|
||||
|
||||
const wrapper = shallow(<TagPreview/>);
|
||||
wrapper.setProps({
|
||||
categorybinding: () => {
|
||||
func()
|
||||
}
|
||||
});
|
||||
|
||||
// first call of fetch is getting of available tags
|
||||
expect(global.fetch).toHaveBeenCalledTimes(0);
|
||||
wrapper.find('.videopreview').simulate('click');
|
||||
|
||||
// now called 1 times
|
||||
expect(global.fetch).toHaveBeenCalledTimes(1);
|
||||
|
||||
process.nextTick(() => {
|
||||
//callback to close window should have called
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
|
||||
global.fetch.mockClear();
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -1,12 +0,0 @@
|
||||
import React from "react";
|
||||
import "./SideBar.css"
|
||||
|
||||
class SideBar extends React.Component {
|
||||
render() {
|
||||
return (<div className='sideinfo'>
|
||||
{this.props.children}
|
||||
</div>);
|
||||
}
|
||||
}
|
||||
|
||||
export default SideBar;
|
@ -1,24 +1,25 @@
|
||||
.sideinfo {
|
||||
width: 20%;
|
||||
float: left;
|
||||
padding: 20px;
|
||||
margin-top: 25px;
|
||||
margin-left: 15px;
|
||||
background-color: #b4c7fe;
|
||||
border-radius: 20px;
|
||||
border: 2px #3574fe solid;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.sideinfogeometry {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 25px;
|
||||
overflow: hidden;
|
||||
padding: 20px;
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.sidebartitle {
|
||||
font-weight: bold;
|
||||
font-size: larger;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.sidebarinfo {
|
||||
margin-top: 5px;
|
||||
background-color: #8ca3fc;
|
||||
border-radius: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 2px 10px 2px 15px;
|
||||
width: 220px;
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
import React from "react";
|
||||
import SideBar from "./SideBar";
|
||||
import React from 'react';
|
||||
import SideBar, {SideBarItem, SideBarTitle} from './SideBar';
|
||||
|
||||
import "@testing-library/jest-dom"
|
||||
import {shallow} from "enzyme";
|
||||
import '@testing-library/jest-dom';
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
describe('<SideBar/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
@ -12,6 +12,16 @@ describe('<SideBar/>', function () {
|
||||
|
||||
it('renders childs correctly', function () {
|
||||
const wrapper = shallow(<SideBar>test</SideBar>);
|
||||
expect(wrapper.children().text()).toBe("test");
|
||||
expect(wrapper.children().text()).toBe('test');
|
||||
});
|
||||
|
||||
it('sidebar Item renders without crashing', function () {
|
||||
const wrapper = shallow(<SideBarItem>Test</SideBarItem>);
|
||||
expect(wrapper.children().text()).toBe('Test');
|
||||
});
|
||||
|
||||
it('renderes sidebartitle correctly', function () {
|
||||
const wrapper = shallow(<SideBarTitle>Test</SideBarTitle>);
|
||||
expect(wrapper.children().text()).toBe('Test');
|
||||
});
|
||||
});
|
||||
|
49
src/elements/SideBar/SideBar.tsx
Normal file
49
src/elements/SideBar/SideBar.tsx
Normal file
@ -0,0 +1,49 @@
|
||||
import React from 'react';
|
||||
import style from './SideBar.module.css';
|
||||
import GlobalInfos from '../../utils/GlobalInfos';
|
||||
|
||||
interface SideBarProps {
|
||||
hiddenFrame?: boolean;
|
||||
width?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* component for sidebar-info
|
||||
*/
|
||||
class SideBar extends React.Component<SideBarProps> {
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
const classnn = style.sideinfogeometry + ' ' + (this.props.hiddenFrame === undefined ? style.sideinfo + ' ' + themeStyle.secbackground : '');
|
||||
|
||||
return (<div className={classnn} style={{width: this.props.width}}>
|
||||
{this.props.children}
|
||||
</div>);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The title of the sidebar
|
||||
*/
|
||||
export class SideBarTitle extends React.Component {
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
return (
|
||||
<div className={style.sidebartitle + ' ' + themeStyle.subtextcolor}>{this.props.children}</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* An item of the sidebar
|
||||
*/
|
||||
export class SideBarItem extends React.Component {
|
||||
render(): JSX.Element {
|
||||
const themeStyle = GlobalInfos.getThemeStyle();
|
||||
return (
|
||||
<div
|
||||
className={style.sidebarinfo + ' ' + themeStyle.thirdbackground + ' ' + themeStyle.lighttextcolor}>{this.props.children}</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default SideBar;
|
@ -1,21 +0,0 @@
|
||||
import React from "react";
|
||||
|
||||
import "./Tag.css"
|
||||
|
||||
class Tag extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
|
||||
this.props = props;
|
||||
}
|
||||
|
||||
render() {
|
||||
// todo onclick events correctlyy
|
||||
return (
|
||||
<button className='tagbtn' onClick={this.props.onClick}
|
||||
data-testid="Test-Tag">{this.props.children}</button>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Tag;
|
@ -1,12 +1,12 @@
|
||||
.tagbtn {
|
||||
color: white;
|
||||
margin: 10px;
|
||||
background-color: #3574fe;
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
padding: 5px 15px 5px 15px;
|
||||
color: white;
|
||||
margin-left: 10px;
|
||||
margin-top: 15px;
|
||||
/*font-weight: bold;*/
|
||||
display: block;
|
||||
padding: 5px 15px 5px 15px;
|
||||
}
|
||||
|
||||
.tagbtn:focus {
|
@ -1,17 +1,31 @@
|
||||
import React from "react";
|
||||
import Tag from './Tag'
|
||||
import React from 'react';
|
||||
import Tag from './Tag';
|
||||
|
||||
import "@testing-library/jest-dom"
|
||||
import {shallow} from 'enzyme'
|
||||
import '@testing-library/jest-dom';
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
describe('<Tag/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<Tag>test</Tag>);
|
||||
const wrapper = shallow(<Tag tagInfo={{tag_name: 'testname', tag_id: 1}}/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('renders childs correctly', function () {
|
||||
const wrapper = shallow(<Tag>test</Tag>);
|
||||
expect(wrapper.children().text()).toBe("test");
|
||||
const wrapper = shallow(<Tag tagInfo={{tag_name: 'test', tag_id: 1}}/>);
|
||||
expect(wrapper.children().text()).toBe('test');
|
||||
});
|
||||
|
||||
it('test custom onclick function', function () {
|
||||
const func = jest.fn();
|
||||
|
||||
const wrapper = shallow(<Tag
|
||||
tagInfo={{tag_name: 'test', tag_id: 1}}
|
||||
onclick={() => {func();}}>test</Tag>);
|
||||
|
||||
expect(func).toBeCalledTimes(0);
|
||||
|
||||
wrapper.simulate('click');
|
||||
|
||||
expect(func).toBeCalledTimes(1);
|
||||
});
|
||||
});
|
||||
|
47
src/elements/Tag/Tag.tsx
Normal file
47
src/elements/Tag/Tag.tsx
Normal file
@ -0,0 +1,47 @@
|
||||
import React from 'react';
|
||||
|
||||
import styles from './Tag.module.css';
|
||||
import {Link} from 'react-router-dom';
|
||||
import {TagType} from '../../types/VideoTypes';
|
||||
|
||||
interface props {
|
||||
onclick?: (_: string) => void
|
||||
tagInfo: TagType
|
||||
}
|
||||
|
||||
/**
|
||||
* A Component representing a single Category tag
|
||||
*/
|
||||
class Tag extends React.Component<props> {
|
||||
render(): JSX.Element {
|
||||
if (this.props.onclick) {
|
||||
return this.renderButton();
|
||||
} else {
|
||||
return (
|
||||
<Link to={'/categories/' + this.props.tagInfo.tag_id}>
|
||||
{this.renderButton()}
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
renderButton(): JSX.Element {
|
||||
return (
|
||||
<button className={styles.tagbtn} onClick={(): void => this.TagClick()}
|
||||
data-testid='Test-Tag'>{this.props.tagInfo.tag_name}</button>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* click handling for a Tag
|
||||
*/
|
||||
TagClick(): void {
|
||||
if (this.props.onclick) {
|
||||
// call custom onclick handling
|
||||
this.props.onclick(this.props.tagInfo.tag_name); // todo check if param is neccessary
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default Tag;
|
@ -1,77 +0,0 @@
|
||||
import React from "react";
|
||||
import Preview from "../Preview/Preview";
|
||||
|
||||
class VideoContainer extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
|
||||
this.data = props.data;
|
||||
|
||||
this.state = {
|
||||
loadeditems: [],
|
||||
selectionnr: null
|
||||
};
|
||||
}
|
||||
|
||||
// stores current index of loaded elements
|
||||
loadindex = 0;
|
||||
|
||||
componentDidMount() {
|
||||
document.addEventListener('scroll', this.trackScrolling);
|
||||
|
||||
this.loadPreviewBlock(12);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className='maincontent'>
|
||||
{this.state.loadeditems.map(elem => (
|
||||
<Preview
|
||||
key={elem.movie_id}
|
||||
name={elem.movie_name}
|
||||
movie_id={elem.movie_id}
|
||||
viewbinding={this.props.viewbinding}/>
|
||||
))}
|
||||
{/*todo css for no items to show*/}
|
||||
{this.state.loadeditems.length === 0 ?
|
||||
"no items to show!" : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
this.setState({});
|
||||
document.removeEventListener('scroll', this.trackScrolling);
|
||||
}
|
||||
|
||||
loadPreviewBlock(nr) {
|
||||
console.log("loadpreviewblock called ...")
|
||||
let ret = [];
|
||||
for (let i = 0; i < nr; i++) {
|
||||
// only add if not end
|
||||
if (this.data.length > this.loadindex + i) {
|
||||
ret.push(this.data[this.loadindex + i]);
|
||||
}
|
||||
}
|
||||
|
||||
this.setState({
|
||||
loadeditems: [
|
||||
...this.state.loadeditems,
|
||||
...ret
|
||||
]
|
||||
});
|
||||
|
||||
|
||||
this.loadindex += nr;
|
||||
}
|
||||
|
||||
trackScrolling = () => {
|
||||
// comparison if current scroll position is on bottom
|
||||
// 200 stands for bottom offset to trigger load
|
||||
if (window.innerHeight + document.documentElement.scrollTop + 200 >= document.documentElement.offsetHeight) {
|
||||
this.loadPreviewBlock(8);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default VideoContainer;
|
4
src/elements/VideoContainer/VideoContainer.module.css
Normal file
4
src/elements/VideoContainer/VideoContainer.module.css
Normal file
@ -0,0 +1,4 @@
|
||||
.maincontent {
|
||||
float: left;
|
||||
width: 70%;
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
import {shallow} from "enzyme";
|
||||
import React from "react";
|
||||
import VideoContainer from "./VideoContainer";
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import VideoContainer from './VideoContainer';
|
||||
|
||||
describe('<VideoContainer/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
@ -8,11 +8,11 @@ describe('<VideoContainer/>', function () {
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('inserts tiles correctly', () => {
|
||||
it('inserts tiles correctly if enough available', () => {
|
||||
const wrapper = shallow(<VideoContainer data={[
|
||||
{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}
|
||||
{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}
|
||||
]}/>);
|
||||
expect(wrapper.find('Preview')).toHaveLength(12);
|
||||
expect(wrapper.find('Preview')).toHaveLength(16);
|
||||
});
|
||||
|
||||
it('inserts tiles correctly if not enough available', () => {
|
||||
@ -25,6 +25,6 @@ describe('<VideoContainer/>', function () {
|
||||
it('no items available', () => {
|
||||
const wrapper = shallow(<VideoContainer data={[]}/>);
|
||||
expect(wrapper.find('Preview')).toHaveLength(0);
|
||||
expect(wrapper.find(".maincontent").text()).toBe("no items to show!");
|
||||
expect(wrapper.find('.maincontent').text()).toBe('no items to show!');
|
||||
});
|
||||
});
|
||||
|
97
src/elements/VideoContainer/VideoContainer.tsx
Normal file
97
src/elements/VideoContainer/VideoContainer.tsx
Normal file
@ -0,0 +1,97 @@
|
||||
import React from 'react';
|
||||
import Preview from '../Preview/Preview';
|
||||
import style from './VideoContainer.module.css';
|
||||
import {VideoTypes} from '../../types/ApiTypes';
|
||||
|
||||
interface props {
|
||||
data: VideoTypes.VideoUnloadedType[]
|
||||
}
|
||||
|
||||
interface state {
|
||||
loadeditems: VideoTypes.VideoUnloadedType[];
|
||||
selectionnr: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* A videocontainer storing lots of Preview elements
|
||||
* includes scroll handling and loading of preview infos
|
||||
*/
|
||||
class VideoContainer extends React.Component<props, state> {
|
||||
// stores current index of loaded elements
|
||||
loadindex: number = 0;
|
||||
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
loadeditems: [],
|
||||
selectionnr: 0
|
||||
};
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
document.addEventListener('scroll', this.trackScrolling);
|
||||
|
||||
this.loadPreviewBlock(16);
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<div className={style.maincontent}>
|
||||
{this.state.loadeditems.map(elem => (
|
||||
<Preview
|
||||
key={elem.movie_id}
|
||||
name={elem.movie_name}
|
||||
movie_id={elem.movie_id}/>
|
||||
))}
|
||||
{/*todo css for no items to show*/}
|
||||
{this.state.loadeditems.length === 0 ?
|
||||
'no items to show!' : null}
|
||||
{this.props.children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
componentWillUnmount(): void {
|
||||
this.setState({});
|
||||
// unbind scroll listener when unmounting component
|
||||
document.removeEventListener('scroll', this.trackScrolling);
|
||||
}
|
||||
|
||||
/**
|
||||
* load previews to the container
|
||||
* @param nr number of previews to load
|
||||
*/
|
||||
loadPreviewBlock(nr: number): void {
|
||||
console.log('loadpreviewblock called ...');
|
||||
let ret = [];
|
||||
for (let i = 0; i < nr; i++) {
|
||||
// only add if not end
|
||||
if (this.props.data.length > this.loadindex + i) {
|
||||
ret.push(this.props.data[this.loadindex + i]);
|
||||
}
|
||||
}
|
||||
|
||||
this.setState({
|
||||
loadeditems: [
|
||||
...this.state.loadeditems,
|
||||
...ret
|
||||
]
|
||||
});
|
||||
|
||||
|
||||
this.loadindex += nr;
|
||||
}
|
||||
|
||||
/**
|
||||
* scroll event handler -> load new previews if on bottom
|
||||
*/
|
||||
trackScrolling = (): void => {
|
||||
// comparison if current scroll position is on bottom --> 200 is bottom offset to trigger load
|
||||
if (window.innerHeight + document.documentElement.scrollTop + 200 >= document.documentElement.offsetHeight) {
|
||||
this.loadPreviewBlock(8);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
export default VideoContainer;
|
@ -1,8 +1,10 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import './css/index.css';
|
||||
import App from './App';
|
||||
|
||||
// don't allow console logs within production env
|
||||
global.console.log = process.env.NODE_ENV !== 'development' ? (s: string | number | boolean): void => {} : global.console.log;
|
||||
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<App/>
|
6
src/pages/ActorOverviewPage/ActorOverviewPage.module.css
Normal file
6
src/pages/ActorOverviewPage/ActorOverviewPage.module.css
Normal file
@ -0,0 +1,6 @@
|
||||
.container {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
padding-left: 20px;
|
||||
width: 70%;
|
||||
}
|
43
src/pages/ActorOverviewPage/ActorOverviewPage.test.js
Normal file
43
src/pages/ActorOverviewPage/ActorOverviewPage.test.js
Normal file
@ -0,0 +1,43 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import ActorOverviewPage from './ActorOverviewPage';
|
||||
|
||||
describe('<ActorOverviewPage/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<ActorOverviewPage/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('test inerstion of actor tiles', function () {
|
||||
const wrapper = shallow(<ActorOverviewPage/>);
|
||||
|
||||
wrapper.setState({
|
||||
actors: [{
|
||||
thumbnail: '',
|
||||
name: 'testname',
|
||||
actor_id: 42
|
||||
}]
|
||||
});
|
||||
|
||||
expect(wrapper.find('ActorTile')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('test newtagpopup visibility', function () {
|
||||
const wrapper = shallow(<ActorOverviewPage/>);
|
||||
|
||||
expect(wrapper.find('NewActorPopup')).toHaveLength(0);
|
||||
|
||||
wrapper.find('SideBar').find('Button').simulate('click');
|
||||
|
||||
expect(wrapper.find('NewActorPopup')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('test popup hiding', function () {
|
||||
const wrapper = shallow(<ActorOverviewPage/>);
|
||||
wrapper.setState({NActorPopupVisible: true});
|
||||
|
||||
wrapper.find('NewActorPopup').props().onHide();
|
||||
|
||||
expect(wrapper.find('NewActorPopup')).toHaveLength(0);
|
||||
});
|
||||
});
|
59
src/pages/ActorOverviewPage/ActorOverviewPage.tsx
Normal file
59
src/pages/ActorOverviewPage/ActorOverviewPage.tsx
Normal file
@ -0,0 +1,59 @@
|
||||
import React from 'react';
|
||||
import {APINode, callAPI} from '../../utils/Api';
|
||||
import {ActorType} from '../../types/VideoTypes';
|
||||
import ActorTile from '../../elements/ActorTile/ActorTile';
|
||||
import PageTitle from '../../elements/PageTitle/PageTitle';
|
||||
import SideBar from '../../elements/SideBar/SideBar';
|
||||
import style from './ActorOverviewPage.module.css';
|
||||
import {Button} from '../../elements/GPElements/Button';
|
||||
import NewActorPopup from '../../elements/Popups/NewActorPopup/NewActorPopup';
|
||||
|
||||
interface props {
|
||||
}
|
||||
|
||||
interface state {
|
||||
actors: ActorType[];
|
||||
NActorPopupVisible: boolean
|
||||
}
|
||||
|
||||
class ActorOverviewPage extends React.Component<props, state> {
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
actors: [],
|
||||
NActorPopupVisible: false
|
||||
};
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
this.fetchAvailableActors();
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<PageTitle title='Actors' subtitle={this.state.actors.length + ' Actors'}/>
|
||||
<SideBar>
|
||||
<Button title='Add Actor' onClick={(): void => this.setState({NActorPopupVisible: true})}/>
|
||||
</SideBar>
|
||||
<div className={style.container}>
|
||||
{this.state.actors.map((el) => (<ActorTile key={el.actor_id} actor={el}/>))}
|
||||
</div>
|
||||
{this.state.NActorPopupVisible ?
|
||||
<NewActorPopup onHide={(): void => {
|
||||
this.setState({NActorPopupVisible: false});
|
||||
this.fetchAvailableActors(); // refetch actors
|
||||
}}/> : null}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
fetchAvailableActors(): void {
|
||||
callAPI<ActorType[]>(APINode.Actor, {action: 'getAllActors'}, result => {
|
||||
this.setState({actors: result});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default ActorOverviewPage;
|
9
src/pages/ActorPage/ActorPage.module.css
Normal file
9
src/pages/ActorPage/ActorPage.module.css
Normal file
@ -0,0 +1,9 @@
|
||||
.pic {
|
||||
margin-bottom: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.overviewbutton {
|
||||
float: right;
|
||||
margin-top: 25px;
|
||||
}
|
27
src/pages/ActorPage/ActorPage.test.js
Normal file
27
src/pages/ActorPage/ActorPage.test.js
Normal file
@ -0,0 +1,27 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import {ActorPage} from './ActorPage';
|
||||
|
||||
describe('<ActorPage/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<ActorPage match={{params: {id: 10}}}/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('fetch infos', function () {
|
||||
callAPIMock({
|
||||
videos: [{
|
||||
movie_id: 0,
|
||||
movie_name: 'test'
|
||||
}], info: {
|
||||
thumbnail: '',
|
||||
name: '',
|
||||
actor_id: 0
|
||||
}
|
||||
});
|
||||
|
||||
const wrapper = shallow(<ActorPage match={{params: {id: 10}}}/>);
|
||||
|
||||
expect(wrapper.find('VideoContainer')).toHaveLength(1);
|
||||
});
|
||||
});
|
81
src/pages/ActorPage/ActorPage.tsx
Normal file
81
src/pages/ActorPage/ActorPage.tsx
Normal file
@ -0,0 +1,81 @@
|
||||
import React from 'react';
|
||||
import PageTitle from '../../elements/PageTitle/PageTitle';
|
||||
import SideBar, {SideBarTitle} from '../../elements/SideBar/SideBar';
|
||||
import {FontAwesomeIcon} from '@fortawesome/react-fontawesome';
|
||||
import {faUser} from '@fortawesome/free-solid-svg-icons';
|
||||
import style from './ActorPage.module.css';
|
||||
import VideoContainer from '../../elements/VideoContainer/VideoContainer';
|
||||
import {APINode, callAPI} from '../../utils/Api';
|
||||
import {ActorType} from '../../types/VideoTypes';
|
||||
import {Link, withRouter} from 'react-router-dom';
|
||||
import {RouteComponentProps} from 'react-router';
|
||||
import {Button} from '../../elements/GPElements/Button';
|
||||
import {ActorTypes, VideoTypes} from '../../types/ApiTypes';
|
||||
|
||||
interface state {
|
||||
data: VideoTypes.VideoUnloadedType[],
|
||||
actor: ActorType
|
||||
}
|
||||
|
||||
/**
|
||||
* empty default props with id in url
|
||||
*/
|
||||
interface props extends RouteComponentProps<{ id: string }> {
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* info page about a specific actor and a list of all its videos
|
||||
*/
|
||||
export class ActorPage extends React.Component<props, state> {
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {data: [], actor: {actor_id: 0, name: '', thumbnail: ''}};
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<PageTitle title={this.state.actor.name} subtitle={this.state.data ? this.state.data.length + ' videos' : null}>
|
||||
<span className={style.overviewbutton}>
|
||||
<Link to='/actors'>
|
||||
<Button onClick={(): void => {}} title='Go to Actor overview'/>
|
||||
</Link>
|
||||
</span>
|
||||
</PageTitle>
|
||||
<SideBar>
|
||||
<div className={style.pic}>
|
||||
<FontAwesomeIcon style={{color: 'white'}} icon={faUser} size='10x'/>
|
||||
</div>
|
||||
<SideBarTitle>Attention: This is an early preview!</SideBarTitle>
|
||||
</SideBar>
|
||||
{this.state.data.length !== 0 ?
|
||||
<VideoContainer
|
||||
data={this.state.data}/> :
|
||||
<div>No Data found!</div>}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
this.getActorInfo();
|
||||
}
|
||||
|
||||
/**
|
||||
* request more actor info from backend
|
||||
*/
|
||||
getActorInfo(): void {
|
||||
callAPI(APINode.Actor, {
|
||||
action: 'getActorInfo',
|
||||
actorid: this.props.match.params.id
|
||||
}, (result: ActorTypes.videofetchresult) => {
|
||||
this.setState({
|
||||
data: result.videos ? result.videos : [],
|
||||
actor: result.info
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default withRouter(ActorPage);
|
@ -1,109 +0,0 @@
|
||||
import React from "react";
|
||||
import SideBar from "../../elements/SideBar/SideBar";
|
||||
import Tag from "../../elements/Tag/Tag";
|
||||
|
||||
import {TagPreview} from "../../elements/Preview/Preview";
|
||||
import NewTagPopup from "../../elements/NewTagPopup/NewTagPopup";
|
||||
|
||||
class CategoryPage extends React.Component {
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
|
||||
this.props = props;
|
||||
|
||||
this.state = {
|
||||
loadedtags: [],
|
||||
selected: null
|
||||
};
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.loadTags();
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<>
|
||||
<div className='pageheader'>
|
||||
<span className='pageheadertitle'>Categories</span>
|
||||
<span
|
||||
className='pageheadersubtitle'>{!this.state.selected ? this.state.loadedtags.length + " different Tags" : this.state.selected}</span>
|
||||
<hr/>
|
||||
</div>
|
||||
<SideBar>
|
||||
<div className='sidebartitle'>Default Tags:</div>
|
||||
<Tag>All</Tag>
|
||||
<Tag>FullHd</Tag>
|
||||
<Tag>LowQuality</Tag>
|
||||
<Tag>HD</Tag>
|
||||
<hr/>
|
||||
<button data-testid='btnaddtag' className='btn btn-success' onClick={() => {
|
||||
this.setState({popupvisible: true})
|
||||
}}>Add a new Tag!
|
||||
</button>
|
||||
</SideBar>
|
||||
|
||||
{!this.state.selected ?
|
||||
(<div className='maincontent'>
|
||||
{this.state.loadedtags ?
|
||||
this.state.loadedtags.map((m) => (
|
||||
<TagPreview
|
||||
key={m.tag_name}
|
||||
name={m.tag_name}
|
||||
tag_id={m.tag_id}
|
||||
viewbinding={this.props.viewbinding}
|
||||
categorybinding={this.setPage}/>
|
||||
)) :
|
||||
"loading"}
|
||||
</div>) :
|
||||
<>
|
||||
{this.selectionelements}
|
||||
<button data-testid='backbtn' className="btn btn-success"
|
||||
onClick={this.loadCategoryPageDefault}>Back
|
||||
</button>
|
||||
</>
|
||||
}
|
||||
|
||||
{this.state.popupvisible ?
|
||||
<NewTagPopup show={this.state.popupvisible}
|
||||
onHide={() => {
|
||||
this.setState({popupvisible: false});
|
||||
this.loadTags();
|
||||
}}/> :
|
||||
null
|
||||
}
|
||||
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
setPage = (element, tagname) => {
|
||||
this.selectionelements = element;
|
||||
|
||||
this.setState({selected: tagname});
|
||||
};
|
||||
|
||||
loadCategoryPageDefault = () => {
|
||||
this.setState({selected: null});
|
||||
};
|
||||
|
||||
/**
|
||||
* load all available tags from db.
|
||||
*/
|
||||
loadTags() {
|
||||
const updateRequest = new FormData();
|
||||
updateRequest.append('action', 'getAllTags');
|
||||
|
||||
// fetch all videos available
|
||||
fetch('/api/Tags.php', {method: 'POST', body: updateRequest})
|
||||
.then((response) => response.json()
|
||||
.then((result) => {
|
||||
this.setState({loadedtags: result});
|
||||
}))
|
||||
.catch(() => {
|
||||
console.log("no connection to backend");
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default CategoryPage;
|
@ -1,107 +1,10 @@
|
||||
import {shallow, mount} from "enzyme";
|
||||
import React from "react";
|
||||
import CategoryPage from "./CategoryPage";
|
||||
import VideoContainer from "../../elements/VideoContainer/VideoContainer";
|
||||
|
||||
function prepareFetchApi(response) {
|
||||
const mockJsonPromise = Promise.resolve(response);
|
||||
const mockFetchPromise = Promise.resolve({
|
||||
json: () => mockJsonPromise,
|
||||
});
|
||||
return (jest.fn().mockImplementation(() => mockFetchPromise));
|
||||
}
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import CategoryPage from './CategoryPage';
|
||||
|
||||
describe('<CategoryPage/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<CategoryPage/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('test tag fetch call', done => {
|
||||
global.fetch = prepareFetchApi(["first", "second"]);
|
||||
|
||||
const wrapper = shallow(<CategoryPage/>);
|
||||
|
||||
expect(global.fetch).toHaveBeenCalledTimes(1);
|
||||
|
||||
process.nextTick(() => {
|
||||
//callback to close window should have called
|
||||
expect(wrapper.state().loadedtags.length).toBe(2);
|
||||
|
||||
global.fetch.mockClear();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('test errored fetch call', done => {
|
||||
global.fetch = prepareFetchApi({});
|
||||
|
||||
let message;
|
||||
global.console.log = jest.fn((m) => {
|
||||
message = m;
|
||||
})
|
||||
|
||||
const wrapper = shallow(<CategoryPage/>);
|
||||
|
||||
expect(global.fetch).toHaveBeenCalledTimes(1);
|
||||
|
||||
process.nextTick(() => {
|
||||
//callback to close window should have called
|
||||
expect(message).toBe("no connection to backend");
|
||||
|
||||
global.fetch.mockClear();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('test new tag popup', function () {
|
||||
const wrapper = mount(<CategoryPage/>);
|
||||
|
||||
expect(wrapper.find("NewTagPopup")).toHaveLength(0);
|
||||
wrapper.find('[data-testid="btnaddtag"]').simulate('click');
|
||||
// newtagpopup should be showing now
|
||||
expect(wrapper.find("NewTagPopup")).toHaveLength(1);
|
||||
|
||||
// click close button in modal
|
||||
wrapper.find(".modal-header").find("button").simulate("click");
|
||||
expect(wrapper.find("NewTagPopup")).toHaveLength(0);
|
||||
});
|
||||
|
||||
it('test setpage callback', done => {
|
||||
global.fetch = prepareFetchApi([{}, {}]);
|
||||
|
||||
const wrapper = mount(<CategoryPage/>);
|
||||
|
||||
wrapper.setState({
|
||||
loadedtags: [
|
||||
{
|
||||
tag_name: "testname",
|
||||
tag_id: 42
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
wrapper.find("TagPreview").find("div").first().simulate("click");
|
||||
|
||||
process.nextTick(() => {
|
||||
// expect callback to have loaded correct tag
|
||||
expect(wrapper.state().selected).toBe("testname");
|
||||
// expect to receive a videocontainer with simulated data
|
||||
expect(wrapper.instance().selectionelements).toMatchObject(<VideoContainer data={[{}, {}]}/>);
|
||||
|
||||
global.fetch.mockClear();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('test back to category view callback', function () {
|
||||
const wrapper = shallow(<CategoryPage/>);
|
||||
|
||||
wrapper.setState({
|
||||
selected: "test"
|
||||
});
|
||||
expect(wrapper.state().selected).not.toBeNull();
|
||||
wrapper.find('[data-testid="backbtn"]').simulate("click");
|
||||
expect(wrapper.state().selected).toBeNull();
|
||||
});
|
||||
});
|
||||
|
25
src/pages/CategoryPage/CategoryPage.tsx
Normal file
25
src/pages/CategoryPage/CategoryPage.tsx
Normal file
@ -0,0 +1,25 @@
|
||||
import React from 'react';
|
||||
import {Route, Switch} from 'react-router-dom';
|
||||
import {CategoryViewWR} from './CategoryView';
|
||||
import TagView from './TagView';
|
||||
|
||||
/**
|
||||
* Component for Category Page
|
||||
* Contains a Tag Overview and loads specific Tag videos in VideoContainer
|
||||
*/
|
||||
class CategoryPage extends React.Component {
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<Switch>
|
||||
<Route path='/categories/:id'>
|
||||
<CategoryViewWR/>
|
||||
</Route>
|
||||
<Route path='/categories'>
|
||||
<TagView/>
|
||||
</Route>
|
||||
</Switch>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default CategoryPage;
|
74
src/pages/CategoryPage/CategoryView.test.js
Normal file
74
src/pages/CategoryPage/CategoryView.test.js
Normal file
@ -0,0 +1,74 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import {CategoryView} from './CategoryView';
|
||||
|
||||
describe('<CategoryView/>', function () {
|
||||
function instance() {
|
||||
return shallow(<CategoryView match={{params: {id: 10}}} history={{push: jest.fn()}}/>);
|
||||
}
|
||||
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = instance();
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('test backbutton', function () {
|
||||
const wrapper = instance();
|
||||
const func = jest.fn();
|
||||
wrapper.setProps({history: {push: func}});
|
||||
|
||||
expect(func).toHaveBeenCalledTimes(0);
|
||||
wrapper.find('button').simulate('click');
|
||||
expect(func).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it('test delete of tag', function () {
|
||||
const wrapper = instance();
|
||||
callAPIMock({result: 'success'});
|
||||
|
||||
// simulate button click
|
||||
wrapper.find('Button').props().onClick();
|
||||
|
||||
expect(wrapper.instance().props.history.push).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it('test delete of non empty tag', function () {
|
||||
const wrapper = instance();
|
||||
callAPIMock({result: 'not empty tag'});
|
||||
|
||||
// simulate button click
|
||||
wrapper.find('Button').props().onClick();
|
||||
|
||||
// expect SubmitPopup showing
|
||||
expect(wrapper.find('SubmitPopup')).toHaveLength(1);
|
||||
|
||||
// mock deleteTag function
|
||||
wrapper.instance().deleteTag = jest.fn((v) => {});
|
||||
|
||||
// simulate submit
|
||||
wrapper.find('SubmitPopup').props().submit();
|
||||
|
||||
// expect deleteTag function to have been called with force parameter
|
||||
expect(wrapper.instance().deleteTag).toHaveBeenCalledWith(true);
|
||||
});
|
||||
|
||||
it('test cancel of ', function () {
|
||||
const wrapper = instance();
|
||||
callAPIMock({result: 'not empty tag'});
|
||||
|
||||
// simulate button click
|
||||
wrapper.find('Button').props().onClick();
|
||||
|
||||
// expect SubmitPopup showing
|
||||
expect(wrapper.find('SubmitPopup')).toHaveLength(1);
|
||||
|
||||
// mock deleteTag function
|
||||
wrapper.instance().deleteTag = jest.fn((v) => {});
|
||||
|
||||
// simulate submit
|
||||
wrapper.find('SubmitPopup').props().onHide();
|
||||
|
||||
// expect deleteTag function to have been called with force parameter
|
||||
expect(wrapper.instance().deleteTag).toHaveBeenCalledTimes(0);
|
||||
});
|
||||
});
|
123
src/pages/CategoryPage/CategoryView.tsx
Normal file
123
src/pages/CategoryPage/CategoryView.tsx
Normal file
@ -0,0 +1,123 @@
|
||||
import {RouteComponentProps} from 'react-router';
|
||||
import React from 'react';
|
||||
import VideoContainer from '../../elements/VideoContainer/VideoContainer';
|
||||
import {APINode, callAPI} from '../../utils/Api';
|
||||
import {withRouter} from 'react-router-dom';
|
||||
import {VideoTypes} from '../../types/ApiTypes';
|
||||
import PageTitle, {Line} from '../../elements/PageTitle/PageTitle';
|
||||
import SideBar, {SideBarTitle} from '../../elements/SideBar/SideBar';
|
||||
import Tag from '../../elements/Tag/Tag';
|
||||
import {DefaultTags, GeneralSuccess} from '../../types/GeneralTypes';
|
||||
import {Button} from '../../elements/GPElements/Button';
|
||||
import SubmitPopup from '../../elements/Popups/SubmitPopup/SubmitPopup';
|
||||
|
||||
interface CategoryViewProps extends RouteComponentProps<{ id: string }> {}
|
||||
|
||||
interface CategoryViewState {
|
||||
loaded: boolean;
|
||||
submitForceDelete: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* plain class (for unit testing only)
|
||||
*/
|
||||
export class CategoryView extends React.Component<CategoryViewProps, CategoryViewState> {
|
||||
private videodata: VideoTypes.VideoUnloadedType[] = [];
|
||||
|
||||
constructor(props: CategoryViewProps) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
loaded: false,
|
||||
submitForceDelete: false
|
||||
};
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
this.fetchVideoData(parseInt(this.props.match.params.id));
|
||||
}
|
||||
|
||||
componentDidUpdate(prevProps: Readonly<CategoryViewProps>, prevState: Readonly<CategoryViewState>): void {
|
||||
// trigger video refresh if id changed
|
||||
if (prevProps.match.params.id !== this.props.match.params.id) {
|
||||
this.setState({loaded: false});
|
||||
this.fetchVideoData(parseInt(this.props.match.params.id));
|
||||
}
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<PageTitle
|
||||
title='Categories'
|
||||
subtitle={this.videodata.length + ' Videos'}/>
|
||||
|
||||
<SideBar>
|
||||
<SideBarTitle>Default Tags:</SideBarTitle>
|
||||
<Tag tagInfo={DefaultTags.all}/>
|
||||
<Tag tagInfo={DefaultTags.fullhd}/>
|
||||
<Tag tagInfo={DefaultTags.hd}/>
|
||||
<Tag tagInfo={DefaultTags.lowq}/>
|
||||
|
||||
<Line/>
|
||||
<Button title='Delete Tag' onClick={(): void => {this.deleteTag(false);}} color={{backgroundColor: 'red'}}/>
|
||||
</SideBar>
|
||||
{this.state.loaded ?
|
||||
<VideoContainer
|
||||
data={this.videodata}/> : null}
|
||||
|
||||
<button data-testid='backbtn' className='btn btn-success'
|
||||
onClick={(): void => {
|
||||
this.props.history.push('/categories');
|
||||
}}>Back to Categories
|
||||
</button>
|
||||
{this.handlePopups()}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
private handlePopups(): JSX.Element {
|
||||
if (this.state.submitForceDelete) {
|
||||
return (<SubmitPopup
|
||||
onHide={(): void => this.setState({submitForceDelete: false})}
|
||||
submit={(): void => {this.deleteTag(true);}}/>);
|
||||
} else {
|
||||
return <></>;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* fetch data for a specific tag from backend
|
||||
* @param id tagid
|
||||
*/
|
||||
private fetchVideoData(id: number): void {
|
||||
callAPI<VideoTypes.VideoUnloadedType[]>(APINode.Video, {action: 'getMovies', tag: id}, result => {
|
||||
this.videodata = result;
|
||||
this.setState({loaded: true});
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* delete the current tag
|
||||
*/
|
||||
private deleteTag(force: boolean): void {
|
||||
callAPI<GeneralSuccess>(APINode.Tags, {
|
||||
action: 'deleteTag',
|
||||
tagId: parseInt(this.props.match.params.id),
|
||||
force: force
|
||||
}, result => {
|
||||
console.log(result.result);
|
||||
if (result.result === 'success') {
|
||||
this.props.history.push('/categories');
|
||||
} else if (result.result === 'not empty tag') {
|
||||
// show submisison tag to ask if really delete
|
||||
this.setState({submitForceDelete: true});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* export with react Router wrapped (default use)
|
||||
*/
|
||||
export const CategoryViewWR = withRouter(CategoryView);
|
43
src/pages/CategoryPage/TagView.test.js
Normal file
43
src/pages/CategoryPage/TagView.test.js
Normal file
@ -0,0 +1,43 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import TagView from './TagView';
|
||||
|
||||
describe('<TagView/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<TagView/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
it('test Tag insertion', function () {
|
||||
const wrapper = shallow(<TagView/>);
|
||||
wrapper.setState({loadedtags: [{tag_name: 'test', tag_id: 42}]});
|
||||
|
||||
expect(wrapper.find('TagPreview')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('test new tag popup', function () {
|
||||
const wrapper = shallow(<TagView/>);
|
||||
|
||||
expect(wrapper.find('NewTagPopup')).toHaveLength(0);
|
||||
wrapper.find('[data-testid="btnaddtag"]').simulate('click');
|
||||
// newtagpopup should be showing now
|
||||
expect(wrapper.find('NewTagPopup')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('test add popup', function () {
|
||||
const wrapper = shallow(<TagView/>);
|
||||
|
||||
expect(wrapper.find('NewTagPopup')).toHaveLength(0);
|
||||
wrapper.setState({popupvisible: true});
|
||||
expect(wrapper.find('NewTagPopup')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('test hiding of popup', function () {
|
||||
const wrapper = shallow(<TagView/>);
|
||||
wrapper.setState({popupvisible: true});
|
||||
|
||||
wrapper.find('NewTagPopup').props().onHide();
|
||||
|
||||
expect(wrapper.find('NewTagPopup')).toHaveLength(0);
|
||||
});
|
||||
});
|
90
src/pages/CategoryPage/TagView.tsx
Normal file
90
src/pages/CategoryPage/TagView.tsx
Normal file
@ -0,0 +1,90 @@
|
||||
import {TagType} from '../../types/VideoTypes';
|
||||
import React from 'react';
|
||||
import videocontainerstyle from '../../elements/VideoContainer/VideoContainer.module.css';
|
||||
import {Link} from 'react-router-dom';
|
||||
import {TagPreview} from '../../elements/Preview/Preview';
|
||||
import {APINode, callAPI} from '../../utils/Api';
|
||||
import PageTitle, {Line} from '../../elements/PageTitle/PageTitle';
|
||||
import SideBar, {SideBarTitle} from '../../elements/SideBar/SideBar';
|
||||
import Tag from '../../elements/Tag/Tag';
|
||||
import {DefaultTags} from '../../types/GeneralTypes';
|
||||
import NewTagPopup from '../../elements/Popups/NewTagPopup/NewTagPopup';
|
||||
|
||||
interface TagViewState {
|
||||
loadedtags: TagType[];
|
||||
popupvisible: boolean;
|
||||
}
|
||||
|
||||
interface props {}
|
||||
|
||||
class TagView extends React.Component<props, TagViewState> {
|
||||
constructor(props: props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
loadedtags: [],
|
||||
popupvisible: false
|
||||
};
|
||||
}
|
||||
|
||||
componentDidMount(): void {
|
||||
this.loadTags();
|
||||
}
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<PageTitle
|
||||
title='Categories'
|
||||
subtitle={this.state.loadedtags.length + ' different Tags'}/>
|
||||
|
||||
<SideBar>
|
||||
<SideBarTitle>Default Tags:</SideBarTitle>
|
||||
<Tag tagInfo={DefaultTags.all}/>
|
||||
<Tag tagInfo={DefaultTags.fullhd}/>
|
||||
<Tag tagInfo={DefaultTags.hd}/>
|
||||
<Tag tagInfo={DefaultTags.lowq}/>
|
||||
|
||||
<Line/>
|
||||
<button data-testid='btnaddtag' className='btn btn-success' onClick={(): void => {
|
||||
this.setState({popupvisible: true});
|
||||
}}>Add a new Tag!
|
||||
</button>
|
||||
</SideBar>
|
||||
<div className={videocontainerstyle.maincontent}>
|
||||
{this.state.loadedtags ?
|
||||
this.state.loadedtags.map((m) => (
|
||||
<Link to={'/categories/' + m.tag_id} key={m.tag_id}>
|
||||
<TagPreview name={m.tag_name}/></Link>
|
||||
)) :
|
||||
'loading'}
|
||||
</div>
|
||||
{this.handlePopups()}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* load all available tags from db.
|
||||
*/
|
||||
loadTags(): void {
|
||||
callAPI<TagType[]>(APINode.Tags, {action: 'getAllTags'}, result => {
|
||||
this.setState({loadedtags: result});
|
||||
});
|
||||
}
|
||||
|
||||
private handlePopups(): JSX.Element {
|
||||
if (this.state.popupvisible) {
|
||||
return (
|
||||
<NewTagPopup onHide={(): void => {
|
||||
this.setState({popupvisible: false});
|
||||
this.loadTags();
|
||||
}}/>
|
||||
);
|
||||
} else {
|
||||
return (<></>);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default TagView;
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user