This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/File.php

138 lines
3.1 KiB
PHP
Raw Normal View History

<?php
2016-02-03 22:22:56 +00:00
/**
* Holds the file server.
*
* @package Sakura
*/
namespace Sakura;
2016-01-17 01:58:31 +00:00
use finfo;
/**
2016-02-02 21:04:15 +00:00
* Used for storing files served through Sakura.
*
* @package Sakura
2016-02-02 21:04:15 +00:00
* @author Julian van de Groep <me@flash.moe>
*/
class File
{
2016-02-02 21:04:15 +00:00
/**
* ID of the file.
* @var int
*/
2016-01-17 01:58:31 +00:00
public $id = 0;
2016-02-02 21:04:15 +00:00
/**
* User instance of the user that uploaded this file.
*
* @var User
*/
2016-01-17 01:58:31 +00:00
public $user = null;
2016-02-02 21:04:15 +00:00
/**
* Data of the file.
*
* @var string
*/
2016-01-17 01:58:31 +00:00
public $data = null;
2016-02-02 21:04:15 +00:00
/**
* Original filename of the file.
*
* @var string
*/
2016-01-17 01:58:31 +00:00
public $name = null;
2016-02-02 21:04:15 +00:00
/**
* Mime type of the file.
*
* @var string
*/
2016-01-17 01:58:31 +00:00
public $mime = null;
2016-02-02 21:04:15 +00:00
/**
* The UNIX timestamp of when this file was created.
*
* @var int
*/
2016-01-17 01:58:31 +00:00
public $time = 0;
2016-02-02 21:04:15 +00:00
/**
* The UNIX timestamp of when this file should automatically remove itself (currently unused).
*
* @var int
*/
2016-01-17 01:58:31 +00:00
public $expire = 0;
2016-02-02 21:04:15 +00:00
/**
* Create a new file.
*
* @param string $data Contents of the file.
* @param string $name Name of the file.
* @param User $user User instance of the user creating this file.
* @param int $expire UNIX timestamp of when this file should automatically remove itself.
*
* @return File The created file instance for the file.
*/
2016-01-17 01:58:31 +00:00
public static function create($data, $name, User $user, $expire = 0)
{
// Get the mimetype
$mime = (new finfo(FILEINFO_MIME_TYPE))->buffer($data);
// Insert it into the database
2016-02-18 23:28:44 +00:00
DB::prepare('INSERT INTO `{prefix}uploads` (`user_id`, `file_data`, `file_name`, `file_mime`, `file_time`, `file_expire`) VALUES (:id, :data, :name, :mime, :time, :expire)')
->execute([
'id' => $user->id,
'data' => $data,
'name' => $name,
'mime' => $mime,
'time' => time(),
'expire' => $expire,
2016-01-17 01:58:31 +00:00
]);
// Get the last insert id
2016-02-18 23:28:44 +00:00
$id = (int) DB::lastID();
2016-01-17 01:58:31 +00:00
// Return a new File object
return new File($id);
}
2016-02-02 21:04:15 +00:00
/**
* Constructor.
*
* @param int $fileId ID of the file that should be constructed.
*/
2016-01-17 01:58:31 +00:00
public function __construct($fileId)
{
// Attempt to get the database row
2016-02-18 23:28:44 +00:00
$fr = DB::prepare('SELECT * FROM `{prefix}uploads` WHERE `file_id` = :id');
$fr->execute([
'id' => $fileId,
]);
$fileRow = $fr->fetch();
2016-01-17 01:58:31 +00:00
// If anything was returned populate the variables
if ($fileRow) {
2016-02-18 23:28:44 +00:00
$this->id = $fileRow->file_id;
$this->user = User::construct($fileRow->user_id);
$this->data = $fileRow->file_data;
$this->name = $fileRow->file_name;
$this->mime = $fileRow->file_mime;
$this->time = $fileRow->file_time;
$this->expire = $fileRow->file_expire;
2016-01-17 01:58:31 +00:00
}
}
2016-02-02 21:04:15 +00:00
/**
* Delete this file from the database.
*/
2016-01-17 01:58:31 +00:00
public function delete()
{
2016-02-18 23:28:44 +00:00
DB::prepare('DELETE FROM `{prefix}uploads` WHERE `file_id` = :id')
->execute([
'id' => $this->id,
2016-01-17 01:58:31 +00:00
]);
}
}