projects
/
tweeper.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
tweeper.php: fix naming conventions for the get_xml_ and preprocess_html_ funcs
[tweeper.git]
/
tweeper.php
diff --git
a/tweeper.php
b/tweeper.php
index
f1a4ba9
..
f7d619e
100644
(file)
--- a/
tweeper.php
+++ b/
tweeper.php
@@
-65,6
+65,15
@@
class Tweeper {
}
/**
}
/**
+ * Convert string to UpperCamelCase.
+ */
+ public static function toUpperCamelCase($str, $delim = ' ') {
+ $str_upper = ucwords($str, $delim);
+ $str_camel_case = str_replace($delim, '', $str_upper);
+ return $str_camel_case;
+ }
+
+ /**
* Get the contents from a URL.
*/
private static function getUrlContents($url) {
* Get the contents from a URL.
*/
private static function getUrlContents($url) {
@@
-243,7
+252,7
@@
class Tweeper {
/**
* Convert the Instagram content to XML.
*/
/**
* Convert the Instagram content to XML.
*/
- private function get
_xml_instagram_c
om($html) {
+ private function get
XmlInstagramC
om($html) {
// Extract the json data from the html code.
$json_match_expr = '/window._sharedData = (.*);/';
$ret = preg_match($json_match_expr, $html, $matches);
// Extract the json data from the html code.
$json_match_expr = '/window._sharedData = (.*);/';
$ret = preg_match($json_match_expr, $html, $matches);
@@
-258,7
+267,7
@@
class Tweeper {
/**
* Make the Facebook HTML processable.
*/
/**
* Make the Facebook HTML processable.
*/
- private function preprocess
_html_facebook_c
om($html) {
+ private function preprocess
HtmlFacebookC
om($html) {
$html = str_replace('<!--', '', $html);
$html = str_replace('-->', '', $html);
return $html;
$html = str_replace('<!--', '', $html);
$html = str_replace('-->', '', $html);
return $html;
@@
-274,7
+283,7
@@
class Tweeper {
$xml_errors_value = libxml_use_internal_errors(TRUE);
// If there is a host-specific method to get the xml data, use it!
$xml_errors_value = libxml_use_internal_errors(TRUE);
// If there is a host-specific method to get the xml data, use it!
- $get_xml_host_method = 'get
_xml_' . str_replace(".", "_", $host
);
+ $get_xml_host_method = 'get
Xml' . Tweeper::toUpperCamelCase($host, '.'
);
if (method_exists($this, $get_xml_host_method)) {
$xml_data = call_user_func_array(array($this, $get_xml_host_method), array($html));
$xmlDoc->loadXML($xml_data);
if (method_exists($this, $get_xml_host_method)) {
$xml_data = call_user_func_array(array($this, $get_xml_host_method), array($html));
$xmlDoc->loadXML($xml_data);
@@
-315,7
+324,7
@@
class Tweeper {
return NULL;
}
return NULL;
}
- $preprocess_html_host_method = 'preprocess
_html_' . str_replace(".", "_", $host
);
+ $preprocess_html_host_method = 'preprocess
Html' . Tweeper::toUpperCamelCase($host, '.'
);
if (method_exists($this, $preprocess_html_host_method)) {
$html = call_user_func_array(array($this, $preprocess_html_host_method), array($html));
}
if (method_exists($this, $preprocess_html_host_method)) {
$html = call_user_func_array(array($this, $preprocess_html_host_method), array($html));
}