CRM-16478 Initial changes to remove custom error template path
[civicrm-core.git] / CRM / Utils / System / Soap.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
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 * Given a permission string, check for access requirements
49 *
50 * @param string $str
51 * The permission to check.
52 *
53 * @return bool
54 * true if yes, else false
55 */
56 public function checkPermission($str) {
57 return TRUE;
58 }
59
60 /**
61 * @inheritDoc
62 */
63 public function url($path = NULL, $query = NULL, $absolute = TRUE, $fragment = NULL) {
64 if (isset(self::$ufClass)) {
65 $className = self::$ufClass;
66 $url = $className::url($path, $query, $absolute, $fragment);
67 return $url;
68 }
69 else {
70 return NULL;
71 }
72 }
73
74 /**
75 * FIXME: Can this override be removed in favor of the parent?
76 * @inheritDoc
77 */
78 public function postURL($action) {
79 return NULL;
80 }
81
82 /**
83 * Set the email address of the user.
84 *
85 * @param object $user
86 * Handle to the user object.
87 *
88 * @return void
89 */
90 public function setEmail(&$user) {
91 }
92
93 /**
94 * @inheritDoc
95 */
96 public function authenticate($name, $pass) {
97 if (isset(self::$ufClass)) {
98 $className = self::$ufClass;
99 $result =& $className::authenticate($name, $pass);
100 return $result;
101 }
102 else {
103 return NULL;
104 }
105 }
106
107 /**
108 * Swap the current UF for soap.
109 */
110 public function swapUF() {
111 $config = CRM_Core_Config::singleton();
112
113 self::$uf = $config->userFramework;
114 $config->userFramework = 'Soap';
115
116 self::$ufClass = $config->userFrameworkClass;
117 $config->userFrameworkClass = 'CRM_Utils_System_Soap';
118 }
119
120 /**
121 * Get user login URL for hosting CMS (method declared in each CMS system class)
122 *
123 * @param string $destination
124 *
125 * @throws Exception
126 */
127 public function getLoginURL($destination = '') {
128 throw new Exception("Method not implemented: getLoginURL");
129 }
130
131 }