Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pquery
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
pquery
Commits
73ca5987
Commit
73ca5987
authored
13 years ago
by
Taddes Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Worked (mainly) on MySQL plugin
parent
17a0fe1b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+0
-1
0 additions, 1 deletion
.gitignore
array.php
+26
-5
26 additions, 5 deletions
array.php
base.php
+75
-38
75 additions, 38 deletions
base.php
sql.php
+241
-6
241 additions, 6 deletions
sql.php
with
342 additions
and
50 deletions
.gitignore
+
0
−
1
View file @
73ca5987
docs
docs
index.php
This diff is collapsed.
Click to expand it.
array.php
+
26
−
5
View file @
73ca5987
<?php
<?php
/**
* pQuery extention for executing common array functions.
*
* @package pQuery
*/
/**
/**
* @todo Documentation
* @todo Documentation
*/
*/
class
pQueryArray
extends
pQuery
{
class
pQueryArray
extends
pQuery
implements
pQueryExtension
{
function
get
(
$index
)
{
function
get
(
$index
)
{
return
isset
(
$this
->
variable
[
$index
])
?
$this
->
variable
[
$index
]
:
null
;
return
isset
(
$this
->
variable
[
$index
])
?
$this
->
variable
[
$index
]
:
null
;
}
}
function
count
()
{
return
count
(
$this
->
variable
);
}
function
is_empty
()
{
function
is_empty
()
{
return
!
$this
->
count
();
return
!
$this
->
count
();
}
}
...
@@ -31,8 +32,28 @@ class pQueryArray extends pQuery {
...
@@ -31,8 +32,28 @@ class pQueryArray extends pQuery {
return
call_user_func_array
(
$function
,
$args
);
return
call_user_func_array
(
$function
,
$args
);
}
}
if
(
in_array
(
$method
,
array
(
'count'
))
)
return
$method
(
$this
->
variable
);
if
(
in_array
(
$method
,
array
(
'shuffle'
))
)
{
$method
(
$this
->
variable
);
return
$this
;
}
return
self
::
error
(
'Plugin "%s" has no method "%s".'
,
__CLASS__
,
$method
);
return
self
::
error
(
'Plugin "%s" has no method "%s".'
,
__CLASS__
,
$method
);
}
}
}
}
/**
* Shortcut constructor for {@link pQuerySql}.
*
* @returns pQuerySql A new pQuerySql instance.
* @see pQuerySql::__construct
*/
function
_arr
(
$array
)
{
return
pQuery
::
create
(
'pQueryArray'
,
$array
);
}
pQuery
::
extend
(
'pQueryArray'
,
'array'
);
?>
?>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
base.php
+
75
−
38
View file @
73ca5987
...
@@ -5,24 +5,19 @@
...
@@ -5,24 +5,19 @@
* @package pQuery
* @package pQuery
*/
*/
/**
include_once
'config.php'
;
* Indicates whether the framework is in debug mode.
*
* @var bool
*/
defined
(
'DEBUG'
)
||
define
(
'DEBUG'
,
true
);
/**
* The root location of the pQuery framework folder.
*
* @var string
*/
define
(
'PQUERY_ROOT'
,
'D:/xampp/htdocs/pquery/'
);
/**
/**
* Common utility class.
* Common utility class.
*/
*/
class
pQuery
{
class
pQuery
{
/**
* Pattern of tha alias created for an extending plugin that has defined an alias.
*
* @var string
*/
const
CLASS_ALIAS_PATTERN
=
'__%s'
;
/**
/**
* The minimum php version required to use the framework.
* The minimum php version required to use the framework.
*
*
...
@@ -52,6 +47,13 @@ class pQuery {
...
@@ -52,6 +47,13 @@ class pQuery {
*/
*/
var
$variable
;
var
$variable
;
/**
* Additional arguments that were passed to the constructor.
*
* @var array
*/
var
$arguments
=
array
();
/**
/**
* Extend pQuery with a plugin.
* Extend pQuery with a plugin.
*
*
...
@@ -75,7 +77,12 @@ class pQuery {
...
@@ -75,7 +77,12 @@ class pQuery {
$class_name
,
$class_name
::
$REQUIRED_PHP_VERSION
);
$class_name
,
$class_name
::
$REQUIRED_PHP_VERSION
);
}
}
self
::
$plugins
[
$alias
===
null
?
$class_name
:
$alias
]
=
$class_name
;
if
(
$alias
===
null
)
{
self
::
$plugins
[
$class_name
]
=
$class_name
;
}
else
{
self
::
$plugins
[
$alias
]
=
$class_name
;
class_alias
(
$class_name
,
sprintf
(
self
::
CLASS_ALIAS_PATTERN
,
$alias
));
}
}
}
/**
/**
...
@@ -92,15 +99,26 @@ class pQuery {
...
@@ -92,15 +99,26 @@ class pQuery {
call_user_func_array
(
'printf'
,
$args
);
call_user_func_array
(
'printf'
,
$args
);
//echo debug_backtrace();
//echo debug_backtrace();
}
}
ERROR_IS_FATAL
&&
exit
;
}
}
/**
/**
* Constructor.
* Constructor.
*
*
* @param string $class_name The class to constuct an object off.
* @param mixed $variable The variable to use an utility on.
* @param mixed $variable The variable to use an utility on.
*/
*/
function
__construct
(
$variable
)
{
static
function
create
()
{
$this
->
set_variable
(
$variable
);
$args
=
func_get_args
();
$class_name
=
array_shift
(
$args
);
$obj
=
$class_name
===
null
?
new
self
()
:
new
$class_name
();
$variable
=
array_shift
(
$args
);
$obj
->
arguments
=
$args
;
$obj
->
set_variable
(
$variable
);
return
$obj
;
}
}
/**
/**
...
@@ -110,33 +128,34 @@ class pQuery {
...
@@ -110,33 +128,34 @@ class pQuery {
* @param bool $force Whether not to check the variables type against the accepted types.
* @param bool $force Whether not to check the variables type against the accepted types.
*/
*/
function
set_variable
(
$variable
,
$force
=
false
)
{
function
set_variable
(
$variable
,
$force
=
false
)
{
if
(
!
$force
)
{
$this
->
variable
=
$variable
;
$type
=
gettype
(
$variable
);
$class_name
=
get_class
(
$this
);
if
(
$force
)
$accepts
=
$class_name
::
$accepts
;
return
;
$type
=
gettype
(
$variable
);
$class_name
=
get_class
(
$this
);
$accepts
=
$class_name
::
$accepts
;
if
(
isset
(
$accepts
[
$type
])
)
{
$convert_method
=
$accepts
[
$type
];
if
(
isset
(
$accepts
[
$type
])
)
{
if
(
!
method_exists
(
$this
,
$convert_method
)
)
$convert_method
=
$accepts
[
$type
];
return
self
::
error
(
'Plugin "%s" has no conversion method "%s".'
,
$class_name
,
$convert_method
);
if
(
!
method_exists
(
$this
,
$convert_method
)
)
$result
=
$this
->
$convert_method
(
$variable
);
return
self
::
error
(
'Plugin "%s" has no conversion method "%s".'
,
$class_name
,
$convert_method
);
$result
===
null
||
$this
->
variable
=
$result
;
}
else
if
(
!
in_array
(
$type
,
$accepts
)
)
{
$result
=
$this
->
$convert_method
(
$variable
);
return
self
::
error
(
'Variable type "%s" is not accepted by class "%s".'
,
$type
,
$class_name
);
$result
===
null
||
$variable
=
$result
;
}
else
if
(
!
in_array
(
$type
,
$accepts
)
)
{
return
self
::
error
(
'Variable type "%s" is not accepted by class "%s".'
,
$type
,
$class_name
);
}
}
}
$this
->
variable
=
$variable
;
}
}
/**
/**
*
L
oad the file containing the utility class for a specific variable type.
*
Try to l
oad the file containing the utility class for a specific variable type.
*
*
* @param mixed $typ
o
e the variable type of the class to load.
* @param mixed $type the variable type of the class to load.
*/
*/
static
function
load_
type_class
(
$type
)
{
static
function
load_
plugin
(
$type
)
{
$file
=
PQUERY_ROOT
.
$type
.
'.php'
;
$file
=
PQUERY_ROOT
.
$type
.
'.php'
;
if
(
!
file_exists
(
$file
)
)
if
(
!
file_exists
(
$file
)
)
...
@@ -146,6 +165,24 @@ class pQuery {
...
@@ -146,6 +165,24 @@ class pQuery {
return
true
;
return
true
;
}
}
/**
* Include the nescessary files for the given plugins.
*/
static
function
require_plugins
(
/* $plugin1 [ , $plugin2, ... ] */
)
{
$plugins
=
func_get_args
();
foreach
(
$plugins
as
$plugin
)
{
$path
=
PQUERY_ROOT
.
$plugin
.
'.php'
;
if
(
!
file_exists
(
$path
)
)
{
return
self
::
error
(
'Required plugin "%s" could not be located (looked in "%s").'
,
$plugin
,
$path
);
}
include_once
$path
;
}
}
}
}
/**
/**
...
@@ -157,7 +194,7 @@ interface pQueryExtension {
...
@@ -157,7 +194,7 @@ interface pQueryExtension {
*
*
* @param mixed $variable The variable to use an utility on.
* @param mixed $variable The variable to use an utility on.
*/
*/
function
__construct
(
$variable
);
//
function __construct();
}
}
/**
/**
...
@@ -174,7 +211,7 @@ function _p($variable, $plugin=null) {
...
@@ -174,7 +211,7 @@ function _p($variable, $plugin=null) {
// Use custom class for this variable type
// Use custom class for this variable type
$type
=
gettype
(
$variable
);
$type
=
gettype
(
$variable
);
if
(
pQuery
::
load_
type_class
(
$type
)
)
if
(
pQuery
::
load_
plugin
(
$type
)
)
$class_name
.
=
ucfirst
(
$type
);
$class_name
.
=
ucfirst
(
$type
);
}
else
{
}
else
{
// Use custom plugin class
// Use custom plugin class
...
...
This diff is collapsed.
Click to expand it.
sql.php
+
241
−
6
View file @
73ca5987
<?php
<?php
/**
* pQuery extention for executing MySQL queries.
*
* @package pQuery
*/
/**
/**
* @todo Documentation
* @todo Documentation
* @property query Alias for {@link pQuery::variable}.
*/
*/
class
pQuerySql
extends
pQuery
implements
pQueryExtension
{
class
pQuerySql
extends
pQuery
implements
pQueryExtension
{
const
VARIABLE_PATTERN
=
'/\[\s*%s\s*\]/'
;
static
$accepts
=
array
(
'string'
=>
'parse_query'
,
'resource'
);
static
$accepts
=
array
(
'string'
=>
'parse_query'
,
'resource'
);
function
parse_query
(
$query
)
{
/**
$this
->
query
=
$query
;
* The MySQL link identifier.
*
* @var resource
*/
static
$link
;
/**
* The result of the current query.
*
* @var resource|bool
*/
var
$result
;
/**
* Indicates whether the query has been executed yet.
*
* @var bool
*/
var
$executed
;
/**
* Parse the given query string.
*/
function
parse_query
()
{
$args
=
$this
->
arguments
;
if
(
!
count
(
$args
)
)
return
;
// Replace variable indices by names equal to their indices
if
(
!
is_array
(
$args
[
0
])
)
array_unshift
(
$args
,
null
);
// Replace variables by their escaped values
$this
->
set
(
$args
);
}
/**
* Replace a set of variables with their (optionally escaped)
* values in the current query.
*
* @param array $variables The variables to replace.
* @param bool $escape Whether to escape the variable values.
* @returns pQuerySql The current object.
*/
function
replace_variables
(
$variables
,
$escape
)
{
$patterns
=
array_map
(
'pQuerySql::variable_pattern'
,
array_keys
(
$variables
));
$escape
&&
$variables
=
array_map
(
'pQuerySql::escape'
,
$variables
);
$this
->
variable
=
preg_replace
(
$patterns
,
$variables
,
$this
->
variable
);
$this
->
executed
=
false
;
return
$this
;
}
/**
* Replace a set of variables with their escaped values in the current query.
*
* @param array $variables The variables to replace.
* @returns pQuerySql The current object.
*/
function
set
(
$variables
)
{
return
$this
->
replace_variables
(
$variables
,
true
);
}
/**
* Replace a set of variables with their non-escaped values in the current query.
*
* @param array $variables The variables to replace.
* @returns pQuerySql The current object.
*/
function
set_plain
(
$variables
)
{
return
$this
->
replace_variables
(
$variables
,
false
);
}
/**
* Transform a variable name to a regex to be used as a replacement
* pattern in a query.
*
* @param string $name The variable name to transform.
* @returns string The variable's replacement pattern.
*/
static
function
variable_pattern
(
$name
)
{
return
sprintf
(
self
::
VARIABLE_PATTERN
,
$name
);
}
/**
* Execute the current query.
*
* @returns pQuerySql The current object.
*/
function
execute
()
{
self
::
assert_connection
();
//debug('query:', $this->query);
$result
=
mysql_query
(
$this
->
query
,
self
::
$link
);
if
(
!
$result
)
return
self
::
mysql_error
();
$this
->
result
=
$result
;
$this
->
executed
=
true
;
return
$this
;
}
/**
* Fetch a row from the current result.
*
* @param string $type The format of the result row.
* @returns mixed The fetched row in the requested format.
*/
function
fetch
(
$type
)
{
$this
->
assert_execution
();
if
(
!
$this
->
result
)
return
self
::
error
(
'No valid result to fetch from.'
);
$func
=
'mysql_fetch_'
.
$type
;
if
(
!
function_exists
(
$func
)
)
return
self
::
error
(
'Fetch type "%s" is not supported.'
,
$type
);
return
$func
(
$this
->
result
);
}
/**
* Fetch all rows from the current result.
*
* @param string $type The format of the result rows.
* @returns array The result set.
*/
function
fetch_all
(
$type
)
{
$results
=
array
();
while
(
(
$row
=
$this
->
fetch
(
$type
))
!==
false
)
{
$results
[]
=
$row
;
}
return
$results
;
return
$func
(
$this
->
result
);
}
/**
* Getter for property {@link query}.
*/
function
__get
(
$name
)
{
if
(
$name
==
'query'
)
return
$this
->
variable
;
}
/**
* Setter for property {@link query}.
*/
function
__set
(
$name
,
$value
)
{
if
(
$name
==
'query'
)
$this
->
variable
=
$value
;
}
/**
* Assert that the current query has been executed.
*/
function
assert_execution
()
{
$this
->
executed
||
$this
->
execute
();
}
/**
* Assert that the MySQL connection is opened.
*
* @uses mysql_connect, mysql_select_db
*/
static
function
assert_connection
()
{
// Return if the connection has already been opened
if
(
self
::
$link
)
return
;
if
(
!
isset
(
Config
::
$sql
)
)
return
self
::
error
(
'Could not connect to database: no MySQL config found.'
);
// Connect to the database
$c
=
Config
::
$sql
;
$link
=
@
mysql_connect
(
$c
[
'host'
],
$c
[
'username'
],
$c
[
'password'
]);
if
(
$link
===
false
)
return
self
::
mysql_error
();
self
::
$link
=
$link
;
// Select the correct database
if
(
!@
mysql_select_db
(
$c
[
'dbname'
],
$link
)
)
return
self
::
mysql_error
();
}
/**
* Echo the latest MySQL error.
*/
static
function
mysql_error
()
{
self
::
error
(
'MySQL error %d: %s.'
,
mysql_errno
(),
mysql_error
());
}
/**
* Extention of {@link pQuery::error}, returning FALSE (useful in result loops).
* Also, the current query is printed in DEBUG mode.
*
* @returns bool FALSE
*/
static
function
error
()
{
parent
::
error
(
'MySQL error %d: %s.'
,
mysql_errno
(),
mysql_error
());
if
(
DEBUG
)
echo
$this
->
query
;
return
false
;
}
/**
* Escape a string for safe use in a query.
*
* @param string $value The string to escape.
* @uses mysql_real_escape_string
*/
static
function
escape
(
$value
)
{
self
::
assert_connection
();
return
mysql_real_escape_string
(
$value
,
self
::
$link
);
}
}
}
}
...
@@ -17,11 +249,14 @@ class pQuerySql extends pQuery implements pQueryExtension {
...
@@ -17,11 +249,14 @@ class pQuerySql extends pQuery implements pQueryExtension {
* @returns pQuerySql A new pQuerySql instance.
* @returns pQuerySql A new pQuerySql instance.
* @see pQuerySql::__construct
* @see pQuerySql::__construct
*/
*/
function
_s
(
$query
)
{
function
_sql
(
$query
/* [ , $arg1, ... ] */
)
{
return
_p
(
$query
,
'sql'
);
$args
=
func_get_args
();
$query
=
array_shift
(
$args
);
array_unshift
(
$args
,
'pQuerySql'
,
$query
);
return
call_user_func_array
(
'pQuery::create'
,
$args
);
}
}
pQuerySql
::
extend
(
'pQuerySql'
,
'sql'
);
pQuery
::
extend
(
'pQuerySql'
,
'sql'
);
debug
(
pQuery
::
$plugins
);
?>
?>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment