aboutsummaryrefslogtreecommitdiff
path: root/model/Conference.php
blob: fcc43c06295775a92500165b1a272da31bbc4410 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?php

class Conference extends ModelBase
{
	private $slug;

	public function __construct($config, $slug)
	{
		parent::__construct($config);
		$this->slug = $slug;
	}

	public function getSlug() {
		return $this->slug;
	}

	public function getTitle() {
		return $this->get('CONFERENCE.TITLE', 'C3VOC');
	}

	public function isPreviewEnabled() {
		if(@$GLOBALS['forceopen'])
			return true;

		if($this->has('PREVIEW_DOMAIN') && ($this->get('PREVIEW_DOMAIN') == $_SERVER['SERVER_NAME']))
			return true;

		return false;
	}

	public function isClosed() {
		return !$this->hasBegun() || $this->hasEnded();
	}

	public function isOpen() {
		return !$this->isClosed();
	}

	public function startsAt() {
		if(!$this->has('CONFERENCE.STARTS_AT'))
			return null;

		return DateTime::createFromFormat('U', $this->get('CONFERENCE.STARTS_AT'));
	}

	public function endsAt() {
		if(!$this->has('CONFERENCE.ENDS_AT'))
			return null;

		return DateTime::createFromFormat('U', $this->get('CONFERENCE.ENDS_AT'));
	}

	public function hasBegun() {
		// on the preview-domain all conferences are always open
		if($this->isPreviewEnabled())
			return true;

		if($this->has('CONFERENCE.CLOSED')) {
			$closed = $this->get('CONFERENCE.CLOSED');

			/* when CLOSED is a boolean, we're reading an old config where
			 * conferences didn't have a pre-beginning phase, thus we always
			 * return true.
			 */
			if(gettype($closed) == "boolean")
				return true;

			if($closed == "before")
				return false;
			else if($closed == "running" || $closed == "after")
				return true;
		}

		if($this->has('CONFERENCE.STARTS_AT')) {
			$now = new DateTime('now');
			return $now >= $this->startsAt();
		} else {
			return true;
		}
	}

	public function hasEnded() {
		// on the preview-domain no conference ever ends
		if($this->isPreviewEnabled())
			return false;

		if($this->has('CONFERENCE.CLOSED')) {
			$closed = $this->get('CONFERENCE.CLOSED');

			if($closed == "after" || $closed === true)
				return true;
			else if($closed == "running" || $closed == "before" ||
				$closed === false)
				return false;
		}

		if($this->has('CONFERENCE.ENDS_AT')) {
			$now = new DateTime('now');
			return $now >= $this->endsAt();
		} else {
			return false;
		}
	}

	public function isUnlisted() {
		if ($this->has('CONFERENCE.UNLISTED')) {
			$unlisted = $this->get('CONFERENCE.UNLISTED');
			return $unlisted === true;
		}
		else {
			return false;
		}
	}

	public function hasAuthor() {
		return $this->has('CONFERENCE.AUTHOR');
	}
	public function getAuthor() {
		return $this->get('CONFERENCE.AUTHOR', '');
	}

	public function hasDescription() {
		return $this->has('CONFERENCE.DESCRIPTION');
	}
	public function getDescription() {
		return $this->get('CONFERENCE.DESCRIPTION', '');
	}

	public function hasKeywords() {
		return $this->has('CONFERENCE.KEYWORDS');
	}
	public function getKeywords() {
		return $this->get('CONFERENCE.KEYWORDS', '');
	}



	public function hasReleases() {
		return $this->has('CONFERENCE.RELEASES');
	}
	public function getReleasesUrl() {
		return $this->get('CONFERENCE.RELEASES');
	}

	public function getLink() {
		return forceslash($this->getSlug()).url_params();
	}
	public function getAboutLink() {
		return joinpath([$this->getSlug(), 'about']).url_params();
	}

	public function hasRelive() {
		return $this->getRelive()->isEnabled();
	}
	public function getReliveUrl() {
		if($this->getRelive()->isEnabled())
			return joinpath([$this->getSlug(), 'relive']).url_params();

		else
			return null;
	}

	public function hasFeedback() {
		return $this->has('FEEDBACK');
	}
	public function getFeedbackUrl() {
		return joinpath([$this->getSlug(), 'feedback']).url_params();
	}
	public function getFeedbackReadUrl() {
		return joinpath([$this->getSlug(), 'feedback', 'read']).url_params();
	}

	public function getScheduleJsonUrl() {
		return joinpath([$this->getSlug(), 'schedule.json']).url_params();
	}

	public function hasBannerHtml() {
		return $this->has('CONFERENCE.BANNER_HTML');
	}
	public function getBannerHtml() {
		return $this->get('CONFERENCE.BANNER_HTML');
	}

	public function hasFooterHtml() {
		return $this->has('CONFERENCE.FOOTER_HTML');
	}
	public function getFooterHtml() {
		return $this->get('CONFERENCE.FOOTER_HTML');
	}

	public function hasNotStartedHtml() {
		return $this->has('CONFERENCE.NOT_STARTED_HTML');
	}
	public function getNotStartedHtml() {
		return $this->get('CONFERENCE.NOT_STARTED_HTML');
	}


	public function getRooms()
	{
		$rooms = array();
		foreach($this->get('ROOMS') as $slug => $room)
			$rooms[] = $this->getRoom($slug);

		return $rooms;
	}

	public function getRoomIfExists($room)
	{
		if($this->hasRoom($room))
			return $this->getRoom($room);

		return null;
	}

	public function hasRoom($slug)
	{
		return $this->has('ROOMS.'.$slug);
	}

	public function getRoom($room) {
		return new Room($this, $room);
	}


	public function getFeedback() {
		return new Feedback($this);
	}
	public function getSchedule() {
		return new Schedule($this);
	}
	public function getSubtitles() {
		return new Subtitles($this);
	}
	public function getOverview() {
		return new Overview($this);
	}
	public function getRelive() {
		return new Relive($this);
	}

	public function getExtraFiles() {
		return $this->get('EXTRA_FILES', []);
	}

	public function hasAdditionalHtml() {
		return $this->has('CONFERENCE.ADDITIONAL_HTML');
	}
	public function getAdditionalHtml() {
		return $this->get('CONFERENCE.ADDITIONAL_HTML');
	}
	public function getAdditionalLicenceHtml() {
		return $this->get('CONFERENCE.ADDITIONAL_LICENCE_HTML');
	}
}