Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F390861
function.fetch.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
8 KB
Subscribers
None
function.fetch.php
View Options
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {fetch} plugin
*
* Type: function<br>
* Name: fetch<br>
* Purpose: fetch file, web or ftp data and display results
* @link http://smarty.php.net/manual/en/language.function.fetch.php {fetch}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @param array $params parameters
* @param object $smarty Smarty object
* @param object $template template object
* @return string|null if the assign parameter is passed, Smarty assigns the
* result to a template variable
*/
function
smarty_function_fetch
(
$params
,
$smarty
,
$template
)
{
if
(
empty
(
$params
[
'file'
]))
{
throw
new
Exception
(
"[plugin] fetch parameter 'file' cannot be empty"
);
return
;
}
$content
=
''
;
if
(
$template
->
security
&&
!
preg_match
(
'!^(http|ftp)://!i'
,
$params
[
'file'
]))
{
if
(!
$smarty
->
security_handler
->
isTrustedResourceDir
(
$params
[
'file'
]))
{
return
;
}
// fetch the file
if
(
$fp
=
@
fopen
(
$params
[
'file'
],
'r'
))
{
while
(!
feof
(
$fp
))
{
$content
.=
fgets
(
$fp
,
4096
);
}
fclose
(
$fp
);
}
else
{
throw
new
Exception
(
'[plugin] fetch cannot read file
\'
'
.
$params
[
'file'
]
.
'
\'
'
);
return
;
}
}
else
{
// not a local file
if
(
preg_match
(
'!^http://!i'
,
$params
[
'file'
]))
{
// http fetch
if
(
$uri_parts
=
parse_url
(
$params
[
'file'
]))
{
// set defaults
$host
=
$server_name
=
$uri_parts
[
'host'
];
$timeout
=
30
;
$accept
=
"image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*"
;
$agent
=
"Smarty Template Engine "
.
$smarty
->
_version
;
$referer
=
""
;
$uri
=
!
empty
(
$uri_parts
[
'path'
])
?
$uri_parts
[
'path'
]
:
'/'
;
$uri
.=
!
empty
(
$uri_parts
[
'query'
])
?
'?'
.
$uri_parts
[
'query'
]
:
''
;
$_is_proxy
=
false
;
if
(
empty
(
$uri_parts
[
'port'
]))
{
$port
=
80
;
}
else
{
$port
=
$uri_parts
[
'port'
];
}
if
(!
empty
(
$uri_parts
[
'user'
]))
{
$user
=
$uri_parts
[
'user'
];
}
if
(!
empty
(
$uri_parts
[
'pass'
]))
{
$pass
=
$uri_parts
[
'pass'
];
}
// loop through parameters, setup headers
foreach
(
$params
as
$param_key
=>
$param_value
)
{
switch
(
$param_key
)
{
case
"file"
:
case
"assign"
:
case
"assign_headers"
:
break
;
case
"user"
:
if
(!
empty
(
$param_value
))
{
$user
=
$param_value
;
}
break
;
case
"pass"
:
if
(!
empty
(
$param_value
))
{
$pass
=
$param_value
;
}
break
;
case
"accept"
:
if
(!
empty
(
$param_value
))
{
$accept
=
$param_value
;
}
break
;
case
"header"
:
if
(!
empty
(
$param_value
))
{
if
(!
preg_match
(
'![
\w\d
-]+: .+!'
,
$param_value
))
{
throw
new
Exception
(
"[plugin] invalid header format '"
.
$param_value
.
"'"
);
return
;
}
else
{
$extra_headers
[]
=
$param_value
;
}
}
break
;
case
"proxy_host"
:
if
(!
empty
(
$param_value
))
{
$proxy_host
=
$param_value
;
}
break
;
case
"proxy_port"
:
if
(!
preg_match
(
'!
\D
!'
,
$param_value
))
{
$proxy_port
=
(
int
)
$param_value
;
}
else
{
throw
new
Exception
(
"[plugin] invalid value for attribute '"
.
$param_key
.
"'"
);
return
;
}
break
;
case
"agent"
:
if
(!
empty
(
$param_value
))
{
$agent
=
$param_value
;
}
break
;
case
"referer"
:
if
(!
empty
(
$param_value
))
{
$referer
=
$param_value
;
}
break
;
case
"timeout"
:
if
(!
preg_match
(
'!
\D
!'
,
$param_value
))
{
$timeout
=
(
int
)
$param_value
;
}
else
{
throw
new
Exception
(
"[plugin] invalid value for attribute '"
.
$param_key
.
"'"
);
return
;
}
break
;
default
:
throw
new
Exception
(
"[plugin] unrecognized attribute '"
.
$param_key
.
"'"
);
return
;
}
}
if
(!
empty
(
$proxy_host
)
&&
!
empty
(
$proxy_port
))
{
$_is_proxy
=
true
;
$fp
=
fsockopen
(
$proxy_host
,
$proxy_port
,
$errno
,
$errstr
,
$timeout
);
}
else
{
$fp
=
fsockopen
(
$server_name
,
$port
,
$errno
,
$errstr
,
$timeout
);
}
if
(!
$fp
)
{
throw
new
Exception
(
"[plugin] unable to fetch: $errstr ($errno)"
);
return
;
}
else
{
if
(
$_is_proxy
)
{
fputs
(
$fp
,
'GET '
.
$params
[
'file'
]
.
" HTTP/1.0
\r\n
"
);
}
else
{
fputs
(
$fp
,
"GET $uri HTTP/1.0
\r\n
"
);
}
if
(!
empty
(
$host
))
{
fputs
(
$fp
,
"Host: $host
\r\n
"
);
}
if
(!
empty
(
$accept
))
{
fputs
(
$fp
,
"Accept: $accept
\r\n
"
);
}
if
(!
empty
(
$agent
))
{
fputs
(
$fp
,
"User-Agent: $agent
\r\n
"
);
}
if
(!
empty
(
$referer
))
{
fputs
(
$fp
,
"Referer: $referer
\r\n
"
);
}
if
(
isset
(
$extra_headers
)
&&
is_array
(
$extra_headers
))
{
foreach
(
$extra_headers
as
$curr_header
)
{
fputs
(
$fp
,
$curr_header
.
"
\r\n
"
);
}
}
if
(!
empty
(
$user
)
&&
!
empty
(
$pass
))
{
fputs
(
$fp
,
"Authorization: BASIC "
.
base64_encode
(
"$user:$pass"
).
"
\r\n
"
);
}
fputs
(
$fp
,
"
\r\n
"
);
while
(!
feof
(
$fp
))
{
$content
.=
fgets
(
$fp
,
4096
);
}
fclose
(
$fp
);
$csplit
=
preg_split
(
"!
\r\n\r\n
!"
,
$content
,
2
);
$content
=
$csplit
[
1
];
if
(!
empty
(
$params
[
'assign_headers'
]))
{
$template
->
assign
(
$params
[
'assign_headers'
],
preg_split
(
"!
\r\n
!"
,
$csplit
[
0
]));
}
}
}
else
{
throw
new
Exception
(
"[plugin] unable to parse URL, check syntax"
);
return
;
}
}
else
{
// ftp fetch
if
(
$fp
=
@
fopen
(
$params
[
'file'
],
'r'
))
{
while
(!
feof
(
$fp
))
{
$content
.=
fgets
(
$fp
,
4096
);
}
fclose
(
$fp
);
}
else
{
throw
new
Exception
(
'[plugin] fetch cannot read file
\'
'
.
$params
[
'file'
]
.
'
\'
'
);
return
;
}
}
}
if
(!
empty
(
$params
[
'assign'
]))
{
$template
->
assign
(
$params
[
'assign'
],
$content
);
}
else
{
return
$content
;
}
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Feb 22, 15:28 (22 h, 36 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25815
Default Alt Text
function.fetch.php (8 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment