Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
6c6dac35
Commit
6c6dac35
authored
Jun 17, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deprecated download class. added methods to file class. tweaked log class. tweaked input class.
parent
fe101766
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
186 additions
and
156 deletions
+186
-156
download.php
system/download.php
+0
-21
file.php
system/file.php
+146
-112
input.php
system/input.php
+26
-4
log.php
system/log.php
+14
-19
No files found.
system/download.php
deleted
100644 → 0
View file @
fe101766
<?php
namespace
System
;
class
Download
extends
File
{
/**
* Create a download response. The proper headers will be sent
* to the browser to force the file to be downloaded.
*
*
* @deprecated For older apps, use File class
*
* @param string $path
* @param string $name
* @return Response
*/
public
static
function
file
(
$path
,
$name
=
null
)
{
return
parent
::
download
(
$path
,
$name
);
}
}
\ No newline at end of file
system/file.php
View file @
6c6dac35
...
...
@@ -101,36 +101,42 @@ class File {
);
/**
* Create a download response. The proper headers will be sent
* to the browser to force the file to be downloaded.
* Get the contents of a file.
*
* @param string $path
* @param string $name
* @return Response
* @return string
*/
public
static
function
download
(
$path
,
$name
=
null
)
public
static
function
get
(
$path
)
{
if
(
is_null
(
$name
))
{
$name
=
basename
(
$path
);
return
file_get_contents
(
$path
);
}
$response
=
Response
::
make
(
file_get_contents
(
$path
));
$response
->
header
(
'Content-Description'
,
'File Transfer'
);
$response
->
header
(
'Content-Type'
,
static
::
mime
(
pathinfo
(
$path
,
PATHINFO_EXTENSION
)));
$response
->
header
(
'Content-Disposition'
,
'attachment; filename="'
.
$name
.
'"'
);
$response
->
header
(
'Content-Transfer-Encoding'
,
'binary'
);
$response
->
header
(
'Expires'
,
0
);
$response
->
header
(
'Cache-Control'
,
'must-revalidate, post-check=0, pre-check=0'
);
$response
->
header
(
'Pragma'
,
'public'
);
$response
->
header
(
'Content-Length'
,
filesize
(
$path
));
/**
* Write to a file.
*
* @param string $path
* @param string $data
* @return int
*/
public
static
function
put
(
$path
,
$data
)
{
return
file_put_contents
(
$path
,
$data
,
LOCK_EX
);
}
return
$response
;
/**
* Append to a file.
*
* @param string $path
* @param string $data
* @return int
*/
public
static
function
append
(
$path
,
$data
)
{
return
file_put_contents
(
$path
,
$data
,
LOCK_EX
|
FILE_APPEND
);
}
/**
*
Get a file's extension.
*
Extract the extension from a file path.
*
* @param string $path
* @return string
...
...
@@ -141,7 +147,7 @@ class File {
}
/**
* Get a MIME type by extension.
* Get a
file
MIME type by extension.
*
* @param string $extension
* @param string $default
...
...
@@ -152,4 +158,32 @@ class File {
return
(
array_key_exists
(
$extension
,
static
::
$mimes
))
?
static
::
$mimes
[
$extension
]
:
$default
;
}
/**
* Create a response that will force a file to be downloaded.
*
* @param string $path
* @param string $name
* @return Response
*/
public
static
function
download
(
$path
,
$name
=
null
)
{
if
(
is_null
(
$name
))
{
$name
=
basename
(
$path
);
}
$response
=
Response
::
make
(
static
::
get
(
$path
));
$response
->
header
(
'Content-Description'
,
'File Transfer'
);
$response
->
header
(
'Content-Type'
,
static
::
mime
(
static
::
extension
(
$path
)));
$response
->
header
(
'Content-Disposition'
,
'attachment; filename="'
.
$name
.
'"'
);
$response
->
header
(
'Content-Transfer-Encoding'
,
'binary'
);
$response
->
header
(
'Expires'
,
0
);
$response
->
header
(
'Cache-Control'
,
'must-revalidate, post-check=0, pre-check=0'
);
$response
->
header
(
'Pragma'
,
'public'
);
$response
->
header
(
'Content-Length'
,
filesize
(
$path
));
return
$response
;
}
}
\ No newline at end of file
system/input.php
View file @
6c6dac35
...
...
@@ -10,14 +10,25 @@ class Input {
public
static
$input
;
/**
* Determine if the input data contains an item
that is not empty
.
* Determine if the input data contains an item.
*
* @param string $key
* @return bool
*/
public
static
function
has
(
$key
)
{
return
(
!
is_null
(
static
::
get
(
$key
))
and
trim
((
string
)
static
::
get
(
$key
))
!=
''
);
return
(
!
is_null
(
static
::
get
(
$key
)));
}
/**
* Determine if the input data contains an item that is not empty.
*
* @param string $key
* @return bool
*/
public
static
function
filled
(
$key
)
{
return
(
static
::
has
(
$key
)
and
trim
((
string
)
static
::
get
(
$key
))
!==
''
);
}
/**
...
...
@@ -38,14 +49,25 @@ class Input {
}
/**
* Determine if the old input data contains an item
that is not empty
.
* Determine if the old input data contains an item.
*
* @param string $key
* @return bool
*/
public
static
function
had
(
$key
)
{
return
(
!
is_null
(
static
::
old
(
$key
))
and
trim
((
string
)
static
::
old
(
$key
))
!=
''
);
return
(
!
is_null
(
static
::
old
(
$key
)));
}
/**
* Determine if the old input data contains an item that is not empty.
*
* @param string $key
* @return bool
*/
public
static
function
was_filled
(
$key
)
{
return
(
static
::
had
(
$key
)
and
trim
((
string
)
static
::
old
(
$key
))
!==
''
);
}
/**
...
...
system/log.php
View file @
6c6dac35
...
...
@@ -45,44 +45,39 @@ class Log {
public
static
function
write
(
$type
,
$message
)
{
// -----------------------------------------------------
//
Determine the yearly directory
.
//
Create the yearly and monthly directories if needed
.
// -----------------------------------------------------
$directory
=
APP_PATH
.
'logs/'
.
date
(
'Y'
);
if
(
!
is_dir
(
$directory
))
{
static
::
make_directory
(
$directory
);
}
static
::
make_directory
(
$directory
=
APP_PATH
.
'logs/'
.
date
(
'Y'
));
static
::
make_directory
(
$directory
.=
'/'
.
date
(
'm'
));
// -----------------------------------------------------
//
Determine the monthly directory
.
//
Each day has its own log file
.
// -----------------------------------------------------
$directory
.=
'/'
.
date
(
'm'
);
if
(
!
is_dir
(
$directory
))
{
static
::
make_directory
(
$directory
);
}
$file
=
$directory
.
'/'
.
date
(
'd'
)
.
EXT
;
// -----------------------------------------------------
//
Determine the daily file
.
//
Append to the log file and set the permissions
.
// -----------------------------------------------------
$file
=
$directory
.
'/'
.
date
(
'd'
)
.
EXT
;
file_put_contents
(
$file
,
date
(
'Y-m-d H:i:s'
)
.
' '
.
$type
.
' - '
.
$message
.
PHP_EOL
,
LOCK_EX
|
FILE_APPEND
);
chmod
(
$file
,
0666
);
}
/**
* Create a log directory.
*
* If the directory already exists, no action will be taken.
*
* @param string $directory
* @return void
*/
private
static
function
make_directory
(
$directory
)
{
if
(
!
is_dir
(
$directory
))
{
mkdir
(
$directory
,
02777
);
chmod
(
$directory
,
02777
);
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment