CRM-12648
[civicrm-core.git] / bin / cli.class.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright Tech To The People http:tttp.eu (c) 2008 |
7 +--------------------------------------------------------------------+
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License along with this program; if not, contact CiviCRM LLC |
20 | at info[AT]civicrm[DOT]org. If you have questions about the |
21 | GNU Affero General Public License or the licensing of CiviCRM, |
22 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
23 +--------------------------------------------------------------------+
24*/
25
26/**
27 * This files provides several classes for doing command line work with
28 * CiviCRM. civicrm_cli is the base class. It's used by cli.php.
29 *
30 * In addition, there are several additional classes that inherit
31 * civicrm_cli to do more precise functions.
32 *
33 **/
34
35/**
36 * base class for doing all command line operations via civicrm
37 * used by cli.php
38 **/
39
40class civicrm_cli {
41 // required values that must be passed
42 // via the command line
43 var $_required_arguments = array('action', 'entity');
44 var $_additional_arguments = array();
45 var $_entity = NULL;
46 var $_action = NULL;
47 var $_output = FALSE;
48 var $_joblog = FALSE;
49 var $_config;
50
51 // optional arguments
52 var $_site = 'localhost';
53 var $_user = NULL;
54
55 // all other arguments populate the parameters
56 // array that is passed to civicrm_api
57 var $_params = array('version' => 3);
58
59 var $_errors = array();
60
61 public function initialize() {
62 if (!$this->_accessing_from_cli()) {
63 return FALSE;
64 }
65 if (!$this->_parseOptions()) {
66 return FALSE;
67 }
68 if (!$this->_bootstrap()) {
69 return FALSE;
70 }
71 if (!$this->_validateOptions()) {
72 return FALSE;
73 }
74 return TRUE;
75 }
76
77 public function _accessing_from_cli() {
78 if (PHP_SAPI === 'cli') {
79 return TRUE;
80 }
81 else {
82 trigger_error("cli.php can only be run from command line.", E_USER_ERROR);
83 }
84 }
85
86 public function callApi() {
87 require_once 'api/api.php';
88
89 // CRM-9822 -'execute' action always goes thru Job api and always writes to log
90 if ($this->_action != 'execute' && $this->_joblog) {
91 require_once 'CRM/Core/JobManager.php';
92 $facility = new CRM_Core_JobManager();
93 $facility->setSingleRunParams($this->_entity, $this->_action, $this->_params, 'From Cli.php');
94 $facility->executeJobByAction($this->_entity, $this->_action);
95 }
96 else {
97 // CRM-9822 cli.php calls don't require site-key, so bypass site-key authentication
98 $this->_params['auth'] = FALSE;
99 $result = civicrm_api($this->_entity, $this->_action, $this->_params);
100 }
101
102 if ($result['is_error'] != 0) {
103 $this->_log($result['error_message']);
104 return FALSE;
105 }
106 elseif ($this->_output) {
107 print_r($result['values']);
108 }
109 return TRUE;
110 }
111
112 private function _parseOptions() {
113 $args = $_SERVER['argv'];
114 // remove the first argument, which is the name
115 // of this script
116 array_shift($args);
117
118 while (list($k, $arg) = each($args)) {
119 // sanitize all user input
120 $arg = $this->_sanitize($arg);
121
122 // if we're not parsing an option signifier
123 // continue to the next one
124 if (!preg_match('/^-/', $arg)) {
125 continue;
126 }
127
128 // find the value of this arg
129 if (preg_match('/=/', $arg)) {
130 $parts = explode('=', $arg);
131 $arg = $parts[0];
132 $value = $parts[1];
133 }
134 else {
135 if (isset($args[$k + 1])) {
136 $next_arg = $this->_sanitize($args[$k + 1]);
137 // if the next argument is not another option
138 // it's the value for this argument
139 if (!preg_match('/^-/', $next_arg)) {
140 $value = $next_arg;
141 }
142 }
143 }
144
145 // parse the special args first
146 if ($arg == '-e' || $arg == '--entity') {
147 $this->_entity = $value;
148 }
149 elseif ($arg == '-a' || $arg == '--action') {
150 $this->_action = $value;
151 }
152 elseif ($arg == '-s' || $arg == '--site') {
153 $this->_site = $value;
154 }
155 elseif ($arg == '-u' || $arg == '--user') {
156 $this->_user = $value;
157 }
158 elseif ($arg == '-p' || $arg == '--password') {
159 $this->_password = $value;
160 }
161 elseif ($arg == '-o' || $arg == '--output') {
162 $this->_output = TRUE;
163 }
164 elseif ($arg == '-j' || $arg == '--joblog') {
165 $this->_joblog = TRUE;
166 }
167 else {
168 while(list($short, $long) = each ($this->_additional_arguments)) {
169 if ($arg == '-' . $short || $arg == '--' . $long) {
170 $property = '_' . $long;
171 $this->$property = $value;
172 continue;
173 }
174 }
175 // all other arguments are parameters
176 $key = ltrim($arg, '--');
177 $this->_params[$key] = isset($value) ? $value : NULL;
178 }
179 }
180 return TRUE;
181 }
182
183 private function _bootstrap() {
184 // so the configuration works with php-cli
185 $_SERVER['PHP_SELF'] = "/index.php";
186 $_SERVER['HTTP_HOST'] = $this->_site;
187 $_SERVER['REMOTE_ADDR'] = "127.0.0.1";
ddd885e6
DL
188 $_SERVER['SERVER_SOFTWARE'] = NULL;
189 $_SERVER['REQUEST_METHOD'] = 'GET';
190
6a488035
TO
191 // SCRIPT_FILENAME needed by CRM_Utils_System::cmsRootPath
192 $_SERVER['SCRIPT_FILENAME'] = __FILE__;
ddd885e6 193
6a488035
TO
194 // CRM-8917 - check if script name starts with /, if not - prepend it.
195 if (ord($_SERVER['SCRIPT_NAME']) != 47) {
196 $_SERVER['SCRIPT_NAME'] = '/' . $_SERVER['SCRIPT_NAME'];
197 }
198
199 $civicrm_root = dirname(__DIR__);
200 chdir($civicrm_root);
201 require_once ('civicrm.config.php');
202 // autoload
203 require_once $civicrm_root . '/CRM/Core/ClassLoader.php';
204 CRM_Core_ClassLoader::singleton()->register();
205
206 $this->_config = CRM_Core_Config::singleton();
207
208 $class = 'CRM_Utils_System_' . $this->_config->userFramework;
209
210 $cms = new $class();
211 if (!CRM_Utils_System::loadBootstrap(array(
212 ), FALSE, FALSE, $civicrm_root)) {
213 $this->_log(ts("Failed to bootstrap CMS"));
214 return FALSE;
215 }
216
217 if (strtolower($this->_entity) == 'job') {
218 if (!$this->_user) {
219 $this->_log(ts("Jobs called from cli.php require valid user as parameter"));
220 return FALSE;
221 }
222 }
223
224 if (!empty($this->_user)) {
bec3fc7c
BS
225 if(!CRM_Utils_System::authenticateScript(TRUE, $this->_user, $this->_password, TRUE, FALSE, FALSE)) {
226 $this->_log(ts("Failed to login as %1. Wrong username or password.", array('1' => $this->_user)));
227 return FALSE;
228 }
6a488035
TO
229 if (!$cms->loadUser($this->_user)) {
230 $this->_log(ts("Failed to login as %1", array('1' => $this->_user)));
231 return FALSE;
232 }
233 }
234
235 return TRUE;
236 }
237
238 private function _validateOptions() {
239 $required = $this->_required_arguments;
240 while (list(, $var) = each($required)) {
241 $index = '_' . $var;
242 if (empty($this->$index)) {
243 $missing_arg = '--' . $var;
244 $this->_log(ts("The %1 argument is required", array(1 => $missing_arg)));
245 $this->_log($this->_getUsage());
246 return FALSE;
247 }
248 }
249 return TRUE;
250 }
251
252 private function _sanitize($value) {
253 // restrict user input - we should not be needing anything
254 // other than normal alpha numeric plus - and _.
255 return trim(preg_replace('#^[^a-zA-Z0-9\-_=/]$#', '', $value));
256 }
257
258 private function _getUsage() {
259 $out = "Usage: cli.php -e entity -a action [-u user] [-s site] [--output] [PARAMS]\n";
260 $out .= " entity is the name of the entity, e.g. Contact, Event, etc.\n";
261 $out .= " action is the name of the action e.g. Get, Create, etc.\n";
262 $out .= " user is an optional username to run the script as\n";
263 $out .= " site is the domain name of the web site (for Drupal multi site installs)\n";
264 $out .= " --output will print the result from the api call\n";
265 $out .= " PARAMS is one or more --param=value combinations to pass to the api\n";
266 return ts($out);
267 }
268
269 private function _log($error) {
270 // fixme, this should call some CRM_Core_Error:: function
271 // that properly logs
272 print "$error\n";
273 }
274}
275
276/**
277 * class used by csv/export.php to export records from
278 * the database in a csv file format.
279 **/
280
281class civicrm_cli_csv_exporter extends civicrm_cli {
282 var $separator = ',';
283
284 function __construct() {
285 $this->_required_arguments = array('entity');
286 parent::initialize();
287 }
288
289 function run() {
290 $out = fopen("php://output", 'w');
291 fputcsv($out, $this->columns, $this->separator, '"');
292
293 $this->row = 1;
294 $result = civicrm_api($this->_entity, 'Get', $this->_params);
295 $first = true;
296 foreach ($result['values'] as $row) {
297 if($first) {
298 $columns = array_keys($row);
299 fputcsv($out, $columns, $this->separator, '"');
300 $first = false;
301 }
302 fputcsv($out, $row, $this->separator, '"');
303 }
304 fclose($out);
305 echo "\n";
306 }
307}
308
309/**
310 * base class used by both civicrm_cli_csv_import
311 * and civicrm_cli_csv_deleter to add or delete
312 * records based on those found in a csv file
313 * passed to the script.
314 **/
315
316class civicrm_cli_csv_file extends civicrm_cli {
317 var $header;
318 var $separator = ',';
319
320 function __construct() {
321 $this->_required_arguments = array('entity','file');
322 $this->_additional_arguments = array('f' => 'file');
323 parent::initialize();
324 }
325
326 function run() {
327 $this->row = 1;
328 $handle = fopen($this->_file, "r");
329
330 if (!$handle) {
331 die("Could not open file: " . $this->_file . ". Please provide an absolute path.\n");
332 }
333
334 //header
335 $header = fgetcsv($handle, 0, $this->separator);
336 // In case fgetcsv couldn't parse the header and dumped the whole line in 1 array element
337 // Try a different separator char
338 if (count($header) == 1) {
339 $this->separator = ";";
340 rewind($handle);
341 $header = fgetcsv($handle, 0, $this->separator);
342 if (count($header) == 1) {
343 die("Invalid file format for " . $this->_file . ". It must be a valid csv with separator ',' or ';'\n");
344 }
345 }
346
347 $this->header = $header;
348 while (($data = fgetcsv($handle, 0, $this->separator)) !== FALSE) {
349 // skip blank lines
350 if(count($data) == 1 && is_null($data[0])) continue;
351 $this->row++;
352 $params = $this->convertLine($data);
353 $this->processLine($params);
354 }
355 fclose($handle);
356 return;
357 }
358
359 /* return a params as expected */
360 function convertLine($data) {
361 $params = array();
362 foreach ($this->header as $i => $field) {
363 $params[$field] = $data[$i];
364 }
365 $params['version'] = 3;
366 return $params;
367 }
368}
369
370/**
371 * class for processing records to add
372 * used by csv/import.php
373 *
374 **/
375
376class civicrm_cli_csv_importer extends civicrm_cli_csv_file {
377 function processline($params) {
378 $result = civicrm_api($this->_entity, 'Create', $params);
379 if ($result['is_error']) {
380 echo "\nERROR line " . $this->row . ": " . $result['error_message'] . "\n";
381 }
382 else {
383 echo "\nline " . $this->row . ": created " . $this->_entity . " id: " . $result['id'] . "\n";
384 }
385 }
386}
387
388/**
389 * class for processing records to delete
390 * used by csv/delete.php
391 *
392 **/
393
394class civicrm_cli_csv_deleter extends civicrm_cli_csv_file {
395 function processline($params) {
396 $result = civicrm_api($this->_entity, 'Delete', $params);
397 if ($result['is_error']) {
398 echo "\nERROR line " . $this->row . ": " . $result['error_message'] . "\n";
399 } else {
400 echo "\nline " . $this->row . ": deleted\n";
401 }
402 }
403}