]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/lib/magicenvelope.php
f33119b8f7314f8f336bda0219c2e77649c9c741
[quix0rs-gnu-social.git] / plugins / OStatus / lib / magicenvelope.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * A sample module to show best practices for StatusNet plugins
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @package   StatusNet
24  * @author    James Walker <james@status.net>
25  * @copyright 2010 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  * @link      http://status.net/
28  */
29
30 class MagicEnvelope
31 {
32     const ENCODING = 'base64url';
33
34     const NS = 'http://salmon-protocol.org/ns/magic-env';
35     
36     private function normalizeUser($user_id)
37     {
38         if (substr($user_id, 0, 5) == 'http:' ||
39             substr($user_id, 0, 6) == 'https:' ||
40             substr($user_id, 0, 5) == 'acct:') {
41             return $user_id;
42         }
43
44         if (strpos($user_id, '@') !== FALSE) {
45             return 'acct:' . $user_id;
46         }
47
48         return 'http://' . $user_id;
49     }
50
51     public function getKeyPair($signer_uri)
52     {
53         $disco = new Discovery();
54
55         try {
56             $xrd = $disco->lookup($signer_uri);
57         } catch (Exception $e) {
58             return false;
59         }
60         if ($xrd->links) {
61             if ($link = Discovery::getService($xrd->links, Magicsig::PUBLICKEYREL)) {
62                 list($type, $keypair) = explode(';', $link['href']);
63                 return $keypair;
64             }
65         }
66         throw new Exception('Unable to locate signer public key');
67     }
68
69
70     public function signMessage($text, $mimetype, $keypair)
71     {
72         $signature_alg = Magicsig::fromString($keypair);
73         $armored_text = base64_encode($text);
74
75         return array(
76             'data' => $armored_text,
77             'encoding' => MagicEnvelope::ENCODING,
78             'data_type' => $mimetype,
79             'sig' => $signature_alg->sign($armored_text),
80             'alg' => $signature_alg->getName()
81         );
82             
83             
84     }
85
86     public function unfold($env)
87     {
88         $dom = new DOMDocument();
89         $dom->loadXML(base64_decode($env['data']));
90
91         if ($dom->documentElement->tagName != 'entry') {
92             return false;
93         }
94
95         $prov = $dom->createElementNS(MagicEnvelope::NS, 'me:provenance');
96         $prov->setAttribute('xmlns:me', MagicEnvelope::NS);
97         $data = $dom->createElementNS(MagicEnvelope::NS, 'me:data', $env['data']);
98         $data->setAttribute('type', $env['data_type']);
99         $prov->appendChild($data);
100         $enc = $dom->createElementNS(MagicEnvelope::NS, 'me:encoding', $env['encoding']);
101         $prov->appendChild($enc);
102         $alg = $dom->createElementNS(MagicEnvelope::NS, 'me:alg', $env['alg']);
103         $prov->appendChild($alg);
104         $sig = $dom->createElementNS(MagicEnvelope::NS, 'me:sig', $env['sig']);
105         $prov->appendChild($sig);
106
107         $dom->documentElement->appendChild($prov);
108
109         return $dom->saveXML();
110     }
111     
112     public function getAuthor($text) {
113         $doc = new DOMDocument();
114         if (!$doc->loadXML($text)) {
115             return FALSE;
116         }
117
118         if ($doc->documentElement->tagName == 'entry') {
119             $authors = $doc->documentElement->getElementsByTagName('author');
120             foreach ($authors as $author) {
121                 $uris = $author->getElementsByTagName('uri');
122                 foreach ($uris as $uri) {
123                     return $this->normalizeUser($uri->nodeValue);
124                 }
125             }
126         }
127     }
128     
129     public function checkAuthor($text, $signer_uri)
130     {
131         return ($this->getAuthor($text) == $signer_uri);
132     }
133     
134     public function verify($env)
135     {
136         if ($env['alg'] != 'RSA-SHA256') {
137             return false;
138         }
139
140         if ($env['encoding'] != MagicEnvelope::ENCODING) {
141             return false;
142         }
143
144         $text = base64_decode($env['data']);
145         $signer_uri = $this->getAuthor($text);
146
147         $verifier = Magicsig::fromString($this->getKeyPair($signer_uri));
148
149         return $verifier->verify($env['data'], $env['sig']);
150     }
151
152     public function parse($text)
153     {
154         $dom = DOMDocument::loadXML($text);
155         return $this->fromDom($dom);
156     }
157
158     public function fromDom($dom)
159     {
160         if ($dom->documentElement->tagName == 'entry') {
161             $env_element = $dom->getElementsByTagNameNS(MagicEnvelope::NS, 'provenance')->item(0);
162         } else if ($dom->documentElement->tagName == 'me:env') {
163             $env_element = $dom->documentElement;
164         } else {
165             return false;
166         }
167
168         $data_element = $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'data')->item(0);
169         
170         return array(
171             'data' => trim($data_element->nodeValue),
172             'data_type' => $data_element->getAttribute('type'),
173             'encoding' => $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'encoding')->item(0)->nodeValue,
174             'alg' => $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'alg')->item(0)->nodeValue,
175             'sig' => $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'sig')->item(0)->nodeValue,
176         );
177     }
178
179 }