summaryrefslogtreecommitdiffstats
path: root/admin/survey/classes/surveyEmails/class.SurveyAlert.php
blob: 4c49ce6ee6c7bb374803a384d9785ef7c641db59 (plain) (blame)
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
<?php

/*
 * Created on 20.5.2009
 *
 */

define("DEF_ALERT_IN_DAYS", 3);	# koliko dni prez izteko aktivira alert avtomatsko

class SurveyAlert
{

	static private $instance; 								// instanca razreda (razred kreiramo samo enkrat)
	static private $userId = null; 							// user id
	static private $surveyId = null; 						// id ankete
	static private $data = array();

	// konstrutor
	protected function __construct() {}
	// kloniranje
	private function __clone() {}

	/** Poskrbimo za samo eno instanco razreda
	 *
	 */
	static function getInstance()
	{
		if(!self::$instance)
		{
			self::$instance = new SurveyAlert();
		}
		return self::$instance;
	}

	/** Inicializacija
	 *
	 */
	static function Init($sid, $uid) {
		self::setSurveyId($sid); 
		self::setUserId($uid);
		
		self::loadDataFromDB();
	}
	// GETTERS & SETTERS
	static function getSurveyId()					{ return self::$surveyId; }
	static function setSurveyId($sid)				{ self::$surveyId = $sid; }
	static function getUserId()						{ return self::$userId; }
	static function setUserId($uid)					{ self::$userId = $uid; }
	
	/** Naloži podatke iz baze v klass
	 * 
	 */
	static function loadDataFromDB() {
		
		// podatki obveščanja
		$sqlA = sisplet_query("SELECT * FROM srv_alert WHERE ank_id = '".self::getSurveyId()."'");
		$sqlD = sisplet_query("SELECT d.*, u.name, u.surname, u.email FROM srv_dostop AS d " .
				"RIGHT JOIN (SELECT u.id, u.name, u.surname, u.email FROM users as u) AS u ON d.uid = u.id WHERE d.ank_id = '".self::getSurveyId()."'");
		$rowA = mysqli_fetch_assoc($sqlA);

		$result=array();

		$ostala_sinhronizirana_polja = array('finish_respondent', 'finish_respondent_cms', 'finish_author', 'finish_other', 'finish_other_emails', 'finish_text', 'finish_subject', 'expire_days', 'expire_author', 'expire_other', 'expire_other_emails', 'expire_text', 'expire_subject', 'delete_author', 'delete_other', 'delete_other_emails', 'delete_text', 'delete_subject', 'active_author', 'active_other', 'active_other_emails', 'active_text0', 'active_subject0', 'active_text1', 'active_subject1');
		foreach ($ostala_sinhronizirana_polja as $polje) {

			if(isset($rowA[$polje]))
				$result[$polje] = $rowA[$polje];
		}

		// dodamo še podatke iz dostopa
		while ($rowD = mysqli_fetch_assoc($sqlD)) {
			$result['dostop'][] = $rowD; 
		} 

		// Še nekateri podatki ankete		
		$catch_expire_date = isset($result['expire_days']) && $result['expire_days'] != '0000-00-00' ? ", DATE_SUB(expire,INTERVAL ".$result['expire_days']." DAY) as alert_date" : ""; 
		$sqlS = sisplet_query("SELECT active, naslov, insert_uid, expire ".$catch_expire_date." FROM srv_anketa  WHERE id = '".self::getSurveyId()."'");

		$rowS = mysqli_fetch_assoc($sqlS);
		$result['expire'] = $rowS['expire'] ?? ''; 		
		$result['survey_naslov'] = $rowS['naslov'] ?? ''; 		
		$result['survey_active'] = $rowS['active'] ?? '';
		$result['author_uid'] = $rowS['insert_uid'] ?? '';
		$result['alert_date'] = $rowS['alert_date'] ?? '';

		self::$data = array();
		self::$data = $result;

		return $result; 		
	}

	/** prepareSendExpireAlerts()
	 *  Funkcija v bazo surveycrontab (tabela: srv_alert) shrani podatke za pošiljanje emailov
	 *  Pošiljanje emailov se izvjaja z razredom CronJobs ki 
	 *  se s pomočjo crontaba zaganja vsak dan samodejno.
	 */
	static function prepareSendExpireAlerts() {
		global $site_url, $lang, $mysql_database_name;
        
        // napolnimo tabelo srv_alert v bazi surveycrontab
		$sqlSurvey = sisplet_query("SELECT active FROM srv_anketa WHERE id='".self::getSurveyId()."'");
		$rowSurvey = mysqli_fetch_assoc($sqlSurvey);
		
		$oldDb = $mysql_database_name; 
		
		# ce je anketa aktivna, dodamo zapise v bazo, če je anketa neaktivna pa jih odstranimo
		if ($rowSurvey['active'] == 1) {
			#anketa je aktivna
							
			// poiscemo e-maile od avtorja in userjev v dostopu
			$emails = "";
			$prefix = "";
			if (self::$data['expire_author']) {
				$sqlAuthor = sisplet_query("SELECT name, surname, id, email FROM users WHERE id='".self::$data['author_uid']."'");
				$rowAuthor = mysqli_fetch_assoc($sqlAuthor);
				if ($rowAuthor['email'] != "" ) {
					$emails .= $prefix.$rowAuthor['email'];
					$prefix = ",";		
				}	
				if (self::$data['dostop']) 
				foreach (self::$data['dostop'] as $user) {
					if ($user['alert_expire'] == 1) {
						$emails.=$prefix.$user['email'];
						$prefix = ",";
					}
				}
			}
			if (self::$data['expire_other']) {
				foreach (explode("\n",self::$data['expire_other_emails']) as $other) {
					$emails.=$prefix.trim($other);
					$prefix = ",";
				}
			}
	
			// pripravimo vsebino e-maila
			$pdf_url = $site_url.'admin/survey/izvoz.php?dc='.base64_encode(
						serialize(
									array('a'=>'pdf_results',
										  'anketa'=>self::$surveyId,
										  'usr_id'=>self::$data['author_uid'],
										  'type'=>'0')));
			
			$rtf_url = $site_url.'admin/survey/izvoz.php?dc='.base64_encode(
					serialize(
							array(	'a'=>'rtf_results',
									'anketa'=>self::$surveyId,
									'b'=>'export',
									'usr_id'=>self::$data['author_uid'],
									)));
            
            // Custom podpis
            $signature = Common::getEmailSignature();

			$text = ( self::$data['expire_text'] != '' ) ? self::$data['expire_text'] : nl2br($lang['srv_alert_expire_text'].$signature);
			$text = str_replace(
				array(
					'[SURVEY]',
					'[DATE]',
					'[SITE]',
					'[DAYS]',
					'[URL]',
        			'[PDF]',
        			'[RTF]',
					'[DURATION]'),
				array(
					self::$data['survey_naslov'],
					date('r'),
					$site_url.'main/survey/index.php?anketa='.SurveyInfo::getInstance()->getSurveyHash(),
					self::$data['expire_days'],
					'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'">'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'</a>',
        			'<a href="'.$pdf_url.'">'.$pdf_url.'</a>',
        			'<a href="'.$rtf_url.'">'.$rtf_url.'</a>',
					'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'&amp;a=trajanje">'.$lang['srv_activate_duration'].'</a>')
				, $text);
	
			$subject = ( self::$data['expire_subject'] != '' ) ? self::$data['expire_subject'] : $lang['srv_alert_expire_subject'];
			$subject = str_replace(
				array(
					'[SURVEY]',
					'[DATE]',
					'[SITE]',
					'[DAYS]',
					'[URL]',
        			'[PDF]',
        			'[RTF]',
					'[DURATION]'), 
				array(
					self::$data['survey_naslov'],
					date('r'),
					$site_url.'main/survey/index.php?anketa='.SurveyInfo::getInstance()->getSurveyHash(), 
					self::$data['expire_days'],
					'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'">'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'</a>',
        			'<a href="'.$pdf_url.'">'.$pdf_url.'</a>',
        			'<a href="'.$rtf_url.'">'.$rtf_url.'</a>',
					'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'&amp;a=trajanje">'.$lang['srv_activate_duration'].'</a>')
				,$subject);
	
			// pripravimo mail
		    Common::getInstance()->Init(self::getSurveyId());
		    $MailFrom = Common::getInstance()->getFromEmail();
		    $MailReply = Common::getInstance()->getReplyToEmail();
			if ($emails != "" && $text != "" && $subject != "" && self::$data['alert_date'] != "") {
                
                // izberemo bazo srvcrontab
				$db = mysqli_select_db($GLOBALS['connect_db'],'surveycrontab');
				//or die($lang['srv_alert_database_error']);
                
                if ($db) {
					# najprej pobrišemo stare vrendosti, ker se alerti niso spremenili ob trajni anketi
					$del = sisplet_query("DELETE FROM srv_alert WHERE sid='".self::getSurveyId()."'");
					// najprej preverimo ali imamo za obstojeco anketo se kaj v crontabu (status = 0) in popravimo na status = 2 (spremenjen)
					// vsaka anketa lahko ima samo en zapis z statusom 0 (se ni slo v crontab)
					#$sqlUpdateOld = sisplet_query("UPDATE srv_alert SET status = 2 WHERE dbname = '".$oldDb."' AND sid = '".self::getSurveyId()."' AND status = 0");
					
					// dodamo zapis v crontab
					
					# trajnih anket ne dodajamo
					if (self::$data['expire'] != '2099-01-01') {
						$sqlInsertString = "INSERT INTO srv_alert (dbname, sid, emails, text, subject, send_date, status, MailFrom, MailReply) " .
								"VALUES ('".$oldDb."', '".self::getSurveyId()."', '".$emails."', '".$text."', '".$subject."', '".self::$data['alert_date']."', 0, '".$MailFrom."', '".$MailReply."')";
						$sqlInsert = sisplet_query($sqlInsertString);
					}
                }
                
                // uporabimo spet staro bazo
				mysqli_select_db($GLOBALS['connect_db'],$oldDb);
			} 
			
				
		} else {
			# ankata je deaktivirana, vse alerte ki so še aktivni spremenimo v status 3
			$db = mysqli_select_db($GLOBALS['connect_db'],'surveycrontab');
            
            if ($db) {
				//	or die($lang['srv_alert_database_error']);
				# nastavimo status na 3 - sprememba aktivnosti ankete
				$sqlUpdateOld = sisplet_query("UPDATE srv_alert SET status = 3 WHERE dbname = '".$oldDb."' AND sid = '".self::getSurveyId()."' AND status = 0");
            }
            
            // uporabimo spet staro bazo
			mysqli_select_db($GLOBALS['connect_db'],$oldDb);
		}
		sisplet_query("COMMIT");
	}
	
	/** sendMailActive()
	 * Funkcija pošlje emaile ob spremembi aktivnosti ankete
	 */
	static function sendMailActive() {
        global $lang, $site_url, $site_path;
        
		// poiščemo vse email naslove
		// poiscemo e-maile od avtorja in userjev v dostopu
		$emails = array();
		if (self::$data['active_author']) {
			$sqlAuthor = sisplet_query("SELECT name, surname, id, email FROM users WHERE id='".self::$data['author_uid']."'");
			$rowAuthor = mysqli_fetch_assoc($sqlAuthor);
			if ($rowAuthor['email'] != "" ) {
				$emails[] =$rowAuthor['email'];
			}	
			foreach (self::$data['dostop'] as $user) {
				if ($user['alert_active'] == 1) {
					$emails[] = $user['email'];
				}
			}
		}
		if (self::$data['active_other']) {
			foreach (explode("\n",self::$data['active_other_emails']) as $other) {
				$emails[] = trim($other);
			}
		}
    
        // Podpis
        $signature = Common::getEmailSignature();

		// odvisno od statuse izberemo text in subject
		$text = ( self::$data['survey_active'] == 1 )
			? (( self::$data['active_text1'] != '' ) ? self::$data['active_text1'] : nl2br($lang['srv_alert_active_text1'].$signature)) 
			: (( self::$data['active_text0'] != '' ) ? self::$data['active_text0'] : nl2br($lang['srv_alert_active_text0'].$signature));

		$subject = ( self::$data['survey_active'] == 1 )
			? (( self::$data['active_subject1'] != '' ) ? self::$data['active_subject1'] : $lang['srv_alert_active_subject1']) 
			: (( self::$data['active_subject0'] != '' ) ? self::$data['active_subject0'] : $lang['srv_alert_active_subject0']);

		$pdf_url = $site_url.'admin/survey/izvoz.php?dc='.base64_encode(
		serialize(
				array('a'=>'pdf_results',
						'anketa'=>self::$surveyId,
						'usr_id'=>self::$data['author_uid'],
						'type'=>'0')));
		
		$rtf_url = $site_url.'admin/survey/izvoz.php?dc='.base64_encode(
				serialize(
						array(	'a'=>'rtf_results',
								'anketa'=>self::$surveyId,
								'b'=>'export',
								'usr_id'=>self::$data['author_uid'],
						)));
		$text = str_replace(
			array(
				'[SURVEY]',
				'[DATE]',
				'[SITE]',
				'[DAYS]',
				'[URL]',
        		'[PDF]', 
        		'[RTF]'), 
			array(
				self::$data['survey_naslov'],
				date('r'),
				$site_url.'main/survey/index.php?anketa='.SurveyInfo::getInstance()->getSurveyHash(), 
				self::$data['expire_days'],
				'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'">'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'</a>',
        		'<a href="'.$pdf_url.'">'.$pdf_url.'</a>',
        		'<a href="'.$rtf_url.'">'.$rtf_url.'</a>'),
			$text);
			
		$subject = str_replace(
			array(
				'[SURVEY]',
				'[DATE]',
				'[SITE]',
				'[DAYS]',
				'[URL]',
        		'[PDF]', 
        		'[RTF]'), 
			array(
				self::$data['survey_naslov'],
				date('r'),
				$site_url.'main/survey/index.php?anketa='.SurveyInfo::getInstance()->getSurveyHash(), 
				self::$data['expire_days'],
				'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'">'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'</a>',
        		'<a href="'.$pdf_url.'">'.$pdf_url.'</a>', 
        		'<a href="'.$rtf_url.'">'.$rtf_url.'</a>'), 
			$subject);

	    		    
		// preprečimo večkratno pošiljanje na iste naslove
		array_unique($emails);
		$spisek = "";
		$send_success = $send_errors = array();
	    

	    // posljemo maile
	    foreach ($emails AS $email) {
	    	$email = trim($email);
		    if (strlen ($email) > 1 && strpos ($spisek, $email)===false || strlen ($spisek) == 0) {

		    	try
		    	{
		    		$MA = new MailAdapter(self::getSurveyId(), $type='alert');
	    			$MA->addRecipients($email);
	    			$resultX = $MA->sendMail($text, $subject);
		    	}
		    	catch (Exception $e)
		    	{
		    	}
		    			    
			    $spisek .= $email ."|";
				if ($resultX) {
					$send_success[] = $email;
				} else {
					$send_errors[] = $email;
				}
		    }
	    }
	}	
	
	/** sendMailDelete()
	 * Funkcija pošlje emaile ob izbrisu ankete
	 */
	static function sendMailDelete() {
		global $lang, $site_url, $site_path;

		// poiščemo vse email naslove
		// poiscemo e-maile od avtorja in userjev v dostopu
		$emails = array();
		if (self::$data['delete_author']) {
			$sqlAuthor = sisplet_query("SELECT name, surname, id, email FROM users WHERE id='".self::$data['author_uid']."'");
			$rowAuthor = mysqli_fetch_assoc($sqlAuthor);
			if ($rowAuthor['email'] != "" ) {
				$emails[] =$rowAuthor['email'];
			}	
			foreach (self::$data['dostop'] as $user) {
				if ($user['alert_delete'] == 1) {
					$emails[] = $user['email'];
				}
			}
		}
		if (self::$data['delete_other']) {
			foreach (explode("\n",self::$data['delete_other_emails']) as $other) {
				$emails[] = trim($other);
			}
		}
    
        // Custom podpis
        $signature = Common::getEmailSignature();

		// odvisno od statuse izberemo text in subject
		$text = ( self::$data['delete_text'] != '' ) ? self::$data['delete_text'] : nl2br($lang['srv_alert_delete_text'].$signature); 

		$subject = ( self::$data['delete_subject'] != '' ) ? self::$data['delete_subject'] : $lang['srv_alert_delete_subject']; 
		
		$pdf_url = $site_url.'admin/survey/izvoz.php?dc='.base64_encode(
				serialize(
						array('a'=>'pdf_results',
								'anketa'=>self::$surveyId,
								'usr_id'=>self::$data['author_uid'],
								'type'=>'0')));
		
		$rtf_url = $site_url.'admin/survey/izvoz.php?dc='.base64_encode(
				serialize(
						array(	'a'=>'rtf_results',
								'anketa'=>self::$surveyId,
								'b'=>'export',
								'usr_id'=>self::$data['author_uid']
						)));
		
		$text = str_replace(
			array(
				'[SURVEY]',
				'[DATE]',
				'[SITE]',
				'[DAYS]',
				'[URL]',
				'[PDF]', 
				'[RTF]'), 
			array(
				self::$data['survey_naslov'],
				date('r'),
				$site_url.'main/survey/index.php?anketa='.SurveyInfo::getInstance()->getSurveyHash(), 
				self::$data['expire_days'],
				'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'">'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'</a>',
        		'<a href="'.$pdf_url.'">'.$pdf_url.'</a>',
        		'<a href="'.$rtf_url.'">'.$rtf_url.'</a>'),
			$text);
		
			$subject = str_replace(
				array(
					'[SURVEY]',
					'[DATE]',
					'[SITE]',
					'[DAYS]',
					'[URL]',
					'[PDF]', 
					'[RTF]'), 
				array(
					self::$data['survey_naslov'],
					date('r'),
					$site_url.'main/survey/index.php?anketa='.SurveyInfo::getInstance()->getSurveyHash(), 
					self::$data['expire_days'],
					'<a href="'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'">'.$site_url.'admin/survey/index.php?anketa='.self::getSurveyId().'</a>',
        			'<a href="'.$pdf_url.'">'.$pdf_url.'</a>',
        			'<a href="'.$rtf_url.'">'.$rtf_url.'</a>'),
				$subject);

		// preprečimo večkratno pošiljanje na iste naslove
		array_unique($emails);
		$spisek = "";
		$send_success = $send_errors = array();
	    
	    // posljemo maile
	    foreach ($emails AS $email) {
	    	$email = trim($email);
		    if (strlen ($email) > 1 && strpos ($spisek, $email)===false || strlen ($spisek) == 0) {

		    	try{
		    		$MA = new MailAdapter(self::getSurveyId(), $type='alert');
	    			$MA->addRecipients($email);
	    			$resultX = $MA->sendMail($text, $subject);
		    	}
		    	catch (Exception $e)
		    	{
		    	}
		    	
                $spisek .= $email ."|";
                
				if ($resultX) {
					$send_success[] = $email;
                } 
                else {
					$send_errors[] = $email;
				}
		    }
	    }
	}
	
	static function setDefaultAlertBeforeExpire() {
		global $lang, $site_url, $site_path;
		
		$turn_on_alert = false;
		
		# vseeno prvo preverimo ali ni zapisa za alert že v bazi
		$sqlAlert = sisplet_query("SELECT * FROM srv_alert WHERE ank_id = '".self::getSurveyId()."'");
		if (mysqli_num_rows($sqlAlert) > 0) {
			# zapis je ze v bazi in ga zato ne popravljamo
			$rowAlert = mysqli_fetch_array($sqlAlert);
			
			if($rowAlert['expire_subject'] == '')
				$turn_on_alert = true;
		}
		else{
			$turn_on_alert = true;
		}
		
		if($turn_on_alert) {

            // Custom podpis
            $signature = Common::getEmailSignature();

			# zapisa še ni v bazi, zato dodamo nov alert 3 dni pred koncem
			$alert_expire_author = 1;
			$alert_expire_other = 0; 
			$alert_expire_other_emails = '';
			$alert_expire_text = nl2br($lang['srv_alert_expire_text'].$signature);
			$alert_expire_subject = $lang['srv_alert_expire_subject'];
	
			$mySqlInsert = sisplet_query("INSERT INTO srv_alert (ank_id, expire_days, expire_author, expire_other, expire_other_emails, expire_subject, expire_text) VALUES " .
			"('".self::getSurveyId()."', '".DEF_ALERT_IN_DAYS."', '$alert_expire_author', '$alert_expire_other', '$alert_expire_other_emails', '$alert_expire_subject', '$alert_expire_text') " .
			"ON DUPLICATE KEY UPDATE expire_days = '".DEF_ALERT_IN_DAYS."', expire_author = '$alert_expire_author', expire_other = '$alert_expire_other', expire_other_emails='$alert_expire_other_emails', expire_subject='$alert_expire_subject', expire_text='$alert_expire_text'");
			if (!$mySqlInsert)
				echo mysqli_error($GLOBALS['connect_db']);
		}
		
		#osvežimo podatke
		self::loadDataFromDB();

		// Ostanek, kjer se uporablja baza surveycrontab za posiljanje obvestil o poteku
		//self::prepareSendExpireAlerts();
		
		$sqlAlert = sisplet_query("SELECT * FROM srv_alert WHERE ank_id = '".self::getSurveyId()."'");
		
		$rowAlert = mysqli_fetch_array($sqlAlert);
		
		return $rowAlert;
	}
	
	// Nastavimo obvescanje pri aktivaciji (default ob kreiranju ankete)
	static function setDefaultAlertActivation() {
		global $lang;
        global $global_user_id;
		
		$anketa = self::getSurveyId();
		
		$alert_active_author = 1;
		$alert_active_other = 0;

        // Custom podpis 
        $signature = Common::getEmailSignature();

		$alert_active_subject0 = $lang['srv_alert_active_subject0'];
		$alert_active_text0 = nl2br($lang['srv_alert_active_text0'].$signature);
		$alert_active_subject1 = $lang['srv_alert_active_subject1'];
		$alert_active_text1 = nl2br($lang['srv_alert_active_text1'].$signature);
		$alert_active_other_emails = '';
		$alert_active_other_emails = '';
		
		$mySqlInsert = sisplet_query("INSERT INTO srv_alert (ank_id, active_author, active_other, active_other_emails, active_subject0, active_text0, active_subject1, active_text1) VALUES " .
		"('$anketa', '$alert_active_author', '$alert_active_other', '$alert_active_other_emails', '$alert_active_subject0', '$alert_active_text0', '$alert_active_subject1', '$alert_active_text1') " .
		"ON DUPLICATE KEY UPDATE active_author = '$alert_active_author', active_other = '$alert_active_other', active_other_emails='$alert_active_other_emails', active_subject0='$alert_active_subject0', active_text0='$alert_active_text0', active_subject1='$alert_active_subject1', active_text1='$alert_active_text1'");

		if (!$mySqlInsert)
			echo mysqli_error($GLOBALS['connect_db']);

		// ponastavimo alert_admin
		// najprej vse stare zapise postavimo na 0 nato pa setiramo na 1 kjer je potrebno
		$mysqlUpdate = sisplet_query("UPDATE srv_dostop SET alert_active='0' WHERE ank_id = '$anketa'");
		$sqlInsertUpdate = sisplet_query("INSERT INTO srv_dostop (ank_id, uid, alert_active) VALUES ('$anketa', '$global_user_id', 1) ON DUPLICATE KEY UPDATE alert_active=1");
		if (!$sqlInsertUpdate)
			echo mysqli_error($GLOBALS['connect_db']);
	}
		
}
?>