| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2010, StatusNet, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * A sample module to show best practices for StatusNet plugins | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    James Walker <james@status.net> | 
					
						
							|  |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class Salmon | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-02 13:23:55 -04:00
										 |  |  |     const REL_SALMON = 'salmon'; | 
					
						
							|  |  |  |     const REL_MENTIONED = 'mentioned'; | 
					
						
							| 
									
										
										
										
											2010-02-26 13:17:24 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-03 01:35:04 +02:00
										 |  |  |     // XXX: these are deprecated
 | 
					
						
							| 
									
										
										
										
											2010-02-26 13:17:24 -05:00
										 |  |  |     const NS_REPLIES = "http://salmon-protocol.org/ns/salmon-replies"; | 
					
						
							|  |  |  |     const NS_MENTIONS = "http://salmon-protocol.org/ns/salmon-mention"; | 
					
						
							| 
									
										
										
										
											2010-09-03 01:35:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-22 09:43:27 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Sign and post the given Atom entry as a Salmon message. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-01-05 14:05:59 -08:00
										 |  |  |      * Side effects: may generate a keypair on-demand for the given user, | 
					
						
							|  |  |  |      * which can be very slow on some systems. | 
					
						
							| 
									
										
										
										
											2010-02-22 09:43:27 -08:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param string $endpoint_uri | 
					
						
							| 
									
										
										
										
											2011-01-05 14:05:59 -08:00
										 |  |  |      * @param string $xml string representation of payload | 
					
						
							|  |  |  |      * @param Profile $actor local user profile whose keys to sign with | 
					
						
							| 
									
										
										
										
											2010-02-22 09:43:27 -08:00
										 |  |  |      * @return boolean success | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-02-26 14:21:21 -05:00
										 |  |  |     public function post($endpoint_uri, $xml, $actor) | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (empty($endpoint_uri)) { | 
					
						
							| 
									
										
										
										
											2010-02-22 09:43:27 -08:00
										 |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-06 00:01:42 +00:00
										 |  |  |         foreach ($this->formatClasses() as $class) { | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |             try { | 
					
						
							|  |  |  |                 $envelope = $this->createMagicEnv($xml, $actor, $class); | 
					
						
							|  |  |  |             } catch (Exception $e) { | 
					
						
							|  |  |  |                 common_log(LOG_ERR, "Salmon unable to sign: " . $e->getMessage()); | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-04-29 18:59:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |             $headers = array('Content-Type: application/magic-envelope+xml'); | 
					
						
							| 
									
										
										
										
											2011-04-29 18:59:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |             try { | 
					
						
							|  |  |  |                 $client = new HTTPClient(); | 
					
						
							|  |  |  |                 $client->setBody($envelope); | 
					
						
							|  |  |  |                 $response = $client->post($endpoint_uri, $headers); | 
					
						
							|  |  |  |             } catch (HTTP_Request2_Exception $e) { | 
					
						
							|  |  |  |                 common_log(LOG_ERR, "Salmon ($class) post to $endpoint_uri failed: " . $e->getMessage()); | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ($response->getStatus() != 200) { | 
					
						
							|  |  |  |                 common_log(LOG_ERR, "Salmon ($class) at $endpoint_uri returned status " . | 
					
						
							|  |  |  |                     $response->getStatus() . ': ' . $response->getBody()); | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |             // Success!
 | 
					
						
							|  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-06 00:01:42 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * List the magic envelope signature class variants in the order we try them. | 
					
						
							|  |  |  |      * Multiples are needed for backwards-compat with StatusNet prior to 0.9.7, | 
					
						
							|  |  |  |      * which used a draft version of the magic envelope spec. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function formatClasses() { | 
					
						
							|  |  |  |         return array('MagicEnvelope', 'MagicEnvelopeCompat'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-05 14:05:59 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Encode the given string as a signed MagicEnvelope XML document, | 
					
						
							|  |  |  |      * using the keypair for the given local user profile. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Side effects: will create and store a keypair on-demand if one | 
					
						
							|  |  |  |      * hasn't already been generated for this user. This can be very slow | 
					
						
							|  |  |  |      * on some systems. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $text XML fragment to sign, assumed to be Atom | 
					
						
							|  |  |  |      * @param Profile $actor Profile of a local user to use as signer | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |      * @param string $class to override the magic envelope signature version, pass a MagicEnvelope subclass here | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-01-05 14:05:59 -08:00
										 |  |  |      * @return string XML string representation of magic envelope | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws Exception on bad profile input or key generation problems | 
					
						
							|  |  |  |      * @fixme if signing fails, this seems to return the original text without warning. Is there a reason for this? | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |     public function createMagicEnv($text, $actor, $class='MagicEnvelope') | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-01-05 23:54:16 +00:00
										 |  |  |         $magic_env = new $class(); | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-26 14:21:21 -05:00
										 |  |  |         $user = User::staticGet('id', $actor->id); | 
					
						
							|  |  |  |         if ($user->id) { | 
					
						
							|  |  |  |             // Use local key
 | 
					
						
							|  |  |  |             $magickey = Magicsig::staticGet('user_id', $user->id); | 
					
						
							|  |  |  |             if (!$magickey) { | 
					
						
							|  |  |  |                 // No keypair yet, let's generate one.
 | 
					
						
							|  |  |  |                 $magickey = new Magicsig(); | 
					
						
							|  |  |  |                 $magickey->generate($user->id); | 
					
						
							| 
									
										
										
										
											2010-09-03 01:35:04 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-02-26 14:21:21 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-09-19 15:17:36 +02:00
										 |  |  |             // TRANS: Exception.
 | 
					
						
							|  |  |  |             throw new Exception(_m('Salmon invalid actor for signing.')); | 
					
						
							| 
									
										
										
										
											2010-02-26 14:21:21 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 09:39:16 -05:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2010-02-26 14:21:21 -05:00
										 |  |  |             $env = $magic_env->signMessage($text, 'application/atom+xml', $magickey->toString()); | 
					
						
							| 
									
										
										
										
											2010-02-25 09:39:16 -05:00
										 |  |  |         } catch (Exception $e) { | 
					
						
							|  |  |  |             return $text; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-02-26 15:39:30 -05:00
										 |  |  |         return $magic_env->toXML($env); | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-05 14:05:59 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Check if the given magic envelope is well-formed and correctly signed. | 
					
						
							|  |  |  |      * Needs to have network access to fetch public keys over the web. | 
					
						
							| 
									
										
										
										
											2011-01-06 00:01:42 +00:00
										 |  |  |      * Both current and back-compat signature formats will be checked. | 
					
						
							| 
									
										
										
										
											2011-01-05 14:05:59 -08:00
										 |  |  |      * | 
					
						
							|  |  |  |      * Side effects: exceptions and caching updates may occur during network | 
					
						
							|  |  |  |      * fetches. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $text XML fragment of magic envelope | 
					
						
							|  |  |  |      * @return boolean | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws Exception on bad profile input or key generation problems | 
					
						
							|  |  |  |      * @fixme could hit fatal errors or spew output on invalid XML | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-02-26 15:39:30 -05:00
										 |  |  |     public function verifyMagicEnv($text) | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-01-06 00:01:42 +00:00
										 |  |  |         foreach ($this->formatClasses() as $class) { | 
					
						
							|  |  |  |             $magic_env = new $class(); | 
					
						
							| 
									
										
										
										
											2010-09-03 01:35:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-06 00:01:42 +00:00
										 |  |  |             $env = $magic_env->parse($text); | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-06 00:01:42 +00:00
										 |  |  |             if ($magic_env->verify($env)) { | 
					
						
							|  |  |  |                 return true; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2010-02-09 15:37:37 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | } |