Add stubs for gpodder (maybe it'll be useless)
This commit is contained in:
parent
9934d7f31c
commit
41250ea97d
@ -6,7 +6,16 @@ require_once './vendor/autoload.php';
|
||||
|
||||
use Nextcloud\CodingStandard\Config;
|
||||
|
||||
$config = new Config();
|
||||
class MyConfig extends Config {
|
||||
public function getRules(): array
|
||||
{
|
||||
$rules = parent::getRules();
|
||||
$rules['curly_braces_position']['classes_opening_brace'] = 'next_line_unless_newline_at_signature_end';
|
||||
return $rules;
|
||||
}
|
||||
}
|
||||
|
||||
$config = new MyConfig();
|
||||
$config
|
||||
->getFinder()
|
||||
->ignoreVCSIgnored(true)
|
||||
|
@ -15,6 +15,12 @@
|
||||
"psalm:check": "psalm.phar --threads=1 --no-cache --show-info=true",
|
||||
"psalm:fix": "psalm.phar --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"OCA\\RePod\\": "lib/",
|
||||
"OCA\\GPodderSync\\": "stubs/OCA/GPodderSync/"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "8.0"
|
||||
|
12
composer.lock
generated
12
composer.lock
generated
@ -94,16 +94,16 @@
|
||||
},
|
||||
{
|
||||
"name": "php-cs-fixer/shim",
|
||||
"version": "v3.18.0",
|
||||
"version": "v3.19.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/PHP-CS-Fixer/shim.git",
|
||||
"reference": "a517e03dd0727336e502e071cc08e406ac878dba"
|
||||
"reference": "80586ec0e69fb4216edf4e8f830869a3e28d962d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/shim/zipball/a517e03dd0727336e502e071cc08e406ac878dba",
|
||||
"reference": "a517e03dd0727336e502e071cc08e406ac878dba",
|
||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/shim/zipball/80586ec0e69fb4216edf4e8f830869a3e28d962d",
|
||||
"reference": "80586ec0e69fb4216edf4e8f830869a3e28d962d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -140,9 +140,9 @@
|
||||
"description": "A tool to automatically fix PHP code style",
|
||||
"support": {
|
||||
"issues": "https://github.com/PHP-CS-Fixer/shim/issues",
|
||||
"source": "https://github.com/PHP-CS-Fixer/shim/tree/v3.18.0"
|
||||
"source": "https://github.com/PHP-CS-Fixer/shim/tree/v3.19.0"
|
||||
},
|
||||
"time": "2023-06-18T22:26:36+00:00"
|
||||
"time": "2023-06-24T11:07:33+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psalm/phar",
|
||||
|
@ -6,7 +6,8 @@ namespace OCA\RePod\AppInfo;
|
||||
|
||||
use OCP\AppFramework\App;
|
||||
|
||||
class Application extends App {
|
||||
class Application extends App
|
||||
{
|
||||
public const APP_ID = 'repod';
|
||||
|
||||
public function __construct() {
|
||||
|
@ -10,7 +10,8 @@ use OCP\AppFramework\Http\TemplateResponse;
|
||||
use OCP\IRequest;
|
||||
use OCP\Util;
|
||||
|
||||
class PageController extends Controller {
|
||||
class PageController extends Controller
|
||||
{
|
||||
public function __construct(IRequest $request) {
|
||||
parent::__construct(Application::APP_ID, $request);
|
||||
}
|
||||
|
@ -10,6 +10,7 @@
|
||||
>
|
||||
<projectFiles>
|
||||
<directory name="lib" />
|
||||
<directory name="stubs" />
|
||||
<ignoreFiles>
|
||||
<directory name="vendor" />
|
||||
</ignoreFiles>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<NcContent app-name="repod">
|
||||
<NcAppNavigation>
|
||||
<NcAppNavigationNew :text="t('repod', 'New note')"
|
||||
<NcAppNavigationNew :text="t('repod', 'Add a podcast')"
|
||||
@click="discover" />
|
||||
<ul>
|
||||
<NcAppNavigationItem v-for="note in notes"
|
||||
|
31
stubs/OCA/GPodderSync/Core/EpisodeAction/EpisodeAction.php
Normal file
31
stubs/OCA/GPodderSync/Core/EpisodeAction/EpisodeAction.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\GPodderSync\Core\EpisodeAction;
|
||||
|
||||
interface EpisodeAction
|
||||
{
|
||||
public function getPodcast(): string;
|
||||
|
||||
public function getEpisode(): string;
|
||||
|
||||
public function getAction(): string;
|
||||
|
||||
public function getTimestamp(): string;
|
||||
|
||||
public function getStarted(): int;
|
||||
|
||||
public function getPosition(): int;
|
||||
|
||||
public function getTotal(): int;
|
||||
|
||||
public function getGuid() : ?string;
|
||||
|
||||
public function getId(): int;
|
||||
|
||||
/**
|
||||
* @return array<string,mixed>
|
||||
*/
|
||||
public function toArray(): array;
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\GPodderSync\Core\EpisodeAction;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
interface EpisodeActionReader
|
||||
{
|
||||
/**
|
||||
* @param array $episodeActionsArray []
|
||||
* @return EpisodeAction[]
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public function fromArray(array $episodeActionsArray): array;
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\GPodderSync\Core\EpisodeAction;
|
||||
|
||||
interface EpisodeActionSaver
|
||||
{
|
||||
public function saveEpisodeActions(array $episodeActionsArray, string $userId): array;
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\GPodderSync\Core\PodcastData;
|
||||
|
||||
use JsonSerializable;
|
||||
|
||||
interface PodcastActionCounts extends JsonSerializable
|
||||
{
|
||||
public function incrementAction(string $action): void;
|
||||
|
||||
/**
|
||||
* @return array<string, int>
|
||||
*/
|
||||
public function toArray(): array;
|
||||
|
||||
/**
|
||||
* @return array<string, int>
|
||||
*/
|
||||
public function jsonSerialize(): array;
|
||||
}
|
47
stubs/OCA/GPodderSync/Core/PodcastData/PodcastData.php
Normal file
47
stubs/OCA/GPodderSync/Core/PodcastData/PodcastData.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\GPodderSync\Core\PodcastData;
|
||||
|
||||
use Exception;
|
||||
use JsonSerializable;
|
||||
|
||||
interface PodcastData extends JsonSerializable
|
||||
{
|
||||
/**
|
||||
* @return PodcastData
|
||||
* @throws Exception if the XML data could not be parsed.
|
||||
*/
|
||||
public static function parseRssXml(string $xmlString, ?int $fetchedAtUnix = null): PodcastData;
|
||||
|
||||
public function getTitle(): ?string;
|
||||
|
||||
public function getAuthor(): ?string;
|
||||
|
||||
public function getLink(): ?string;
|
||||
|
||||
public function getDescription(): ?string;
|
||||
|
||||
public function getImageUrl(): ?string;
|
||||
|
||||
public function getFetchedAtUnix(): ?int;
|
||||
|
||||
public function getImageBlob(): ?string;
|
||||
|
||||
public function setImageBlob(?string $blob): void;
|
||||
|
||||
public function __toString() : string;
|
||||
|
||||
/**
|
||||
* @return array<string,mixed>
|
||||
*/
|
||||
public function toArray(): array;
|
||||
|
||||
/**
|
||||
* @return array<string,mixed>
|
||||
*/
|
||||
public function jsonSerialize(): array;
|
||||
|
||||
public static function fromArray(array $data): PodcastData;
|
||||
}
|
16
stubs/OCA/GPodderSync/Core/PodcastData/PodcastDataReader.php
Normal file
16
stubs/OCA/GPodderSync/Core/PodcastData/PodcastDataReader.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\GPodderSync\Core\PodcastData;
|
||||
|
||||
interface PodcastDataReader
|
||||
{
|
||||
public function getCachedOrFetchPodcastData(string $url, string $userId): ?PodcastData;
|
||||
|
||||
public function fetchPodcastData(string $url, string $userId): ?PodcastData;
|
||||
|
||||
public function tryGetCachedPodcastData(string $url): ?PodcastData;
|
||||
|
||||
public function trySetCachedPodcastData(string $url, PodcastData $data): bool;
|
||||
}
|
28
stubs/OCA/GPodderSync/Core/PodcastData/PodcastMetrics.php
Normal file
28
stubs/OCA/GPodderSync/Core/PodcastData/PodcastMetrics.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\GPodderSync\Core\PodcastData;
|
||||
|
||||
use JsonSerializable;
|
||||
|
||||
interface PodcastMetrics extends JsonSerializable
|
||||
{
|
||||
public function getUrl(): string;
|
||||
|
||||
public function getActionCounts(): PodcastActionCounts;
|
||||
|
||||
public function getListenedSeconds(): int;
|
||||
|
||||
public function addListenedSeconds(int $seconds): void;
|
||||
|
||||
/**
|
||||
* @return array<string,mixed>
|
||||
*/
|
||||
public function toArray(): array;
|
||||
|
||||
/**
|
||||
* @return array<string,mixed>
|
||||
*/
|
||||
public function jsonSerialize(): array;
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\NextPod\Core\PodcastData;
|
||||
|
||||
use OCA\GPodderSync\Core\PodcastData\PodcastMetrics;
|
||||
|
||||
interface PodcastMetricsReader
|
||||
{
|
||||
/**
|
||||
* @return PodcastMetrics[]
|
||||
*/
|
||||
public function metrics(string $userId): array;
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\NextPod\Core\SubscriptionChange;
|
||||
|
||||
interface SubscriptionChange
|
||||
{
|
||||
public function isSubscribed(): bool;
|
||||
|
||||
public function getUrl(): string;
|
||||
|
||||
public function __toString() : string;
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\NextPod\Core\SubscriptionChange;
|
||||
|
||||
interface SubscriptionChangeRequestParser
|
||||
{
|
||||
/**
|
||||
* @return SubscriptionChange[]
|
||||
*/
|
||||
public function createSubscriptionChangeList(array $urlsSubscribed, array $urlsUnsubscribed): array;
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\NextPod\Core\SubscriptionChange;
|
||||
|
||||
interface SubscriptionChangeSaver
|
||||
{
|
||||
public function saveSubscriptionChanges(array $urlsSubscribed, array $urlsUnsubscribed, string $userId): void;
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\NextPod\Core\SubscriptionChange;
|
||||
|
||||
interface SubscriptionChangesReader
|
||||
{
|
||||
/**
|
||||
* @return SubscriptionChange[]
|
||||
*/
|
||||
public static function mapToSubscriptionsChanges(array $urls, bool $subscribed): array;
|
||||
}
|
Loading…
Reference in New Issue
Block a user