2019-03-05 14:54:42 +01:00
|
|
|
<?php declare(strict_types=1);
|
2019-03-05 14:37:41 +01:00
|
|
|
|
2019-02-23 22:41:13 +01:00
|
|
|
/**
|
2019-03-05 14:37:41 +01:00
|
|
|
*
|
|
|
|
* part-db version 0.1
|
|
|
|
* Copyright (C) 2005 Christoph Lechner
|
|
|
|
* http://www.cl-projects.de/
|
|
|
|
*
|
|
|
|
* part-db version 0.2+
|
|
|
|
* Copyright (C) 2009 K. Jacobs and others (see authors.php)
|
|
|
|
* http://code.google.com/p/part-db/
|
|
|
|
*
|
|
|
|
* Part-DB Version 0.4+
|
|
|
|
* Copyright (C) 2016 - 2019 Jan Böhmer
|
|
|
|
* https://github.com/jbtronics
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
2019-02-23 22:41:13 +01:00
|
|
|
*/
|
|
|
|
|
2019-03-05 14:37:41 +01:00
|
|
|
|
2019-02-23 22:41:13 +01:00
|
|
|
namespace App\Entity;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Footprint
|
|
|
|
* @package App\Entity
|
|
|
|
*
|
|
|
|
* @ORM\Entity()
|
|
|
|
* @ORM\Table("footprints")
|
|
|
|
*/
|
|
|
|
class Footprint extends PartsContainingDBElement
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ORM\OneToMany(targetEntity="Footprint", mappedBy="parent")
|
|
|
|
*/
|
|
|
|
protected $children;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ORM\ManyToOne(targetEntity="Footprint", inversedBy="children")
|
|
|
|
* @ORM\JoinColumn(name="parent_id", referencedColumnName="id")
|
|
|
|
*/
|
|
|
|
protected $parent;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @ORM\Column(type="string")
|
|
|
|
*/
|
|
|
|
protected $filename;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ORM\OneToMany(targetEntity="Part", mappedBy="footprint")
|
|
|
|
*/
|
|
|
|
protected $parts;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @ORM\Column(type="string")
|
|
|
|
*/
|
|
|
|
protected $filename_3d;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the ID as an string, defined by the element class.
|
|
|
|
* This should have a form like P000014, for a part with ID 14.
|
|
|
|
* @return string The ID as a string;
|
|
|
|
*/
|
|
|
|
public function getIDString(): string
|
|
|
|
{
|
|
|
|
return 'F' . sprintf('%06d', $this->getID());
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************
|
|
|
|
* Getters
|
|
|
|
****************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the filename of the picture (absolute path from filesystem root)
|
2019-03-12 19:39:02 +01:00
|
|
|
* @return string the saved filename in the DB
|
2019-03-13 13:23:12 +01:00
|
|
|
* * an empty string if there is no picture
|
2019-02-23 22:41:13 +01:00
|
|
|
*/
|
2019-03-12 19:39:02 +01:00
|
|
|
public function getFilename() : string
|
2019-02-23 22:41:13 +01:00
|
|
|
{
|
2019-03-12 19:39:02 +01:00
|
|
|
return $this->filename;
|
2019-02-23 22:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the filename of the 3d model (absolute path from filesystem root)
|
|
|
|
*
|
|
|
|
* @param bool $absolute If set to true, then the absolute filename (from system root) is returned.
|
|
|
|
* If set to false, then the path relative to Part-DB folder is returned.
|
|
|
|
*
|
2019-03-13 13:23:12 +01:00
|
|
|
* @return string * the absolute path to the model (from filesystem root), as a UNIX path (with slashes)
|
|
|
|
* * an empty string if there is no model
|
2019-02-23 22:41:13 +01:00
|
|
|
*/
|
|
|
|
public function get3dFilename(bool $absolute = true) : string
|
|
|
|
{
|
2019-03-20 22:53:06 +01:00
|
|
|
if ($absolute === true) {
|
2019-02-23 22:41:13 +01:00
|
|
|
//TODO
|
2019-03-20 22:53:06 +01:00
|
|
|
throw new \Exception('Not Implemented yet...');
|
2019-02-23 22:41:13 +01:00
|
|
|
//return str_replace('%BASE%', BASE, $this->db_data['filename_3d']);
|
|
|
|
}
|
2019-03-20 22:53:06 +01:00
|
|
|
|
|
|
|
return $this->filename_3d;
|
2019-02-23 22:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the filename of this footprint is valid (picture exists)
|
|
|
|
*
|
|
|
|
* This method is used to get all footprints with broken filename
|
|
|
|
* (Footprint::get_broken_filename_footprints()).
|
|
|
|
*
|
2019-03-05 14:15:18 +01:00
|
|
|
* An empty filename is a valid filename.
|
2019-02-23 22:41:13 +01:00
|
|
|
*
|
2019-03-13 13:23:12 +01:00
|
|
|
* @return boolean * true if file exists or filename is empty
|
|
|
|
* * false if there is no file with this filename
|
2019-02-23 22:41:13 +01:00
|
|
|
*/
|
|
|
|
public function isFilenameValid() : bool
|
|
|
|
{
|
|
|
|
if (empty($this->getFilename())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return file_exists($this->getFilename());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the filename of this 3d footprint is valid (model exists and have )
|
|
|
|
*
|
|
|
|
* This method is used to get all footprints with broken 3d filename
|
|
|
|
* (Footprint::get_broken_3d_filename_footprints()).
|
|
|
|
*
|
2019-03-05 14:15:18 +01:00
|
|
|
* An empty filename is a valid filename.
|
2019-02-23 22:41:13 +01:00
|
|
|
*
|
2019-03-13 13:23:12 +01:00
|
|
|
* @return boolean * true if file exists or filename is empty
|
|
|
|
* * false if there is no file with this filename
|
2019-02-23 22:41:13 +01:00
|
|
|
*/
|
|
|
|
public function is3dFilenameValid() : bool
|
|
|
|
{
|
|
|
|
if (empty($this->get3dFilename())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Check if file is X3D-Model (these has .x3d extension)
|
2019-03-20 22:53:06 +01:00
|
|
|
if (strpos($this->get3dFilename(), '.x3d') === false) {
|
2019-02-23 22:41:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return file_exists($this->get3dFilename());
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Setters
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/********************************************************************************
|
|
|
|
*
|
|
|
|
* Setters
|
|
|
|
*
|
|
|
|
*********************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change the filename of this footprint
|
|
|
|
*
|
2019-03-05 14:15:18 +01:00
|
|
|
* The filename won't be checked if it is valid.
|
2019-02-23 22:41:13 +01:00
|
|
|
* It's not really a Problem if there is no such file...
|
|
|
|
* (For this purpose we have the method Footprint::get_broken_filename_footprints())
|
|
|
|
*
|
2019-03-13 13:23:12 +01:00
|
|
|
* @param string $new_filename * the new filename (absolute path from filesystem root, as a UNIX path [only slashes!] !! )
|
|
|
|
* * see also lib.functions.php::to_unix_path()
|
2019-02-23 22:41:13 +01:00
|
|
|
*
|
2019-03-05 14:15:18 +01:00
|
|
|
* It's really important that you pass the whole (UNIX) path from filesystem root!
|
2019-02-23 22:41:13 +01:00
|
|
|
* If the file is located in the base directory of Part-DB, the base path
|
|
|
|
* will be automatically replaced with a placeholder before write it in the database.
|
|
|
|
* This way, the filenames are still correct if the installation directory
|
|
|
|
* of Part-DB is moved.
|
|
|
|
*
|
2019-03-05 14:15:18 +01:00
|
|
|
* The path-replacing will be done in Footprint::check_values_validity(), not here.
|
2019-02-23 22:41:13 +01:00
|
|
|
*
|
|
|
|
* @throws Exception if there was an error
|
|
|
|
*/
|
2019-02-24 12:54:11 +01:00
|
|
|
public function setFilename(string $new_filename) : self
|
2019-02-23 22:41:13 +01:00
|
|
|
{
|
|
|
|
$this->filename = $new_filename;
|
2019-02-24 12:54:11 +01:00
|
|
|
return $this;
|
2019-02-23 22:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change the 3d model filename of this footprint
|
|
|
|
* @throws Exception if there was an error
|
|
|
|
*/
|
2019-02-24 12:54:11 +01:00
|
|
|
public function set3dFilename(string $new_filename) : self
|
2019-02-23 22:41:13 +01:00
|
|
|
{
|
|
|
|
$this->filename = $new_filename;
|
2019-02-24 12:54:11 +01:00
|
|
|
return $this;
|
2019-02-23 22:41:13 +01:00
|
|
|
}
|
|
|
|
}
|