3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
6 * A sample module to show best practices for StatusNet plugins
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.
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.
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/>.
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/
32 const ENCODING = 'base64url';
34 const NS = 'http://salmon-protocol.org/ns/magic-env';
36 private function normalizeUser($user_id)
38 if (substr($user_id, 0, 5) == 'http:' ||
39 substr($user_id, 0, 6) == 'https:' ||
40 substr($user_id, 0, 5) == 'acct:') {
44 if (strpos($user_id, '@') !== FALSE) {
45 return 'acct:' . $user_id;
48 return 'http://' . $user_id;
51 public function getKeyPair($signer_uri)
53 $disco = new Discovery();
56 $xrd = $disco->lookup($signer_uri);
57 } catch (Exception $e) {
61 if ($link = Discovery::getService($xrd->links, Magicsig::PUBLICKEYREL)) {
63 $parts = explode(',', $link['href']);
64 if (count($parts) == 2) {
67 // Backwards compatibility check for separator bug in 0.9.0
68 $parts = explode(';', $link['href']);
69 if (count($parts) == 2) {
79 throw new Exception('Unable to locate signer public key');
83 public function signMessage($text, $mimetype, $keypair)
85 $signature_alg = Magicsig::fromString($keypair);
86 $armored_text = Magicsig::base64_url_encode($text);
89 'data' => $armored_text,
90 'encoding' => MagicEnvelope::ENCODING,
91 'data_type' => $mimetype,
92 'sig' => $signature_alg->sign($armored_text),
93 'alg' => $signature_alg->getName()
99 public function toXML($env) {
100 $xs = new XMLStringer();
102 $xs->elementStart('me:env', array('xmlns:me' => MagicEnvelope::NS));
103 $xs->element('me:data', array('type' => $env['data_type']), $env['data']);
104 $xs->element('me:encoding', null, $env['encoding']);
105 $xs->element('me:alg', null, $env['alg']);
106 $xs->element('me:sig', null, $env['sig']);
107 $xs->elementEnd('me:env');
109 $string = $xs->getString();
110 common_debug($string);
115 public function unfold($env)
117 $dom = new DOMDocument();
118 $dom->loadXML(Magicsig::base64_url_decode($env['data']));
120 if ($dom->documentElement->tagName != 'entry') {
124 $prov = $dom->createElementNS(MagicEnvelope::NS, 'me:provenance');
125 $prov->setAttribute('xmlns:me', MagicEnvelope::NS);
126 $data = $dom->createElementNS(MagicEnvelope::NS, 'me:data', $env['data']);
127 $data->setAttribute('type', $env['data_type']);
128 $prov->appendChild($data);
129 $enc = $dom->createElementNS(MagicEnvelope::NS, 'me:encoding', $env['encoding']);
130 $prov->appendChild($enc);
131 $alg = $dom->createElementNS(MagicEnvelope::NS, 'me:alg', $env['alg']);
132 $prov->appendChild($alg);
133 $sig = $dom->createElementNS(MagicEnvelope::NS, 'me:sig', $env['sig']);
134 $prov->appendChild($sig);
136 $dom->documentElement->appendChild($prov);
138 return $dom->saveXML();
141 public function getAuthor($text) {
142 $doc = new DOMDocument();
143 if (!$doc->loadXML($text)) {
147 if ($doc->documentElement->tagName == 'entry') {
148 $authors = $doc->documentElement->getElementsByTagName('author');
149 foreach ($authors as $author) {
150 $uris = $author->getElementsByTagName('uri');
151 foreach ($uris as $uri) {
152 return $this->normalizeUser($uri->nodeValue);
158 public function checkAuthor($text, $signer_uri)
160 return ($this->getAuthor($text) == $signer_uri);
163 public function verify($env)
165 if ($env['alg'] != 'RSA-SHA256') {
166 common_log(LOG_DEBUG, "Salmon error: bad algorithm");
170 if ($env['encoding'] != MagicEnvelope::ENCODING) {
171 common_log(LOG_DEBUG, "Salmon error: bad encoding");
175 $text = Magicsig::base64_url_decode($env['data']);
176 $signer_uri = $this->getAuthor($text);
179 $keypair = $this->getKeyPair($signer_uri);
180 } catch (Exception $e) {
181 common_log(LOG_DEBUG, "Salmon error: ".$e->getMessage());
185 $verifier = Magicsig::fromString($keypair);
188 common_log(LOG_DEBUG, "Salmon error: unable to parse keypair");
192 return $verifier->verify($env['data'], $env['sig']);
195 public function parse($text)
197 $dom = DOMDocument::loadXML($text);
198 return $this->fromDom($dom);
201 public function fromDom($dom)
203 $env_element = $dom->getElementsByTagNameNS(MagicEnvelope::NS, 'env')->item(0);
205 $env_element = $dom->getElementsByTagNameNS(MagicEnvelope::NS, 'provenance')->item(0);
212 $data_element = $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'data')->item(0);
213 $sig_element = $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'sig')->item(0);
215 'data' => preg_replace('/\s/', '', $data_element->nodeValue),
216 'data_type' => $data_element->getAttribute('type'),
217 'encoding' => $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'encoding')->item(0)->nodeValue,
218 'alg' => $env_element->getElementsByTagNameNS(MagicEnvelope::NS, 'alg')->item(0)->nodeValue,
219 'sig' => preg_replace('/\s/', '', $sig_element->nodeValue),