コード例 #1
0
<?php

/**
 * File for matching activities from Garmin Communicator
 * Call:   ajax.activityMatcher.php
 */
require_once '../inc/class.Frontend.php';
$Frontend = new Frontend(true);
use Runalyze\Activity\DuplicateFinder;
header('Content-type: application/json');
$IDs = array();
$Matches = array();
$Array = explode('&', urldecode(file_get_contents('php://input')));
foreach ($Array as $String) {
    if (substr($String, 0, 12) == 'externalIds=') {
        $IDs[] = substr($String, 12);
    }
}
$IgnoreIDs = \Runalyze\Configuration::ActivityForm()->ignoredActivityIDs();
$DuplicateFinder = new DuplicateFinder(DB::getInstance(), SessionAccountHandler::getId());
$IgnoreIDs = array_map(function ($v) {
    return (int) floor(strtotime($v) / 60) * 60;
}, $IgnoreIDs);
foreach ($IDs as $ID) {
    $dup = $DuplicateFinder->checkForDuplicate((int) floor(strtotime($ID) / 60) * 60);
    $found = $dup || in_array($ID, $IgnoreIDs);
    $Matches[$ID] = array('match' => $found);
}
$Response = array('matches' => $Matches);
echo json_encode((object) $Response);
コード例 #2
0
<?php

/**
 * File for matching activities from Garmin Communicator
 * Call:   ajax.activityMatcher.php
 */
require_once '../inc/class.Frontend.php';
$Frontend = new Frontend();
use Runalyze\Activity\DuplicateFinder;
header('Content-type: application/json');
$IDs = array();
$Matches = array();
$Array = explode('&', urldecode(file_get_contents('php://input')));
foreach ($Array as $String) {
    if (substr($String, 0, 12) == 'externalIds=') {
        $IDs[] = substr($String, 12);
    }
}
$IgnoreIDs = \Runalyze\Configuration::ActivityForm()->ignoredActivityIDs();
$DuplicateFinder = new DuplicateFinder(DB::getInstance);
//$Request = DB::getInstance()->prepare('SELECT COUNT(*) FROM `'.PREFIX.'training` WHERE `activity_id`=:id LIMIT 1');
foreach ($IDs as $ID) {
    $dup = $DuplicateFinder->checkForDuplicate(strtotime($ID));
    //$Request->execute(array('id' => $ID));
    $found = in_array($ID, $IgnoreIDs) || $Request->fetchColumn() > 0;
    $Matches[$ID] = array('match' => $found);
}
$Response = array('matches' => $Matches);
echo json_encode((object) $Response);