summaryrefslogtreecommitdiff
path: root/index.php
blob: add06734a954befb8831baa8d0b42f5e7ee12b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
 * Copyright (c) 2004 bitweaver.org
 * Copyright (c) 2003 tikwiki.org
 * Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
 * All Rights Reserved. See below for details and a complete list of authors.
 * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
 *
 * @package wiki
 * @subpackage functions
 */

/**
 * required setup
 */
namespace Bitweaver\Wiki;

require_once '../kernel/includes/setup_inc.php';

$gBitSystem->verifyPackage( 'wiki' );

if( !empty( $_REQUEST['structure_id'] ) ) {
	include LIBERTY_PKG_INCLUDE_PATH.'structure_display_inc.php';
} else {
	// if no page set
	if ( !isset( $_REQUEST['page'] ) and !isset( $_REQUEST['page_id'] ) ) {
		// if auto create home page disabled just get a list
		if( $gBitSystem->isFeatureActive( 'wiki_disable_auto_home' ) ){
			include WIKI_PKG_PATH.'list_pages.php';
			die;
		}
		// auto fetch/create default home page
		$_REQUEST['page'] = $gBitSystem->getConfig( 'wiki_home_page', 'HomePage' );

	}
	$gHome = new BitPage();
	$wikiHome = $gBitSystem->getConfig( "wiki_home_page", 'HomePage' );
	if( !($gHome->pageExists( $wikiHome ) ) ) {
		$homeHash = [
			'title' => $wikiHome ?? 'HomePage',
			'creator_user_id' => ROOT_USER_ID,
			'modifier_user_id' => ROOT_USER_ID,
			'edit' => 'Welcome to '.( $gBitSystem->getConfig( 'site_title', 'our site' ) ), ];
		$gHome->store( $homeHash );
	}

	include WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php';
	if( $gContent->isValid() ) {
		$gBitSystem->setCanonicalLink( $gContent->getDisplayUrl() );
	}
	include WIKI_PKG_INCLUDE_PATH.'display_bitpage_inc.php';
}