Merge branch '4.5' into master
[civicrm-core.git] / CRM / Utils / System / Soap.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * Soap specific stuff goes here
38 */
39 class CRM_Utils_System_Soap extends CRM_Utils_System_Base {
40
41 /**
42 * UF container variables
43 */
44 static $uf = NULL;
45 static $ufClass = NULL;
46
47 /**
48 * Sets the title of the page
49 *
50 * @param string $title
51 * Title for page.
52 * @param $pageTitle
53 *
54 * @paqram string $pageTitle
55 *
56 * @return void
57 */
58 public function setTitle($title, $pageTitle) {
59 return;
60 }
61
62 /**
63 * Given a permission string, check for access requirements
64 *
65 * @param string $str
66 * The permission to check.
67 *
68 * @return boolean
69 * true if yes, else false
70 */
71 public function checkPermission($str) {
72 return TRUE;
73 }
74
75 /**
76 * Append an additional breadcrumb tag to the existing breadcrumb
77 *
78 * @param string $title
79 * @param string $url
80 *
81 * @return void
82 */
83 public function appendBreadCrumb($title, $url) {
84 return;
85 }
86
87 /**
88 * Append a string to the head of the html file
89 *
90 * @param string $head
91 * The new string to be appended.
92 *
93 * @return void
94 */
95 public function addHTMLHead($head) {
96 return;
97 }
98
99 /**
100 * Generate an internal CiviCRM URL
101 *
102 * @param string $path
103 * The path being linked to, such as "civicrm/add".
104 * @param string $query
105 * A query string to append to the link.
106 * @param bool $absolute
107 * Whether to force the output to be an absolute link (beginning with http:).
108 * Useful for links that will be displayed outside the site, such as in an
109 * RSS feed.
110 * @param string $fragment
111 * A fragment identifier (named anchor) to append to the link.
112 *
113 * @return string
114 * an HTML string containing a link to the given path.
115 */
116 public function url($path = NULL, $query = NULL, $absolute = TRUE, $fragment = NULL) {
117 if (isset(self::$ufClass)) {
118 $className = self::$ufClass;
119 $url = $className::url($path, $query, $absolute, $fragment);
120 return $url;
121 }
122 else {
123 return NULL;
124 }
125 }
126
127 /**
128 * Figure out the post url for the form
129 *
130 * @param the default action if one is pre-specified
131 *
132 * @return string
133 * the url to post the form
134 */
135 public function postURL($action) {
136 return NULL;
137 }
138
139 /**
140 * Set the email address of the user
141 *
142 * @param object $user
143 * Handle to the user object.
144 *
145 * @return void
146 */
147 public function setEmail(&$user) {
148 }
149
150 /**
151 * Authenticate a user against the real UF
152 *
153 * @param string $name
154 * Login name.
155 * @param string $pass
156 * Login password.
157 *
158 * @return array
159 * Result array
160 */
161 public function &authenticate($name, $pass) {
162 if (isset(self::$ufClass)) {
163 $className = self::$ufClass;
164 $result =& $className::authenticate($name, $pass);
165 return $result;
166 }
167 else {
168 return NULL;
169 }
170 }
171
172 /**
173 * Swap the current UF for soap
174 */
175 public function swapUF() {
176 $config = CRM_Core_Config::singleton();
177
178 self::$uf = $config->userFramework;
179 $config->userFramework = 'Soap';
180
181 self::$ufClass = $config->userFrameworkClass;
182 $config->userFrameworkClass = 'CRM_Utils_System_Soap';
183 }
184
185 /**
186 * Get the locale set in the hosting CMS
187 *
188 * @return null
189 * as the language is set elsewhere
190 */
191 public function getUFLocale() {
192 return NULL;
193 }
194
195 /**
196 * Get user login URL for hosting CMS (method declared in each CMS system class)
197 *
198 * @param string $destination
199 * If present, add destination to querystring (works for Drupal only).
200 *
201 * @throws Exception
202 * @return string
203 * loginURL for the current CMS
204 */
205 public function getLoginURL($destination = '') {
206 throw new Exception("Method not implemented: getLoginURL");
207 }
208 }