PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
media
/
src
/
Chunks
<?php namespace Botble\Media\Chunks; use Botble\Media\Chunks\Storage\ChunkStorage; class ChunkFile { /** * @var string */ protected $path; /** * @var int */ protected $modifiedTime; /** * The chunk storage. * * @var ChunkStorage */ protected $storage; /** * Creates the chunk file. * * @param string $path * @param int $modifiedTime * @param ChunkStorage $storage */ public function __construct($path, $modifiedTime, $storage) { $this->path = $path; $this->modifiedTime = $modifiedTime; $this->storage = $storage; } /** * @return string */ public function getAbsolutePath() { return $this->storage->disk()->path($this->path); } /** * Moves the chunk file to given relative path (within the disk). * * @param string $pathTo * @return bool */ public function move($pathTo) { return $this->storage->disk()->move($this->path, $pathTo); } /** * Deletes the chunk file. * * @return bool */ public function delete() { return $this->storage->disk()->delete($this->path); } /** * The __toString method allows a class to decide how it will react when it is converted to a string. * * @return string */ public function __toString() { return sprintf('ChunkFile %s uploaded at %s', $this->getPath(), date('Y-m-d H:i:s', $this->getModifiedTime())); } /** * @return string relative to the disk */ public function getPath() { return $this->path; } /** * @return int */ public function getModifiedTime() { return $this->modifiedTime; } }
[+]
Exceptions
[+]
..
[+]
Storage
[+]
Receiver
[+]
Handler
[+]
Save
[-] ChunkFile.php
[edit]
[-] FileMerger.php
[edit]