26 protected \ILIAS\Wiki\Page\PageDBRepository
$repo;
28 protected \ILIAS\Wiki\InternalService
$service;
43 $this->service = $DIC->wiki()->internal();
45 $this->wiki_log = $this->service->domain()->log();
46 $this->repo = $this->service->repo()->page();
55 return $this->service->gui()->notification();
58 public function setTitle(
string $a_title): void
80 $this->parent_ref_id = $a_wiki_ref_id;
90 $this->blocked = $a_val;
100 $this->rating = $a_val;
110 $this->hide_adv_md = $a_val;
128 "SELECT id FROM il_wiki_page " .
129 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer") .
130 " AND lang = " .
$ilDB->quote($this->getLanguage(),
"text")
132 if ($rec =
$ilDB->fetchAssoc($set)) {
136 parent::createFromXML();
140 bool $a_import =
false 146 $id =
$ilDB->nextId(
"il_wiki_page");
150 $query =
"INSERT INTO il_wiki_page (" .
167 $this->wiki_log->debug($query);
168 $ilDB->manipulate($query);
172 parent::create($a_import);
195 $this->wiki_log->debug(
"collect internal links");
201 $ext_links = count($xpath->query(
'//IntLink'));
202 $ext_links += count($xpath->query(
'//ExtLink'));
204 $footnotes = count($xpath->query(
'//Footnote'));
209 $xml = strip_tags($xml);
212 $num_words = count(explode(
" ", $xml));
215 "int_links" => $int_links,
216 "ext_links" => $ext_links,
217 "footnotes" => $footnotes,
218 "num_words" => $num_words,
219 "num_chars" => $num_chars
221 $this->wiki_log->debug(
"handle stats");
230 bool $a_validate =
true,
231 bool $a_no_history =
false 234 $this->wiki_log->debug(
"start...");
236 $query =
"UPDATE il_wiki_page SET " .
240 ",rating = " .
$ilDB->quote((
int) $this->
getRating(),
"integer") .
242 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer") .
244 $ilDB->manipulate($query);
245 $updated = parent::update($a_validate, $a_no_history);
247 if ($updated ===
true) {
248 $this->wiki_log->debug(
"send notification");
258 $this->wiki_log->debug(
"update news");
269 bool $a_omit_page_read =
false 273 $query =
"SELECT * FROM il_wiki_page WHERE id = " .
277 $set =
$ilDB->query($query);
278 $rec =
$ilDB->fetchAssoc($set);
287 if (!$a_omit_page_read) {
293 public function delete():
void 295 $imp_pages = $this->service->domain()->importantPage($this->
getWikiRefId());
300 $linking_pages = self::getLinksToPage(
308 if ($imp_pages->isImportantPage($this->getId())) {
309 $imp_pages->removeImportantPage($this->
getId());
337 $missing_page_repo = $this->service->repo()->missingPage();
338 foreach ($linking_pages as $lp) {
339 $missing_page_repo->save(
352 $ilDB = $DIC->database();
355 $query =
"SELECT * FROM il_wiki_page" .
356 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer");
357 $set =
$ilDB->query($query);
359 while ($rec =
$ilDB->fetchAssoc($set)) {
360 $wiki_page =
new ilWikiPage($rec[
"id"], 0, $rec[
"lang"]);
361 $wiki_page->delete();
375 $ilDB = $DIC->database();
379 $query =
"SELECT id FROM il_wiki_page" .
380 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
381 " AND title = " .
$ilDB->quote($a_title,
"text") .
383 $set =
$ilDB->query($query);
384 if ($rec =
$ilDB->fetchAssoc($set)) {
406 $ilDB = $DIC->database();
410 $query =
"SELECT * FROM il_wiki_page" .
411 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
412 " AND title = " .
$ilDB->quote($a_title,
"text") .
414 $set =
$ilDB->query($query);
415 if ($rec =
$ilDB->fetchAssoc($set)) {
416 return (
int) $rec[
"id"];
426 $ilDB = $DIC->database();
428 $query =
"SELECT * FROM il_wiki_page" .
429 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer") .
431 $set =
$ilDB->query($query);
432 if ($rec =
$ilDB->fetchAssoc($set)) {
433 return (
string) $rec[
"title"];
443 $ilDB = $DIC->database();
445 $query =
"SELECT wiki_id FROM il_wiki_page" .
446 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer");
447 $set =
$ilDB->query($query);
448 if ($rec =
$ilDB->fetchAssoc($set)) {
449 return (
int) $rec[
"wiki_id"];
461 $ilDB = $DIC->database();
463 $pages = parent::getAllPages(
"wpg", $a_wiki_id);
465 $query =
"SELECT * FROM il_wiki_page" .
466 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
467 " AND lang = " .
$ilDB->quote(
$lang,
"text") .
469 $set =
$ilDB->query($query);
472 while ($rec =
$ilDB->fetchAssoc($set)) {
473 if (isset($pages[$rec[
"id"]])) {
474 $pg[$rec[
"id"]] = $pages[$rec[
"id"]];
475 $pg[$rec[
"id"]][
"title"] = $rec[
"title"];
492 $ilDB = $DIC->database();
496 foreach ($sources as $source) {
497 if ($source[
"type"] ===
"wpg:pg" && $source[
"lang"] ===
$lang) {
498 $ids[] = $source[
"id"];
503 $query =
"SELECT * FROM il_wiki_page wp, page_object p" .
504 " WHERE " .
$ilDB->in(
"wp.id", $ids,
false,
"integer") .
505 " AND wp.id = p.page_id AND wp.lang = p.lang AND p.parent_type = " .
$ilDB->quote(
"wpg",
"text") .
506 " AND wp.wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
507 " AND wp.lang = " .
$ilDB->quote(
$lang,
"text") .
509 $set =
$ilDB->query($query);
512 while ($rec =
$ilDB->fetchAssoc($set)) {
513 $pages[] = array_merge($rec, array(
"user" => $rec[
"last_change_user"],
514 "date" => $rec[
"last_change"]));
530 $ilDB = $DIC->database();
534 $query =
"SELECT id FROM il_wiki_page" .
535 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
536 " AND title = " .
$ilDB->quote($a_title,
"text") .
538 $set =
$ilDB->query($query);
540 if (
$ilDB->fetchAssoc($set)) {
550 return parent::getParentObjectContributors(
"wpg", $a_wiki_id);
556 return parent::getPageContributors(
"wpg", $a_page_id);
562 parent::saveInternalLinks($a_domdoc);
565 $link_manager = $this->service->domain()->links($this->
getWikiRefId());
566 $link_manager->saveInternalLinksForPage(
582 return self::getPageIdForTitle($a_wiki_id, $a_title);
590 $ilDB = $DIC->database();
592 $query =
"SELECT wp.*, po.view_cnt as cnt FROM il_wiki_page wp, page_object po" .
593 " WHERE wp.wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
594 " AND wp.id = po.page_id " .
595 " AND po.parent_type = " .
$ilDB->quote(
"wpg",
"text") .
" " .
596 " ORDER BY po.view_cnt";
597 $set =
$ilDB->query($query);
600 while ($rec =
$ilDB->fetchAssoc($set)) {
612 $ilDB = $DIC->database();
615 $query =
"SELECT count(*) as cnt FROM il_wiki_page" .
616 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
617 " WHERE lang = " .
$ilDB->quote(
"-",
"text");
618 $s =
$ilDB->query($query);
629 $ilDB = $DIC->database();
631 $cnt = self::countPages($a_wiki_id);
637 $random = new \Random\Randomizer();
638 $rand = $random->getInt(1, $cnt);
640 $ilDB->setLimit(1, $rand);
641 $query =
"SELECT title FROM il_wiki_page" .
642 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer");
643 $s =
$ilDB->query($query);
652 $pages = parent::getNewPages(
"wpg", $a_wiki_id);
653 foreach ($pages as $k => $page) {
654 $pages[$k][
"title"] = self::lookupTitle($page[
"id"]);
669 $ilDB = $DIC->database();
671 $query =
"SELECT wiki_id FROM il_wiki_page" .
672 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer");
673 $set =
$ilDB->query($query);
674 if ($rec =
$ilDB->fetchAssoc($set)) {
675 return (
int) $rec[
"wiki_id"];
690 $a_new_name = str_replace(array(
"<",
">"),
'', $a_new_name);
693 $a_new_name = trim(preg_replace(
'!\s+!',
' ', $a_new_name));
698 $xml_new_name = str_replace(
"&",
"&", $a_new_name);
700 if ($pg_id == 0 || $pg_id == $this->
getId()) {
703 $this->log->debug(
"nr of pages linking to renamed page: " . count($sources));
704 foreach ($sources as $s) {
706 $wpage =
new ilWikiPage($s[
"id"], 0, $s[
"lang"]);
711 $wpage->getXMLContent(),
716 $this->log->debug(
"nr internal links: " . count($col));
717 $new_content = $wpage->getXMLContent();
718 foreach ($col as
$c) {
732 $t1 = preg_replace(
'/\xC2\xA0/',
' ', $t1);
733 $t2 = preg_replace(
'/\xC2\xA0/',
' ', $t2);
735 $set =
$ilDB->query(
$q =
"SELECT " .
$ilDB->quote($t1,
"text") .
" = " .
$ilDB->quote($t2,
"text") .
" isequal");
736 $rec =
$ilDB->fetchAssoc($set);
738 if ($rec[
"isequal"]) {
741 "[[" . $c[
"nt"]->mTextform .
"]]",
742 "[[" . $xml_new_name .
"]]",
745 if ($c[
"text"] !=
"") {
748 "[[" . $c[
"text"] .
"]]",
749 "[[" . $xml_new_name .
"]]",
753 $add = ($c[
"text"] !=
"")
758 "[[" . $c[
"nt"]->mTextform . $add .
"]]",
759 "[[" . $xml_new_name . $add .
"]]",
764 $wpage->setXMLContent($new_content);
784 bool $a_update =
false 789 $default_visibility = ($news_set->get(
"default_visibility") !=
"")
790 ? $news_set->get(
"default_visibility")
795 $news_item->setContext(
802 $news_item->setTitle($this->
getTitle());
803 $news_item->setContentTextIsLangVar(
true);
804 $news_item->setContent(
"wiki_news_page_created");
805 $news_item->setUserId($ilUser->getId());
806 $news_item->setVisibility($default_visibility);
807 $news_item->create();
820 $news_item->setContent(
"wiki_news_page_changed");
821 $news_item->setUserId($ilUser->getId());
822 $news_item->setTitle($this->
getTitle());
823 $news_item->setContentTextIsLangVar(
true);
824 $news_item->update(
true);
827 $news_item->setContext(
834 $news_item->setTitle($this->
getTitle());
835 $news_item->setContentTextIsLangVar(
true);
836 $news_item->setContent(
"wiki_news_page_changed");
837 $news_item->setUserId($ilUser->getId());
838 $news_item->setVisibility($default_visibility);
839 $news_item->create();
846 bool $a_offline =
false 849 $href =
"./goto.php?target=wiki_wpage_" . $a_target;
851 $href = ILIAS_HTTP_PATH .
"/goto.php?target=wiki_wpage_" . $a_target;
864 $templates = array();
866 $templates[] = array(
"id" => $t[
"wpage_id"],
"parent_type" =>
"wpg",
"title" => $t[
"title"]);
877 $ilDB = $DIC->database();
879 $set =
$ilDB->query(
"SELECT DISTINCT title FROM il_wiki_page" .
880 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
881 " AND " .
$ilDB->like(
"title",
"text",
"%" . $a_term .
"%") .
884 while ($rec =
$ilDB->fetchAssoc($set)) {
885 $res[] = $rec[
"title"];
896 $ilDB = $DIC->database();
898 $query =
"SELECT * FROM il_wiki_page" .
899 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer");
900 $set =
$ilDB->query($query);
901 if ($rec =
$ilDB->fetchAssoc($set)) {
902 return (
bool) $rec[
"hide_adv_md"];
915 parent::setTranslationProperties($transl_page);
static _getSourcesOfTarget(string $a_target_type, int $a_target_id, int $a_target_inst)
get all sources of a link target
static getNewWikiPages(int $a_wiki_id)
ILIAS Wiki Page PageDBRepository $repo
static getLastNewsIdForContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="", bool $a_only_today=false)
Get last news id of news set related to a certain context.
static getPagesForSearch(int $a_wiki_id, string $a_term)
Interface Observer Contains several chained tasks and infos about them.
static lookupTitle(int $a_page_id, string $lang="-")
isAdvancedMetadataHidden()
getNotificationGUI()
This currently violates the layer model, since notifications render the abstracts with a GUI class...
static getLinksToPage(int $a_wiki_id, int $a_page_id, string $lang="-")
getContentTemplates()
Get content templates.
static countPages(int $a_wiki_id)
hideAdvancedMetadata(bool $a_val)
getDomDoc()
Get dom doc (DOMDocument)
static lookupWikiId(int $a_page_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getWikiPageContributors(int $a_page_id)
rename(string $a_new_name)
Rename page.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _getPageIdForWikiTitle(int $a_wiki_id, string $a_title)
static strLen(string $a_string)
setTitle(string $a_title)
setTranslationProperties(ilPageObject $transl_page)
create(bool $a_import=false)
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static exists(int $a_wiki_id, string $a_title, string $lang="-")
Checks whether a page with given title exists.
static collectInternalLinks(string $s, int $a_wiki_id, bool $a_collect_non_ex=false, string $mode=IL_WIKI_MODE_COLLECT)
Collect internal wiki links of a string.
static raiseContentChanged(int $obj_id)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
static lookupAdvancedMetadataHidden(int $a_page_id)
static _deleteAllLinksToTarget(string $a_target_type, int $a_target_id, int $a_target_inst=0)
Delete all links to a given target.
static getRandomPage(int $a_wiki_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static writeStartPage(int $a_id, string $a_name)
static _lookupStartPage(int $a_wiki_id)
static getWikiContributors(int $a_wiki_id)
setWikiRefId(int $a_wiki_ref_id)
update(bool $a_validate=true, bool $a_no_history=false)
static deleteAllPagesOfWiki(int $a_wiki_id)
static getPopularPages(int $a_wiki_id)
updateNews(bool $a_update=false)
static handleEvent(int $a_event, ilWikiPage $a_page_obj, ?int $a_user_id=null, ?array $a_additional_data=null)
Handle wiki page event.
A news item can be created by different sources.
static makeDbTitle(string $a_par)
static getPageIdForTitle(int $a_wiki_id, string $a_title, string $lang="-")
Get wiki page object for id and title.
static _wikiPageExists(int $a_wiki_id, string $a_title, string $lang="-")
ILIAS Wiki InternalService $service
static getGotoForWikiPageTarget(string $a_target, bool $a_offline=false)
afterUpdate(DOMDocument $domdoc, string $xml)
const IL_WIKI_MODE_EXT_COLLECT
static lookupObjIdByPage(int $a_page_id)
returns the wiki/object id to a given page id
saveInternalLinks(DOMDocument $a_domdoc)
static removeForObject(int $type, int $id)
Remove all notifications for given object.
read(bool $a_omit_page_read=false)
static getAllWikiPages(int $a_wiki_id, string $lang="-")
preparePageForCompare(ilPageObject $page)
setCopyProperties(ilPageObject $new_page)