ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAssQuestionProcessLockFileStorage.php
Go to the documentation of this file.
1 <?php
25 {
26  private $subPath;
27 
28  public function __construct(int $questionId, $userId)
29  {
31 
32  $this->initSubPath($userId);
33  }
34 
43  protected function getPathPrefix(): string
44  {
45  return 'ilAssQuestionProcessLocks';
46  }
47 
57  protected function getPathPostfix(): string
58  {
59  return 'question';
60  }
61 
62  public function getPath(): string
63  {
64  return parent::getPath() . '/' . $this->subPath;
65  }
66 
67  public function create(): void
68  {
69  set_error_handler(function ($severity, $message, $file, $line): void {
70  throw new ErrorException($message, $severity, 0, $file, $line);
71  });
72 
73  try {
74  parent::create($this->getPath());
75  restore_error_handler();
76  } catch (Exception $e) {
77  restore_error_handler();
78  }
79 
80  if (!$this->getFileSystemService()->has($this->path)) {
81  throw new ErrorException(sprintf('Could not find directory: %s', $this->getPath()));
82  }
83  }
84 
85  private function initSubPath($userId): void
86  {
87  $userId = (string) $userId;
88 
89  $path = array();
90 
91  for ($i = 0, $max = strlen($userId); $i < $max; $i++) {
92  $path[] = substr($userId, $i, 1);
93  }
94 
95  $this->subPath = implode('/', $path);
96  }
97 }
has(string $class_name)
__construct(Container $dic, ilPlugin $plugin)
$message
Definition: xapiexit.php:32
$i
Definition: metadata.php:41