2005-11-05 04:08:14 +00:00
< ? php
2005-12-23 21:57:26 +00:00
/* SVN FILE: $Id$ */
/**
* Short description for file .
*
* Long description for file
*
* PHP versions 4 and 5
*
2007-02-02 10:39:45 +00:00
* CakePHP ( tm ) : Rapid Development Framework < http :// www . cakephp . org />
* Copyright 2005 - 2007 , Cake Software Foundation , Inc .
2006-05-26 05:29:17 +00:00
* 1785 E . Sahara Avenue , Suite 490 - 204
* Las Vegas , Nevada 89104
2005-12-23 21:57:26 +00:00
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice .
*
* @ filesource
2007-02-02 10:39:45 +00:00
* @ copyright Copyright 2005 - 2007 , Cake Software Foundation , Inc .
* @ link http :// www . cakefoundation . org / projects / info / cakephp CakePHP ( tm ) Project
2006-05-26 05:29:17 +00:00
* @ package cake
* @ subpackage cake . cake . scripts
2007-02-02 10:39:45 +00:00
* @ since CakePHP ( tm ) v 0.10 . 0.1232
2006-05-26 05:29:17 +00:00
* @ version $Revision $
* @ modifiedby $LastChangedBy $
* @ lastmodified $Date $
* @ license http :// www . opensource . org / licenses / mit - license . php The MIT License
2005-12-23 21:57:26 +00:00
*/
2007-05-02 21:19:22 +00:00
uses ( 'controller' . DS . 'components' . DS . 'acl' , 'model' . DS . 'db_acl' );
2006-05-26 05:29:17 +00:00
/**
* @ package cake
2007-05-02 21:19:22 +00:00
* @ subpackage cake . cake . scripts
2006-02-25 19:20:18 +00:00
*/
2007-05-03 22:40:22 +00:00
class AclScript extends CakeScript {
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
* @ var unknown_type
*/
2006-05-26 05:29:17 +00:00
var $acl ;
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
* @ var unknown_type
*/
2006-05-26 05:29:17 +00:00
var $args ;
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
* @ var unknown_type
*/
2006-05-26 05:29:17 +00:00
var $dataSource = 'default' ;
2005-12-27 03:33:44 +00:00
/**
2007-05-04 00:25:04 +00:00
* override intialize of the CakeScript
*
*/
2007-05-04 03:49:53 +00:00
function initialize () {
2007-05-02 21:19:22 +00:00
$this -> dataSource = 'default' ;
2006-05-26 05:29:17 +00:00
2007-05-02 21:19:22 +00:00
if ( isset ( $this -> params [ 'datasource' ])) {
$this -> dataSource = $this -> params [ 'datasource' ];
}
if ( ACL_CLASSNAME != 'DB_ACL' ) {
2006-05-26 05:29:17 +00:00
$out = " -------------------------------------------------- \n " ;
$out .= " Error: Your current Cake configuration is set to \n " ;
$out .= " an ACL implementation other than DB. Please change \n " ;
$out .= " your core config to reflect your decision to use \n " ;
$out .= " DB_ACL before attempting to use this script. \n " ;
$out .= " -------------------------------------------------- \n " ;
$out .= " Current ACL Classname: " . ACL_CLASSNAME . " \n " ;
$out .= " -------------------------------------------------- \n " ;
2007-05-02 21:19:22 +00:00
$this -> err ( $out );
2006-05-26 05:29:17 +00:00
exit ();
}
2007-05-04 03:49:53 +00:00
//$this->Dispatch->shiftArgs();
2007-05-04 04:37:25 +00:00
2007-05-04 03:49:53 +00:00
if ( $this -> command && ! in_array ( $this -> command , array ( 'help' ))) {
2006-12-24 16:35:21 +00:00
if ( ! file_exists ( CONFIGS . 'database.php' )) {
2007-05-02 21:19:22 +00:00
$this -> out ( '' );
$this -> out ( 'Your database configuration was not found.' );
$this -> out ( 'Take a moment to create one:' );
2007-05-04 04:37:25 +00:00
$this -> __doDbConfig ();
2006-12-24 16:35:21 +00:00
}
require_once ( CONFIGS . 'database.php' );
2007-02-18 13:25:37 +00:00
2007-05-04 03:49:53 +00:00
if ( ! in_array ( $this -> command , array ( 'initdb' ))) {
2006-12-24 16:35:21 +00:00
$this -> Acl = new AclComponent ();
$this -> db =& ConnectionManager :: getDataSource ( $this -> dataSource );
}
}
2007-05-04 03:49:53 +00:00
2006-05-26 05:29:17 +00:00
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function create () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 4 , 'create' );
2006-05-26 05:29:17 +00:00
$this -> checkNodeType ();
extract ( $this -> __dataVars ());
2007-02-18 13:25:37 +00:00
2007-05-02 21:19:22 +00:00
if ( preg_match ( '/^([\w]+)\.(.*)$/' , $this -> args [ 2 ], $matches )) {
pr ( $matches );
die ();
} else {
$parent = $this -> args [ 2 ];
}
2007-05-04 03:49:53 +00:00
2007-05-04 04:37:25 +00:00
/* if ( ! empty ( $parent )) {
2007-05-04 03:49:53 +00:00
$parent = $this -> { $class } -> node ( $model , $parent );
} else {
$parent = null ;
2007-05-04 04:37:25 +00:00
} */
2007-05-04 03:49:53 +00:00
$this -> Acl -> { $class } -> create ();
if ( $this -> Acl -> { $class } -> save ( array (
'parent_id' => Set :: extract ( $parent , " 0. { $class } .id " ),
'model' => null ,
'foreign_key' => null
))) {
2006-12-24 16:35:21 +00:00
$this -> displayError ( " Parent Node Not Found " , " There was an error creating the " . $class . " , probably couldn't find the parent node. \n If you wish to create a new root node, specify the <parent_id> as '0'. " );
2006-05-26 05:29:17 +00:00
}
2007-05-02 21:19:22 +00:00
$this -> out ( " New $class ' " . $this -> args [ 3 ] . " ' created. \n \n " );
2006-05-26 05:29:17 +00:00
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function delete () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 2 , 'delete' );
2006-05-26 05:29:17 +00:00
$this -> checkNodeType ();
extract ( $this -> __dataVars ());
2007-02-01 17:13:12 +00:00
if ( ! $this -> Acl -> { $class } -> delete ( $this -> args [ 1 ])) {
$this -> displayError ( " Node Not Deleted " , " There was an error deleting the " . $class . " . Check that the node exists. \n " );
}
2007-05-02 21:19:22 +00:00
$this -> out ( " { $class } deleted. \n \n " );
2006-05-26 05:29:17 +00:00
}
2005-12-23 21:57:26 +00:00
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function setParent () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 3 , 'setParent' );
2006-05-26 05:29:17 +00:00
$this -> checkNodeType ();
extract ( $this -> __dataVars ());
2006-12-24 16:35:21 +00:00
if ( ! $this -> Acl -> { $class } -> setParent ( $this -> args [ 2 ], $this -> args [ 1 ])){
2007-05-02 21:19:22 +00:00
$this -> out ( " Error in setting new parent. Please make sure the parent node exists, and is not a descendant of the node specified. \n " );
2006-05-26 05:29:17 +00:00
} else {
2007-05-02 21:19:22 +00:00
$this -> out ( " Node parent set to " . $this -> args [ 2 ] . " \n \n " );
2006-05-26 05:29:17 +00:00
}
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function getPath () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 2 , 'getPath' );
2006-05-26 05:29:17 +00:00
$this -> checkNodeType ();
extract ( $this -> __dataVars ());
2006-12-24 16:35:21 +00:00
$id = ( is_numeric ( $this -> args [ 2 ])) ? intval ( $this -> args [ 1 ]) : $this -> args [ 1 ];
$nodes = $this -> Acl -> { $class } -> getPath ( $id );
2007-02-01 17:13:12 +00:00
if ( empty ( $nodes )) {
$this -> displayError ( " Supplied Node ' " . $this -> args [ 1 ] . " ' not found " , " No tree returned. " );
}
2006-05-26 05:29:17 +00:00
for ( $i = 0 ; $i < count ( $nodes ); $i ++ ) {
2007-05-02 21:19:22 +00:00
$this -> out ( str_repeat ( ' ' , $i ) . " [ " . $nodes [ $i ][ $class ][ 'id' ] . " ] " . $nodes [ $i ][ $class ][ 'alias' ] . " \n " );
2006-05-26 05:29:17 +00:00
}
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function grant () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 3 , 'grant' );
2006-05-26 05:29:17 +00:00
//add existence checks for nodes involved
2006-12-24 16:35:21 +00:00
$aro = ( is_numeric ( $this -> args [ 0 ])) ? intval ( $this -> args [ 0 ]) : $this -> args [ 0 ];
$aco = ( is_numeric ( $this -> args [ 1 ])) ? intval ( $this -> args [ 1 ]) : $this -> args [ 1 ];
$this -> Acl -> allow ( $aro , $aco , $this -> args [ 2 ]);
2007-05-02 21:19:22 +00:00
$this -> out ( " Permission granted. \n " );
2006-05-26 05:29:17 +00:00
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function deny () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 3 , 'deny' );
2006-05-26 05:29:17 +00:00
//add existence checks for nodes involved
2006-12-24 16:35:21 +00:00
$aro = ( is_numeric ( $this -> args [ 0 ])) ? intval ( $this -> args [ 0 ]) : $this -> args [ 0 ];
$aco = ( is_numeric ( $this -> args [ 1 ])) ? intval ( $this -> args [ 1 ]) : $this -> args [ 1 ];
2007-01-31 23:04:47 +00:00
$this -> Acl -> deny ( $aro , $aco , $this -> args [ 2 ]);
2007-05-02 21:19:22 +00:00
$this -> out ( " Requested permission successfully denied. \n " );
2006-05-26 05:29:17 +00:00
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-12-24 16:35:21 +00:00
function inherit () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 3 , 'inherit' );
2007-01-31 23:04:47 +00:00
$aro = ( is_numeric ( $this -> args [ 0 ])) ? intval ( $this -> args [ 0 ]) : $this -> args [ 0 ];
$aco = ( is_numeric ( $this -> args [ 1 ])) ? intval ( $this -> args [ 1 ]) : $this -> args [ 1 ];
$this -> Acl -> inherit ( $aro , $aco , $this -> args [ 2 ]);
2007-05-02 21:19:22 +00:00
$this -> out ( " Requested permission successfully inherited. \n " );
2006-12-24 16:35:21 +00:00
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function view () {
2007-05-04 20:12:08 +00:00
$this -> _checkArgs ( 1 , 'view' );
2006-05-26 05:29:17 +00:00
$this -> checkNodeType ();
extract ( $this -> __dataVars ());
2007-01-31 23:04:47 +00:00
if ( ! is_null ( $this -> args [ 1 ])) {
$conditions = $this -> Acl -> { $class } -> _resolveID ( $this -> args [ 1 ]);
} else {
$conditions = null ;
}
2006-12-24 16:35:21 +00:00
$nodes = $this -> Acl -> { $class } -> findAll ( $conditions , null , 'lft ASC' );
2007-02-01 17:13:12 +00:00
if ( empty ( $nodes )) {
$this -> displayError ( $this -> args [ 1 ] . " not found " , " No tree returned. " );
}
2006-05-26 05:29:17 +00:00
$right = array ();
2007-05-02 21:19:22 +00:00
$this -> out ( $class . " tree: " );
$this -> hr ( true );
2006-05-26 05:29:17 +00:00
for ( $i = 0 ; $i < count ( $nodes ); $i ++ ){
if ( count ( $right ) > 0 ){
2006-08-01 02:19:34 +00:00
while ( $right [ count ( $right ) - 1 ] < $nodes [ $i ][ $class ][ 'rght' ]){
if ( $right [ count ( $right ) - 1 ]){
array_pop ( $right );
} else {
break ;
}
2006-05-26 05:29:17 +00:00
}
}
2007-05-02 21:19:22 +00:00
$this -> out ( str_repeat ( ' ' , count ( $right )) . " [ " . $nodes [ $i ][ $class ][ 'id' ] . " ] " . $nodes [ $i ][ $class ][ 'alias' ] . " \n " );
2006-05-26 05:29:17 +00:00
$right [] = $nodes [ $i ][ $class ][ 'rght' ];
}
2007-05-02 21:19:22 +00:00
$this -> hr ( true );
2006-05-26 05:29:17 +00:00
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function initdb () {
$db =& ConnectionManager :: getDataSource ( $this -> dataSource );
2007-05-02 21:19:22 +00:00
$this -> out ( " Initializing Database... \n " );
$this -> out ( " Creating access control objects table (acos)... \n " );
2006-08-01 02:19:34 +00:00
$sql = " CREATE TABLE " . $db -> fullTableName ( 'acos' ) . " (
2006-05-26 05:29:17 +00:00
" . $db->name ('id'). " " . $db->column ( $db->columns ['primary_key']). " ,
2007-05-04 04:37:25 +00:00
" . $db->name ('parent_id'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
2007-05-06 03:32:06 +00:00
" . $db->name ('model'). " " . $db->column ( $db->columns ['string']). " default '' NOT NULL ,
2007-05-04 04:37:25 +00:00
" . $db->name ('foreign_key'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
2007-05-06 03:32:06 +00:00
" . $db->name ('alias'). " " . $db->column ( $db->columns ['string']). " default '' NOT NULL ,
2006-05-26 05:29:17 +00:00
" . $db->name ('lft'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
" . $db->name ('rght'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
PRIMARY KEY ( " . $db->name ('id'). " )
2007-05-06 03:32:06 +00:00
) " ;
2006-08-01 02:47:40 +00:00
if ( $db -> query ( $sql ) === false ) {
die ( " Error: " . $db -> lastError () . " \n \n " );
}
2006-05-26 05:29:17 +00:00
2007-05-02 21:19:22 +00:00
$this -> out ( " Creating access request objects table (aros)... \n " );
2006-08-01 02:19:34 +00:00
$sql2 = " CREATE TABLE " . $db -> fullTableName ( 'aros' ) . " (
2006-05-26 05:29:17 +00:00
" . $db->name ('id'). " " . $db->column ( $db->columns ['primary_key']). " ,
2007-05-04 04:37:25 +00:00
" . $db->name ('parent_id'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
2007-05-06 03:32:06 +00:00
" . $db->name ('model'). " " . $db->column ( $db->columns ['string']). " default '' NOT NULL ,
2006-10-28 04:40:30 +00:00
" . $db->name ('foreign_key'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
2007-05-06 03:32:06 +00:00
" . $db->name ('alias'). " " . $db->column ( $db->columns ['string']). " default '' NOT NULL ,
2006-05-26 05:29:17 +00:00
" . $db->name ('lft'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
" . $db->name ('rght'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
PRIMARY KEY ( " . $db->name ('id'). " )
2007-05-06 03:32:06 +00:00
) " ;
2006-10-26 16:29:10 +00:00
if ( $db -> query ( $sql2 ) === false ) {
2006-08-01 02:47:40 +00:00
die ( " Error: " . $db -> lastError () . " \n \n " );
}
2006-05-26 05:29:17 +00:00
2007-05-02 21:19:22 +00:00
$this -> out ( " Creating relationships table (aros_acos)... \n " );
2006-08-01 02:19:34 +00:00
$sql3 = " CREATE TABLE " . $db -> fullTableName ( 'aros_acos' ) . " (
2006-05-26 05:29:17 +00:00
" . $db->name ('id'). " " . $db->column ( $db->columns ['primary_key']). " ,
" . $db->name ('aro_id'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
" . $db->name ('aco_id'). " " . $db->column ( $db->columns ['integer']). " default NULL ,
2007-05-06 03:32:06 +00:00
" . $db->name ('_create'). " " . $db->column ( $db->columns ['integer']). " default '0' NOT NULL ,
" . $db->name ('_read'). " " . $db->column ( $db->columns ['integer']). " default '0' NOT NULL ,
" . $db->name ('_update'). " " . $db->column ( $db->columns ['integer']). " default '0' NOT NULL ,
" . $db->name ('_delete'). " " . $db->column ( $db->columns ['integer']). " default '0' NOT NULL ,
2006-05-26 05:29:17 +00:00
PRIMARY KEY ( " . $db->name ('id'). " )
2007-05-06 03:32:06 +00:00
) " ;
2006-08-01 02:47:40 +00:00
if ( $db -> query ( $sql3 ) === false ) {
die ( " Error: " . $db -> lastError () . " \n \n " );
}
2006-05-26 05:29:17 +00:00
2007-05-02 21:19:22 +00:00
$this -> out ( " \n Done. \n " );
2006-05-26 05:29:17 +00:00
}
2006-11-03 06:01:48 +00:00
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function help () {
2007-05-04 00:25:04 +00:00
$out = " Usage: cake acl <command> <arg1> <arg2>... \n " ;
2006-05-26 05:29:17 +00:00
$out .= " ----------------------------------------------- \n " ;
$out .= " Commands: \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t create aro|aco <parent> <node> \n " ;
$out .= " \t \t Creates a new ACL object <node> under the parent specified by <parent>, an id/alias. \n " ;
$out .= " \t \t The <parent> and <node> references can be in one of the following formats: \n " ;
$out .= " \t \t \t - <model>.<id> - The node will be bound to a specific record of the given model \n " ;
$out .= " \t \t \t - <alias> - The node will be given a string alias (or path, in the case of <parent>), \n " ;
$out .= " \t \t \t i.e. 'John'. When used with <parent>, this takes the form of an alias path, \n " ;
$out .= " \t \t \t i.e. <group>/<subgroup>/<parent>. \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t delete aro|aco <node> \n " ;
$out .= " \t \t Deletes the ACL object with the given <node> reference (see 'create' for info on node references). \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t setParent aro|aco <node> <parent> \n " ;
$out .= " \t \t Moves the ACL object specified by <node> beneath the parent ACL object specified by <parent>. \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t getPath aro|aco <node> \n " ;
$out .= " \t \t Returns the path to the ACL object specified by <node>. This command is \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \t \t is useful in determining the inhertiance of permissions for a certain \n " ;
$out .= " \t \t object in the tree. \n " ;
$out .= " \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t grant <aro_id> <aco_id> [<aco_action>] \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \t \t Use this command to grant ACL permissions. Once executed, the ARO \n " ;
$out .= " \t \t specified (and its children, if any) will have ALLOW access to the \n " ;
$out .= " \t \t specified ACO action (and the ACO's children, if any). \n " ;
$out .= " \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t deny <aro_id> <aco_id> [<aco_action>] \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \t \t Use this command to deny ACL permissions. Once executed, the ARO \n " ;
$out .= " \t \t specified (and its children, if any) will have DENY access to the \n " ;
$out .= " \t \t specified ACO action (and the ACO's children, if any). \n " ;
$out .= " \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t inherit <aro_id> <aco_id> [<aco_action>] \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \t \t Use this command to force a child ARO object to inherit its \n " ;
$out .= " \t \t permissions settings from its parent. \n " ;
$out .= " \n " ;
$out .= " \n " ;
2007-05-08 15:24:00 +00:00
$out .= " \t view aro|aco [<node>] \n " ;
2006-05-26 05:29:17 +00:00
$out .= " \t \t The view command will return the ARO or ACO tree. The optional \n " ;
$out .= " \t \t id/alias parameter allows you to return only a portion of the requested \n " ;
$out .= " \t \t tree. \n " ;
$out .= " \n " ;
$out .= " \n " ;
$out .= " \t initdb \n " ;
$out .= " \t \t Use this command to create the database tables needed to use DB ACL. \n " ;
$out .= " \n " ;
$out .= " \n " ;
$out .= " \t help \n " ;
$out .= " \t \t Displays this help message. \n " ;
$out .= " \n " ;
$out .= " \n " ;
2007-05-02 21:19:22 +00:00
$this -> out ( $out );
2006-05-26 05:29:17 +00:00
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
*/
2006-05-26 05:29:17 +00:00
function checkNodeType () {
if ( $this -> args [ 0 ] != 'aco' && $this -> args [ 0 ] != 'aro' ) {
$this -> displayError ( " Missing/Unknown node type: ' " . $this -> args [ 0 ] . " ' " , 'Please specify which ACL object type you wish to create.' );
}
}
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
* @ param unknown_type $type
* @ param unknown_type $id
* @ return unknown
*/
2006-05-26 05:29:17 +00:00
function nodeExists ( $type , $id ) {
2007-05-02 21:19:22 +00:00
//$this->out("Check to see if $type with ID = $id exists...\n");
2006-05-26 05:29:17 +00:00
extract ( $this -> __dataVars ( $type ));
2007-02-01 17:13:12 +00:00
$conditions = $this -> Acl -> { $class } -> _resolveID ( $id );
$possibility = $this -> Acl -> { $class } -> findAll ( $conditions );
return $possibility ;
2006-05-26 05:29:17 +00:00
}
2005-12-23 21:57:26 +00:00
2005-12-27 03:33:44 +00:00
/**
2006-02-18 23:42:21 +00:00
* Enter description here ...
*
* @ param unknown_type $type
* @ return unknown
*/
2006-05-26 05:29:17 +00:00
function __dataVars ( $type = null ) {
if ( $type == null ) {
$type = $this -> args [ 0 ];
}
$vars = array ();
$class = ucwords ( $type );
2006-10-28 04:40:30 +00:00
$vars [ 'secondary_id' ] = ( $class == 'aro' ? 'foreign_key' : 'object_id' );
2006-05-26 05:29:17 +00:00
$vars [ 'data_name' ] = $type ;
$vars [ 'table_name' ] = $type . 's' ;
$vars [ 'class' ] = $class ;
return $vars ;
}
2006-12-24 16:35:21 +00:00
/**
* Database configuration setup .
*
*/
2007-05-04 04:37:25 +00:00
function __doDbConfig () {
2007-05-02 21:19:22 +00:00
$this -> hr ( true );
$this -> out ( 'Database Configuration:' );
$this -> hr ( true );
2006-12-24 16:35:21 +00:00
$driver = '' ;
while ( $driver == '' ) {
2007-05-06 03:32:06 +00:00
$driver = $this -> in ( 'What database driver would you like to use?' , array ( 'mysql' , 'mysqli' , 'mssql' , 'sqlite' , 'postgres' , 'odbc' , 'oracle' ), 'mysql' );
2006-12-24 16:35:21 +00:00
if ( $driver == '' ) {
2007-05-02 21:19:22 +00:00
$this -> out ( 'The database driver supplied was empty. Please supply a database driver.' );
2006-12-24 16:35:21 +00:00
}
}
switch ( $driver ) {
case 'mysql' :
$connect = 'mysql_connect' ;
break ;
case 'mysqli' :
$connect = 'mysqli_connect' ;
break ;
case 'mssql' :
$connect = 'mssql_connect' ;
break ;
case 'sqlite' :
$connect = 'sqlite_open' ;
break ;
case 'postgres' :
$connect = 'pg_connect' ;
break ;
case 'odbc' :
$connect = 'odbc_connect' ;
break ;
2007-05-06 03:32:06 +00:00
case 'oracle' :
$connect = 'ocilogon' ;
break ;
2006-12-24 16:35:21 +00:00
default :
2007-05-02 21:19:22 +00:00
$this -> out ( 'The connection parameter could not be set.' );
2006-12-24 16:35:21 +00:00
break ;
}
$host = '' ;
while ( $host == '' ) {
2007-05-03 22:40:22 +00:00
$host = $this -> in ( 'What is the hostname for the database server?' , null , 'localhost' );
2006-12-24 16:35:21 +00:00
if ( $host == '' ) {
2007-05-02 21:19:22 +00:00
$this -> out ( 'The host name you supplied was empty. Please supply a hostname.' );
2006-12-24 16:35:21 +00:00
}
}
$login = '' ;
while ( $login == '' ) {
2007-05-03 22:40:22 +00:00
$login = $this -> in ( 'What is the database username?' , null , 'root' );
2006-12-24 16:35:21 +00:00
if ( $login == '' ) {
2007-05-02 21:19:22 +00:00
$this -> out ( 'The database username you supplied was empty. Please try again.' );
2006-12-24 16:35:21 +00:00
}
}
$password = '' ;
$blankPassword = false ;
while ( $password == '' && $blankPassword == false ) {
2007-05-03 22:40:22 +00:00
$password = $this -> in ( 'What is the database password?' );
2006-12-24 16:35:21 +00:00
if ( $password == '' ) {
2007-05-03 22:40:22 +00:00
$blank = $this -> in ( 'The password you supplied was empty. Use an empty password?' , array ( 'y' , 'n' ), 'n' );
2006-12-24 16:35:21 +00:00
if ( $blank == 'y' )
{
$blankPassword = true ;
}
}
}
$database = '' ;
while ( $database == '' ) {
2007-05-03 22:40:22 +00:00
$database = $this -> in ( 'What is the name of the database you will be using?' , null , 'cake' );
2006-12-24 16:35:21 +00:00
if ( $database == '' ) {
2007-05-02 21:19:22 +00:00
$this -> out ( 'The database name you supplied was empty. Please try again.' );
2006-12-24 16:35:21 +00:00
}
}
$prefix = '' ;
while ( $prefix == '' ) {
2007-05-03 22:40:22 +00:00
$prefix = $this -> in ( 'Enter a table prefix?' , null , 'n' );
2006-12-24 16:35:21 +00:00
}
if ( low ( $prefix ) == 'n' ) {
$prefix = '' ;
}
2007-05-02 21:19:22 +00:00
$this -> hr ( true );
$this -> out ( 'The following database configuration will be created:' );
$this -> hr ( true );
$this -> out ( " Driver: $driver " );
$this -> out ( " Connection: $connect " );
$this -> out ( " Host: $host " );
$this -> out ( " User: $login " );
$this -> out ( " Pass: " . str_repeat ( '*' , strlen ( $password )));
$this -> out ( " Database: $database " );
$this -> out ( " Table prefix: $prefix " );
$this -> hr ( true );
2007-05-03 22:40:22 +00:00
$looksGood = $this -> in ( 'Look okay?' , array ( 'y' , 'n' ), 'y' );
2006-12-24 16:35:21 +00:00
if ( low ( $looksGood ) == 'y' || low ( $looksGood ) == 'yes' ) {
$this -> bakeDbConfig ( $driver , $connect , $host , $login , $password , $database , $prefix );
} else {
2007-05-02 21:19:22 +00:00
$this -> out ( 'Bake Aborted.' );
2006-12-24 16:35:21 +00:00
}
2007-02-18 13:25:37 +00:00
}
2006-12-24 16:35:21 +00:00
/**
* Creates a database configuration file for Bake .
*
* @ param string $host
* @ param string $login
* @ param string $password
* @ param string $database
*/
function bakeDbConfig ( $driver , $connect , $host , $login , $password , $database , $prefix ) {
$out = " <?php \n " ;
$out .= " class DATABASE_CONFIG { \n \n " ;
$out .= " \t var \$ default = array( \n " ;
$out .= " \t \t 'driver' => ' { $driver } ', \n " ;
$out .= " \t \t 'connect' => ' { $connect } ', \n " ;
$out .= " \t \t 'host' => ' { $host } ', \n " ;
$out .= " \t \t 'login' => ' { $login } ', \n " ;
$out .= " \t \t 'password' => ' { $password } ', \n " ;
$out .= " \t \t 'database' => ' { $database } ', \n " ;
$out .= " \t \t 'prefix' => ' { $prefix } ' \n " ;
$out .= " \t ); \n " ;
$out .= " } \n " ;
$out .= " ?> " ;
$filename = CONFIGS . 'database.php' ;
2007-05-03 22:58:30 +00:00
$this -> createFile ( $filename , $out );
2006-12-24 16:35:21 +00:00
}
2005-11-05 04:08:14 +00:00
}
2007-05-02 21:19:22 +00:00
2007-05-06 03:32:06 +00:00
?>