aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notes.php
blob: 9bf37d0f9265649377bb498408cfb5d98c96a3ec (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
<?php /** @file */

function notes_init(&$a) {

	if(! local_channel())
		return;

	$ret = array('success' => true);
	if(array_key_exists('note_text',$_REQUEST)) {
		$body = escape_tags($_REQUEST['note_text']);

		// I've had my notes vanish into thin air twice in four years.
		// Provide a backup copy if there were contents previously 
		// and there are none being saved now.

		if(! $body) {
			$old_text = get_pconfig(local_channel(),'notes','text');
			if($old_text)
				set_pconfig(local_channel(),'notes','text.bak',$old_text);
		}
		set_pconfig(local_channel(),'notes','text',$body);
	}

	// push updates to channel clones

	if((argc() > 1) && (argv(1) === 'sync')) {
		require_once('include/zot.php');
		build_sync_packet();
	}

	logger('notes saved.', LOGGER_DEBUG);
	json_return_and_die($ret);
	
}