- Add videodb PHP/MySQL media collection manager (Blu-ray, DVD, CD) - Dockerfile: PHP 8.1 + Apache with GD/mysqli/exif extensions - docker-compose.yml: app on port 6761 + MySQL 8.0 with health checks - docker-entrypoint.sh: auto-generates config.inc.php from env vars, waits for MySQL, initializes DB schema idempotently - init-db.php: CLI schema installer using app's own prefix_query() logic - Persistent volumes for DB, cache, and cover images Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
68 lines
1.3 KiB
PHP
68 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* transfer ownerless to moves to one user
|
|
*
|
|
* @package Contrib
|
|
* @author Chinamann <chinamann@users.sourceforge.net>
|
|
*
|
|
* @meta ACCESS:PERM_ADMIN
|
|
*/
|
|
|
|
// move out of contrib for includes
|
|
chdir('..');
|
|
|
|
require_once './core/functions.php';
|
|
require_once './core/output.php';
|
|
|
|
// check for localnet
|
|
localnet_or_die();
|
|
|
|
// multiuser permission check
|
|
permission_or_die(PERM_ADMIN);
|
|
|
|
$owners = out_owners(null, 0, true);
|
|
|
|
if (empty($owner_id)) $owner_id = $_COOKIE['VDBuserid'];
|
|
|
|
if ($convert)
|
|
{
|
|
runSQL("UPDATE ".TBL_DATA."
|
|
SET owner_id = ".$owner_id."
|
|
WHERE owner_id = 0");
|
|
// show the saved movie
|
|
header('Location: ../index.php');
|
|
exit();
|
|
}
|
|
else
|
|
{
|
|
?>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title>Transfer ownerless movies to a user</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
</head>
|
|
|
|
<body>
|
|
<form action="<?php echo $_SERVER['PHP_SELF']?>">
|
|
<h3>Do you realy want to convert all ownerless movies to be owned by <SELECT name='owner_id'>
|
|
<?
|
|
|
|
foreach (array_keys($owners) as $owner)
|
|
{
|
|
if ($owner == $owner_id) $selected = "selected";
|
|
else $selected = "";
|
|
print "<OPTION $selected value='$owner'>".$owners[$owner]."</OPTION>\n";
|
|
}
|
|
?></SELECT> ?</h3>
|
|
|
|
<input type="submit" name="convert" value="Convert" />
|
|
</form>
|
|
<?
|
|
}
|
|
?>
|
|
|
|
</body>
|
|
</html>
|