ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BlogHtmlExport.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ilFileUtils;
25 
27 {
28  protected \ILIAS\components\Export\HTML\ExportCollector $collector;
29  protected \ilObjBlog $blog;
30  protected \ilObjBlogGUI $blog_gui;
31  protected string $export_dir;
32  protected string $sub_dir;
33  protected string $target_dir;
34  protected \ILIAS\GlobalScreen\Services $global_screen;
35  protected Util $export_util;
36  protected \ilCOPageHTMLExport $co_page_html_export;
37  protected \ilLanguage $lng;
38  protected \ilTabsGUI $tabs;
39  protected array $items;
40  protected static array $keyword_export_map;
41  protected array $keywords;
42  protected bool $include_comments = false;
43  protected bool $print_version = false;
44  protected static bool $export_key_set = false;
45  protected \ILIAS\Style\Content\Object\ObjectFacade $content_style_domain;
46 
47  public function __construct(
48  \ilObjBlogGUI $blog_gui,
49  string $exp_dir,
50  string $sub_dir,
51  bool $set_export_key = true
52  ) {
53  global $DIC;
54 
55  $this->blog_gui = $blog_gui;
57  $blog = $blog_gui->getObject();
58  $this->collector = $DIC->export()->domain()->html()->collector($blog->getId());
59  $this->collector->init();
60 
61  $this->blog = $blog;
62  $this->export_dir = $exp_dir;
63  $this->sub_dir = $sub_dir;
64  $this->target_dir = $exp_dir . "/" . $sub_dir;
65 
66  $this->global_screen = $DIC->globalScreen();
67  $this->export_util = new Util("", "", $this->collector);
68  $this->co_page_html_export = new \ilCOPageHTMLExport($this->target_dir, null, 0, $this->collector);
69  $this->tabs = $DIC->tabs();
70  $this->lng = $DIC->language();
71 
72  $this->items = $this->blog_gui->getItems();
73  $this->keywords = $this->blog_gui->getKeywords(false);
74  if ($set_export_key && !self::$export_key_set) {
75  self::$export_key_set = true;
76  $this->global_screen->tool()->context()->current()->addAdditionalData(
78  true
79  );
80  }
81 
82  $cs = $DIC->contentStyle();
83  if ($this->blog_gui->getIdType() === \ilObject2GUI::REPOSITORY_NODE_ID) {
84  $this->content_style_domain = $cs->domain()->styleForRefId($this->blog->getRefId());
85  } else {
86  $this->content_style_domain = $cs->domain()->styleForObjId($this->blog->getId());
87  }
88  }
89  protected function init(): void
90  {
91  }
92 
93  public function setPrintVersion(bool $print_version): void
94  {
95  $this->print_version = $print_version;
96  }
97 
98  public function includeComments(
99  bool $a_include_comments
100  ): void {
101  $this->include_comments = $a_include_comments;
102  }
103 
104  protected function initDirectories(): void
105  {
106  // initialize temporary target directory
107  ilFileUtils::delDir($this->target_dir);
108  ilFileUtils::makeDir($this->target_dir);
109  }
110 
116  public function exportHTML(): string
117  {
118  $this->initDirectories();
119 
120  $this->export_util->exportSystemStyle();
121 
122  $this->export_util->exportCOPageFiles(
123  $this->content_style_domain->getEffectiveStyleId(),
124  "blog"
125  );
126  /*
127  \ilObjUser::copyProfilePicturesToDirectory($this->blog->getOwner(), $this->target_dir);
128  */
129  // export pages
130  if ($this->print_version) {
131  $this->exportHTMLPagesPrint();
132  } else {
133  $this->exportHTMLPages();
134  }
135  /*
136  // export comments user images
137  $this->exportUserImages();
138  */
139  $this->export_util->exportResourceFiles();
140  $this->co_page_html_export->exportPageElements();
141 
142  return $this->zipPackage();
143  }
144 
145  protected function exportUserImages(): void
146  {
147  if ($this->include_comments) {
148  $user_export = new \ILIAS\Notes\Export\UserImageExporter();
149  $user_export->exportUserImagesForRepObjId($this->target_dir, $this->blog->getId());
150  }
151  }
152 
153  public function zipPackage(): string
154  {
155  // zip it all
156  $date = time();
157  $type = ($this->include_comments)
158  ? "html_comments"
159  : "html";
160  $zip_file = \ilExport::_getExportDirectory($this->blog->getId(), $type, "blog") .
161  "/" . $date . "__" . IL_INST_ID . "__" .
162  $this->blog->getType() . "_" . $this->blog->getId() . ".zip";
163  ilFileUtils::zip($this->target_dir, $zip_file);
164  ilFileUtils::delDir($this->target_dir);
165  return $zip_file;
166  }
167 
173  public function exportHTMLPages(
174  ?string $a_link_template = null,
175  ?\Closure $a_tpl_callback = null,
176  ?\ilCOPageHTMLExport $a_co_page_html_export = null,
177  string $a_index_name = "index.html"
178  ): void {
179  if (!$a_link_template) {
180  $a_link_template = "bl{TYPE}_{ID}.html";
181  }
182 
183  if ($a_co_page_html_export) {
184  $this->co_page_html_export = $a_co_page_html_export;
185  }
186 
187  // lists
188 
189  // global nav
190  $nav = $this->blog_gui->renderNavigation("", "", $a_link_template);
191 
192  // month list
193  $has_index = false;
194  foreach (array_keys($this->items) as $month) {
195  $list = $this->blog_gui->renderList($this->items[$month], "render", $a_link_template, false, $this->target_dir);
196 
197  if (!$list) {
198  continue;
199  }
200 
201  if (!$a_tpl_callback) {
202  $tpl = $this->getInitialisedTemplate();
203  } else {
204  $tpl = $a_tpl_callback();
205  }
206 
207  $file = self::buildExportLink($a_link_template, "list", $month, $this->keywords);
208  $file = $this->writeExportFile($file, $tpl, $list, $nav);
209 
210  if (!$has_index) {
211  $file = $this->writeExportFile($a_index_name, $tpl, $list, $nav);
212  $has_index = true;
213  }
214  }
215 
216  // keywords
217  foreach (array_keys($this->blog_gui->getKeywords(false)) as $keyword) {
218  $list_items = $this->blog_gui->filterItemsByKeyword($this->items, $keyword);
219  $list = $this->blog_gui->renderList($list_items, "render", $a_link_template, false, $this->target_dir);
220 
221  if (!$list) {
222  continue;
223  }
224 
225  if (!$a_tpl_callback) {
226  $tpl = $this->getInitialisedTemplate();
227  } else {
228  $tpl = $a_tpl_callback();
229  }
230 
231  $file = self::buildExportLink($a_link_template, "keyword", $keyword, $this->keywords);
232  $file = $this->writeExportFile($file, $tpl, $list, $nav);
233  }
234 
235 
236  // single postings
237 
238  $pages = \ilBlogPosting::getAllPostings($this->blog->getId(), 0);
239  foreach ($pages as $page) {
240  if (\ilBlogPosting::_exists("blp", $page["id"])) {
241  $blp_gui = new \ilBlogPostingGUI(0, null, $page["id"]);
242  $blp_gui->setOutputMode("offline");
243  $blp_gui->setFullscreenLink("fullscreen.html"); // #12930 - see page.xsl
244  $blp_gui->add_date = true;
245  $page_content = $blp_gui->showPage();
246 
247  $back = self::buildExportLink(
248  $a_link_template,
249  "list",
250  substr($page["created"]->get(IL_CAL_DATE), 0, 7),
251  $this->keywords
252  );
253 
254  $file = self::buildExportLink($a_link_template, "posting", (string) $page["id"], $this->keywords);
255 
256  if (!$a_tpl_callback) {
257  $tpl = $this->getInitialisedTemplate();
258  } else {
259  $tpl = $a_tpl_callback();
260  }
261 
263  ? $blp_gui->getCommentsHTMLExport()
264  : "";
265 
266  // posting nav
267  $nav = $this->blog_gui->renderNavigation(
268  "",
269  "",
270  $a_link_template,
271  false,
272  $page["id"]
273  );
274 
275  $this->writeExportFile($file, $tpl, $page_content, $nav, (bool) $back, $comments);
276 
277  $this->co_page_html_export->collectPageElements("blp:pg", $page["id"]);
278  }
279  }
280 
281  if (!$has_index) {
282  if (!$a_tpl_callback) {
283  $tpl = $this->getInitialisedTemplate();
284  } else {
285  $tpl = $a_tpl_callback();
286  }
287  $file = $this->writeExportFile($a_index_name, $tpl, "", $nav);
288  }
289  }
290 
294  public function exportHTMLPagesPrint(): void
295  {
296  $this->collectAllPagesPageElements($this->co_page_html_export);
297 
298  // render print view
299  $print_view = $this->blog_gui->getPrintView();
300  $print_view->setOffline(true);
301  $html = $print_view->renderPrintView();
302  file_put_contents($this->target_dir . "/index.html", $html);
303  }
304 
305 
306  public function collectAllPagesPageElements(\ilCOPageHTMLExport $co_page_html_export): void
307  {
308  $pages = \ilBlogPosting::getAllPostings($this->blog->getId(), 0);
309  foreach ($pages as $page) {
310  if (\ilBlogPosting::_exists("blp", $page["id"])) {
311  $co_page_html_export->collectPageElements("blp:pg", $page["id"]);
312  }
313  }
314  }
315 
319  public static function buildExportLink(
320  string $a_template,
321  string $a_type,
322  string $a_id,
323  array $keywords
324  ): string {
325  switch ($a_type) {
326  case "list":
327  $a_type = "m";
328  break;
329 
330  case "keyword":
331  if (!isset(self::$keyword_export_map)) {
332  self::$keyword_export_map = array_flip(array_keys($keywords));
333  }
334  $a_id = (string) (self::$keyword_export_map[$a_id] ?? "");
335  $a_type = "k";
336  break;
337 
338  default:
339  $a_type = "p";
340  break;
341  }
342 
343  return str_replace(array("{TYPE}", "{ID}"), array($a_type, $a_id), $a_template);
344  }
345 
349  protected function getInitialisedTemplate(
350  string $a_back_url = ""
352  global $DIC;
353 
354  $this->global_screen->layout()->meta()->reset();
355 
356  $location_stylesheet = \ilUtil::getStyleSheetLocation();
357  $this->global_screen->layout()->meta()->addCss($location_stylesheet);
358  $this->global_screen->layout()->meta()->addCss(
360  );
362 
363  $tabs = $DIC->tabs();
364  $tabs->clearTargets();
365  $tabs->clearSubTabs();
366  if ($a_back_url) {
367  $tabs->setBackTarget($this->lng->txt("back"), $a_back_url);
368  }
369  $tpl = new \ilGlobalPageTemplate($DIC->globalScreen(), $DIC->ui(), $DIC->http());
370 
371  $this->co_page_html_export->getPreparedMainTemplate($tpl);
372 
373  $this->blog_gui->renderFullscreenHeader($tpl, $this->blog->getOwner(), true);
374 
375  return $tpl;
376  }
377 
382  protected function writeExportFile(
383  string $a_file,
384  \ilGlobalPageTemplate $a_tpl,
385  string $a_content,
386  string $a_right_content = "",
387  bool $a_back = false,
388  string $comments = ""
389  ): string {
390  $file = $this->target_dir . "/" . $a_file;
391 
392  // export template: page content
393  $ep_tpl = new \ilTemplate(
394  "tpl.export_page.html",
395  true,
396  true,
397  "components/ILIAS/Blog"
398  );
399  if ($a_back) {
400  $ep_tpl->setVariable("PAGE_CONTENT", $a_content);
401  $ep_tpl->setVariable("COMMENTS", $comments);
402  } else {
403  $ep_tpl->setVariable("LIST", $a_content);
404  }
405  $a_tpl->setContent($ep_tpl->get());
406  unset($ep_tpl);
407 
408  // template: right content
409  if ($a_right_content) {
410  $a_tpl->setRightContent($a_right_content);
411  }
412 
413  $content = $a_tpl->printToString();
414 
415  // open file
416  // file_put_contents($file, $content);
417  $this->collector->addString($content, $a_file);
418 
419  return $file;
420  }
421 
422  public function delete(): void
423  {
424  $this->collector->delete();
425  }
426 
427  public function getFilePath(): string
428  {
429  return $this->collector->getFilePath();
430  }
431 
432 }
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
const IL_INST_ID
Definition: constants.php:40
ILIAS components Export HTML ExportCollector $collector
static getAllPostings(int $a_blog_id, int $a_limit=1000, int $a_offset=0)
Get all postings of blog.
HTML export class for pages.
exportHTMLPages(?string $a_link_template=null, ?\Closure $a_tpl_callback=null, ?\ilCOPageHTMLExport $a_co_page_html_export=null, string $a_index_name="index.html")
Export all pages (note: this one is called from the portfolio html export!)
collectPageElements(string $a_type, int $a_id, string $lang="")
Collect page elements (that need to be exported separately)
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object
static buildExportLink(string $a_template, string $a_type, string $a_id, array $keywords)
Build static export link.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
exportHTMLPagesPrint()
Export all pages as one print version.
setRightContent(string $a_html)
Sets content of right column.
ilObjBlogGUI: ilBlogPostingGUI, ilWorkspaceAccessGUI ilObjBlogGUI: ilInfoScreenGUI, ilNoteGUI, ilCommonActionDispatcherGUI ilObjBlogGUI: ilPermissionGUI, ilObjectCopyGUI, ilRepositorySearchGUI ilObjBlogGUI: ilExportGUI, ilObjectContentStyleSettingsGUI, ilBlogExerciseGUI, ilObjNotificationSettingsGUI ilObjBlogGUI: ilObjectMetaDataGUI ilObjBlogGUI: ILIAS ilObjBlogGUI: ILIAS
__construct()
Constructor setup ILIAS global object public.
Definition: class.ilias.php:76
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
collectAllPagesPageElements(\ilCOPageHTMLExport $co_page_html_export)
global $DIC
Definition: shib_login.php:22
setPrintVersion(bool $print_version)
$comments
printToString()
Use this method to get the finally rendered page as string.
includeComments(bool $a_include_comments)
getInitialisedTemplate(string $a_back_url="")
Get initialised template.
static resetInitialState()
Reset initial state (for exports)
ILIAS GlobalScreen Services $global_screen
const IL_CAL_DATE
ILIAS Style Content Object ObjectFacade $content_style_domain
static zip(string $a_dir, string $a_file, bool $compress_content=false)
writeExportFile(string $a_file, \ilGlobalPageTemplate $a_tpl, string $a_content, string $a_right_content="", bool $a_back=false, string $comments="")
Write HTML to file.
setContent(string $a_html)
Sets content for standard template.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
ilCOPageHTMLExport $co_page_html_export