aboutsummaryrefslogtreecommitdiffstats
path: root/util/fresh
blob: 2314796bb1c94e461ac56eadf8bc15d876b2699d (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
#!/usr/bin/env php
<?php

// Red cli interpreter

require_once('include/cli_startup.php');
require_once('include/zot.php');

cli_startup();

$prompt = 'fresh% ';

function fresh_main($argc,$argv) {
	global $prompt;

	while(!feof(STDIN)) {


		if(function_exists('readline'))
			$line = readline($prompt);
		else {
			echo "\n" . $prompt;
			$line = fgets(STDIN);
		}

	
		if($line === FALSE) {
			if(feof(STDIN)) {
				break;
			}
			continue;
		}

		$line = trim($line);
 		if($line == 'quit' || $line == 'exit')
			exit();
		process_command($line);
	}

}

fresh_main($argc,$argv);

function process_command($line) {

	$a = get_app();

	// split args

	$a->cmd = $line;
	$a->argv = explode(' ',$line);
	$a->argc = count($a->argv);

	$authenticated = false;
	$channel = null;

	if($line == 'version') {
		echo 'Fresh version 0.1';
		return;
	}

	switch(argv(0)) {
		case 'finger':
			if(argv(1)) {
				$x = zot_finger(argv(1),$channel);
				if($x['success'])
					echo jindent($x['body']);
			}
			break;

		case 'login':
			if(argv(1)) {
				echo 'Password: ';
				exec('/bin/stty -echo');
				$x = fgets(STDIN);
				exec('/bin/stty echo');
				echo "\n";
				require_once('include/auth.php');
				$record = get_app()->account = account_verify_password(argv(1),trim($x,"\n"));

				if($record) {
					$_SESSION['account_id'] = get_app()->account['account_id'];
					$_SESSION['last_login_date'] = datetime_convert();
					authenticate_success($record, true, true);
					echo 'logged in';
					$channel = $a->get_channel();
					if($channel)
						echo ' as ' . $channel['channel_name'];					
				}
				else
					echo 'login failed.';

			}
			break;				
		case 'channel':
			if(! local_user())
					echo 'Permission denied.';
			if(argv(1)) {
				$r = q("select * from channel where channel_address = '%s' and channel_account_id = %d limit 1",
					dbesc(argv(1)),
					intval(get_account_id())
				);
				if($r) {
					change_channel($r[0]['channel_id']);
					$channel = $a->get_channel();
					echo 'Logged in as ' . $channel['channel_name'];
				}
				else
					echo 'Channel not found.';
			}
			break;	

		default:
			break;

	}	


}