123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
- $longoptions = array('verify', 'slap=', 'notice=');
- $helptext = <<<END_OF_HELP
- slap.php [options]
- Test generation and sending of magic envelopes for Salmon slaps.
- --notice=N generate entry for this notice number
- --verify send signed magic envelope to Tuomas Koski's test service
- --slap=<url> send signed Salmon slap to the destination endpoint
- END_OF_HELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- if (!have_option('--notice')) {
- print "$helptext";
- exit(1);
- }
- $notice_id = get_option_value('--notice');
- $notice = Notice::getKV('id', $notice_id);
- $profile = $notice->getProfile();
- $entry = $notice->asAtomEntry(true);
- echo "== Original entry ==\n\n";
- print $entry;
- print "\n\n";
- $magic_env = MagicEnvelope::signAsUser($entry, $profile->getUser());
- $envxml = $magic_env->toXML();
- echo "== Signed envelope ==\n\n";
- print $envxml;
- print "\n\n";
- echo "== Testing local verification ==\n\n";
- $magic_env = new MagicEnvelope($envxml);
- $activity = new Activity($magic_env->getPayload()->documentElement);
- $actprofile = Profile::fromUri($activity->actor->id);
- $ok = $magic_env->verify($actprofile);
- if ($ok) {
- print "OK\n\n";
- } else {
- print "FAIL\n\n";
- }
- if (have_option('--verify')) {
- $url = 'http://www.madebymonsieur.com/ostatus_discovery/magic_env/validate/';
- echo "== Testing remote verification ==\n\n";
- print "Sending for verification to $url ...\n";
- $client = new HTTPClient();
- try {
- $response = $client->post($url, array(), array('magic_env' => $envxml));
- print $response->getStatus() . "\n\n";
- print $response->getBody() . "\n\n";
- } catch (HTTP_Request2_Exception $e) {
- print 'Failed POST to URL '.var_export($url, true).': '.$e->getMessage();
- }
- }
- if (have_option('--slap')) {
- $url = get_option_value('--slap');
- echo "== Remote salmon slap ==\n\n";
- print "Sending signed Salmon slap to $url ...\n";
- $ok = Salmon::post($url, $entry, $profile->getUser());
- if ($ok) {
- print "OK\n\n";
- } else {
- print "FAIL\n\n";
- }
- }
|