Add f7push v0.1: FCM device registry and push API for F7cloud.

Portable occ-based config, OCS endpoints for APK registration, notification relay, and server-side push dispatch.
This commit is contained in:
root
2026-05-24 10:26:36 +03:00
commit df4e2dddec
17 changed files with 1005 additions and 0 deletions
@@ -0,0 +1,61 @@
<?php
declare(strict_types=1);
namespace OCA\F7Push\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
class Version1000Date20260524100000 extends SimpleMigrationStep {
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
if (!$schema->hasTable('f7push_devices')) {
$table = $schema->createTable('f7push_devices');
$table->addColumn('id', 'integer', [
'autoincrement' => true,
'notnull' => true,
'length' => 4,
'unsigned' => true,
]);
$table->addColumn('user_id', 'string', [
'notnull' => true,
'length' => 64,
]);
$table->addColumn('device_id', 'string', [
'notnull' => true,
'length' => 128,
]);
$table->addColumn('fcm_token', 'text', [
'notnull' => true,
]);
$table->addColumn('platform', 'string', [
'notnull' => true,
'length' => 32,
'default' => 'android',
]);
$table->addColumn('client_app', 'string', [
'notnull' => true,
'length' => 64,
'default' => 'f7cloud-apk',
]);
$table->addColumn('created_at', 'integer', [
'notnull' => true,
'unsigned' => true,
]);
$table->addColumn('last_seen', 'integer', [
'notnull' => true,
'unsigned' => true,
]);
$table->setPrimaryKey(['id']);
$table->addUniqueIndex(['user_id', 'device_id'], 'f7push_dev_user_device');
$table->addIndex(['user_id'], 'f7push_dev_user');
}
return $schema;
}
}