friendica-addons/bluesky/bluesky_notifications.php

17 lines
412 B
PHP
Raw Normal View History

2023-06-11 19:24:44 +00:00
<?php
use Friendica\Core\Logger;
function bluesky_notifications_run($argv, $argc)
{
require_once 'addon/bluesky/bluesky.php';
if ($argc != 3) {
2023-06-11 19:24:44 +00:00
return;
}
Logger::notice('importing notifications - start', ['user' => $argv[1], 'last_poll' => $argv[2]]);
bluesky_fetch_notifications($argv[1], $argv[2]);
Logger::notice('importing notifications - done', ['user' => $argv[1], 'last_poll' => $argv[2]]);
2023-06-11 19:24:44 +00:00
}