mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 17:41:01 +00:00
Merge branch 'refactor' of github.com:wallabag/wallabag into refactor
This commit is contained in:
commit
6a4bbf0fe5
1 changed files with 8 additions and 8 deletions
14
inc/3rdparty/FlattrItem.class.php
vendored
14
inc/3rdparty/FlattrItem.class.php
vendored
|
@ -11,13 +11,13 @@
|
||||||
class FlattrItem
|
class FlattrItem
|
||||||
{
|
{
|
||||||
public $status;
|
public $status;
|
||||||
public $urltoflattr;
|
public $urlToFlattr;
|
||||||
public $flattrItemURL;
|
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");
|
$flattrResponse = file_get_contents(CACHE . "/flattr/".$id.".cache");
|
||||||
if($flattrResponse != FALSE) {
|
if($flattrResponse != FALSE) {
|
||||||
$result = json_decode($flattrResponse);
|
$result = json_decode($flattrResponse);
|
||||||
|
@ -29,7 +29,7 @@ class FlattrItem
|
||||||
elseif (is_object($result) && $result->link) {
|
elseif (is_object($result) && $result->link) {
|
||||||
$this->status = FLATTRED;
|
$this->status = FLATTRED;
|
||||||
$this->flattrItemURL = $result->link;
|
$this->flattrItemURL = $result->link;
|
||||||
$this->numflattrs = $result->flattrs;
|
$this->numFlattrs = $result->flattrs;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$this->status = NOT_FLATTRABLE;
|
$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')) {
|
if (!is_dir(CACHE . '/flattr')) {
|
||||||
mkdir(CACHE . '/flattr', 0777);
|
mkdir(CACHE . '/flattr', 0777);
|
||||||
|
@ -48,7 +48,7 @@ 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 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)) {
|
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+');
|
$flattrCacheFile = fopen(CACHE . "/flattr/".$id.".cache", 'w+');
|
||||||
fwrite($flattrCacheFile, $askForFlattr);
|
fwrite($flattrCacheFile, $askForFlattr);
|
||||||
fclose($flattrCacheFile);
|
fclose($flattrCacheFile);
|
||||||
|
|
Loading…
Reference in a new issue