aboutsummaryrefslogblamecommitdiffstats
path: root/util/fresh
blob: 3e9b55ae1e7df1115d60d9914bb974ec16968143 (plain) (tree)
1
2
3
4
5
6
7





                                        
                                





































                                                      

                       

                     






                                      




                                         













                                                                              
 
                




        
#!/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'])
					print_r(json_decode($x['body'],true));
			}
			break;




		default:
			break;

	}	


}