-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a class to LORIS to represent an installed LORIS instance. It is primarily a stub that can be expanded in the future. Resolves #6022
- Loading branch information
Showing
4 changed files
with
130 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace LORIS; | ||
|
||
/** | ||
* A LorisInstance represents an installed instance of a LORIS | ||
* project. | ||
* | ||
* @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 | ||
*/ | ||
class LorisInstance | ||
{ | ||
protected $modulesDirs; | ||
private $DB; | ||
|
||
/** | ||
* Construct a LORISInstance for the install connected to $db | ||
* which uses modules from $moduleDirs. | ||
* | ||
* @param \Database $db A database connection to this | ||
* instance. | ||
* @param string[] $moduleDirs A list of directories that may | ||
* contain modules for this instance. | ||
*/ | ||
public function __construct(\Database $db, array $modulesDirs) | ||
{ | ||
$this->DB = $db; | ||
$this->modulesDirs = $modulesDirs; | ||
} | ||
|
||
/** | ||
* Return an active database connection to this instance. | ||
* | ||
* @return \Database | ||
*/ | ||
public function getDatabaseConnection() : \Database | ||
{ | ||
return $this->DB; | ||
} | ||
|
||
/** | ||
* Return a list of directories on the filesystem which | ||
* may contain modules. | ||
* | ||
* @return string[] | ||
*/ | ||
private function getModulesDirs() : array | ||
{ | ||
return $this->modulesDirs; | ||
} | ||
|
||
/** | ||
* Retrieve all active module descriptors from the given database. | ||
* | ||
* @param \Database $db an open connection to a database containing a 'modules' | ||
* table | ||
* | ||
* @return \Module[] | ||
*/ | ||
public function getActiveModules(): array | ||
{ | ||
$mnames = $this->getDatabaseConnection()->pselectCol( | ||
"SELECT Name FROM modules WHERE Active='Y'", | ||
[] | ||
); | ||
|
||
$modules = []; | ||
foreach ($mnames as $name) { | ||
try { | ||
$modules[] = \Module::factory($name); | ||
} catch (\LorisModuleMissingException $e) { | ||
error_log($e->getMessage() . " " . $e->getTraceAsString()); | ||
} | ||
} | ||
return $modules; | ||
} | ||
|
||
/** | ||
* Return true if the LORISInstance has a module named | ||
* $name. To be installed it must be both available on | ||
* the filesystem, and active in the modules table. | ||
* | ||
* @return bool | ||
*/ | ||
public function hasModule(string $name) : bool | ||
{ | ||
$dirs = $this->getModulesDirs(); | ||
$found = false; | ||
foreach ($dirs as $subdir) { | ||
if (is_dir($subdir . "/" . $name)) { | ||
$found = true; | ||
break; | ||
} | ||
} | ||
|
||
if ($found === false) { | ||
return false; | ||
} | ||
|
||
foreach ($this->getActiveModules() as $module) { | ||
if ($module->getName() == $name) { | ||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters