mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-10 04:02:28 +01:00
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
namespace App\Helpers;
|
|
use App\Models\Click;
|
|
use App\Models\Link;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ClickHelper {
|
|
static private function getCountry($ip) {
|
|
$country_iso = geoip()->getLocation($ip)->iso_code;
|
|
return $country_iso;
|
|
}
|
|
|
|
static private function getHost($url) {
|
|
// Return host given URL; NULL if host is
|
|
// not found.
|
|
return parse_url($url, PHP_URL_HOST);
|
|
}
|
|
|
|
static public function recordClick(Link $link, Request $request) {
|
|
/**
|
|
* Given a Link model instance and Request object, process post click operations.
|
|
* @param Link model instance $link
|
|
* @return boolean
|
|
*/
|
|
|
|
$ip = $request->ip();
|
|
$referer = $request->server('HTTP_REFERER');
|
|
|
|
$click = new Click;
|
|
$click->link_id = $link->id;
|
|
$click->ip = $ip;
|
|
$click->country = self::getCountry($ip);
|
|
$click->referer = $referer;
|
|
$click->referer_host = ClickHelper::getHost($referer);
|
|
$click->user_agent = $request->server('HTTP_USER_AGENT');
|
|
$click->save();
|
|
|
|
return true;
|
|
}
|
|
}
|