Merge branch 'refactor' of github.com:wallabag/wallabag into refactor

This commit is contained in:
Nicolas Lœuillet 2014-07-18 11:29:05 +02:00
commit 6a4bbf0fe5
1 changed files with 8 additions and 8 deletions

View File

@ -11,13 +11,13 @@
class FlattrItem
{
public $status;
public $urltoflattr;
public $urlToFlattr;
public $flattrItemURL;
public $numflattrs;
public $numFlattrs;
public function checkItem($urltoflattr, $id)
public function checkItem($urlToFlattr, $id)
{
$this->_cacheflattrfile($urltoflattr, $id);
$this->_cacheFlattrFile($urlToFlattr, $id);
$flattrResponse = file_get_contents(CACHE . "/flattr/".$id.".cache");
if($flattrResponse != FALSE) {
$result = json_decode($flattrResponse);
@ -29,7 +29,7 @@ class FlattrItem
elseif (is_object($result) && $result->link) {
$this->status = FLATTRED;
$this->flattrItemURL = $result->link;
$this->numflattrs = $result->flattrs;
$this->numFlattrs = $result->flattrs;
}
else {
$this->status = NOT_FLATTRABLE;
@ -40,7 +40,7 @@ class FlattrItem
}
}
private function _cacheflattrfile($urltoflattr, $id)
private function _cacheFlattrFile($urlToFlattr, $id)
{
if (!is_dir(CACHE . '/flattr')) {
mkdir(CACHE . '/flattr', 0777);
@ -48,10 +48,10 @@ class FlattrItem
// if a cache flattr file for this url already exists and it's been less than one day than it have been updated, see in /cache
if ((!file_exists(CACHE . "/flattr/".$id.".cache")) || (time() - filemtime(CACHE . "/flattr/".$id.".cache") > 86400)) {
$askForFlattr = Tools::getFile(FLATTR_API . $urltoflattr);
$askForFlattr = Tools::getFile(FLATTR_API . $urlToFlattr);
$flattrCacheFile = fopen(CACHE . "/flattr/".$id.".cache", 'w+');
fwrite($flattrCacheFile, $askForFlattr);
fclose($flattrCacheFile);
}
}
}
}