File: readHeader.php

package info (click to toggle)
spotweb 20130826%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,132 kB
  • ctags: 11,281
  • sloc: php: 31,367; xml: 1,009; sh: 148; makefile: 83
file content (58 lines) | stat: -rw-r--r-- 1,526 bytes parent folder | download | duplicates (2)
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
<?php
require_once "lib/SpotClassAutoload.php";
require_once "lib/SpotParser.php";
require_once "lib/SpotPosting.php";
require_once "lib/SpotCategories.php";
require_once "lib/SpotNntp.php";
require_once "NNTP/Protocol/Client.php";
require_once "NNTP/Client.php";
require_once "lib/exceptions/CustomException.php";
require_once "lib/exceptions/NntpException.php";
require_once "lib/services/Signing/Services_Signing_Base.php";
require_once "lib/SpotSecurity.php";
require_once "lib/SpotTiming.php";
require_once "settings.php";
require_once "lib/SpotDb.php";



$db = new SpotDb($settings['db']);
$db->connect();

echo "Connected to the database.." . PHP_EOL;

$spotSettings = SpotSettings::singleton($db, $settings);

$server = array('host' => $argv[1],
				'enc' => false,
				'port' => 119,
				'user' => $argv[2],
				'pass' => $argv[3]);

$rsaKeys = $spotSettings->get('rsa_keys');

$nntp = new SpotNntp($server);
$nntp->selectGroup('alt.test');
try {
	$r = $nntp->getHeader('<ZTZLM3pnNW5pE5RsDlWL8347ntp@spot.net>');
       
	foreach($r as $hdr) {
		$y = explode(":", $hdr);
		$r[$y[0]] = trim($y[1]);
	} # foreac

	$spotParser = new SpotParser();
        $spot = $spotParser->parseXover($r['Subject'],
                                        $r['From'],
                                        $r['Date'],
                                        $r['Message-ID'],
                                        $rsaKeys);

//	var_dump($y);
	//var_dump($r);
        var_dump($spot);

} catch(Exception $x) {
		var_dump($x);
}