Type for variables and returns for methods

This commit is contained in:
Thomas 2024-05-09 16:41:04 +02:00
parent daaa039f4c
commit f9172b14f6
28 changed files with 468 additions and 1803 deletions

10
.env
View file

@ -19,13 +19,3 @@ APP_ENV=dev
APP_SECRET=7189792ca5da6b84aff72ec1c63d95ae APP_SECRET=7189792ca5da6b84aff72ec1c63d95ae
###< symfony/framework-bundle ### ###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
#
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
###< doctrine/doctrine-bundle ###

View file

@ -10,10 +10,6 @@
"ext-iconv": "*", "ext-iconv": "*",
"craue/formflow-bundle": "*", "craue/formflow-bundle": "*",
"curl/curl": "^2.5", "curl/curl": "^2.5",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.1",
"friendsofsymfony/jsrouting-bundle": "*", "friendsofsymfony/jsrouting-bundle": "*",
"phpdocumentor/reflection-docblock": "^5.4", "phpdocumentor/reflection-docblock": "^5.4",
"phpstan/phpdoc-parser": "^1.29", "phpstan/phpdoc-parser": "^1.29",

1568
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -13,6 +13,4 @@ return [
Symfony\UX\Turbo\TurboBundle::class => ['all' => true], Symfony\UX\Turbo\TurboBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true], Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
]; ];

View file

@ -1,52 +0,0 @@
doctrine:
dbal:
url: '%env(resolve:DATABASE_URL)%'
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '16'
profiling_collect_backtrace: '%kernel.debug%'
use_savepoints: true
orm:
auto_generate_proxy_classes: true
enable_lazy_ghost_objects: true
report_fields_where_declared: true
validate_xml_mapping: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
auto_mapping: true
mappings:
App:
type: attribute
is_bundle: false
dir: '%kernel.project_dir%/src/Entity'
prefix: 'App\Entity'
alias: App
controller_resolver:
auto_mapping: true
when@test:
doctrine:
dbal:
# "TEST_TOKEN" is typically set by ParaTest
dbname_suffix: '_test%env(default::TEST_TOKEN)%'
when@prod:
doctrine:
orm:
auto_generate_proxy_classes: false
proxy_dir: '%kernel.build_dir%/doctrine/orm/Proxies'
query_cache_driver:
type: pool
pool: doctrine.system_cache_pool
result_cache_driver:
type: pool
pool: doctrine.result_cache_pool
framework:
cache:
pools:
doctrine.result_cache_pool:
adapter: cache.app
doctrine.system_cache_pool:
adapter: cache.system

View file

@ -1,6 +0,0 @@
doctrine_migrations:
migrations_paths:
# namespace is arbitrary but should be different from App\Migrations
# as migrations classes should NOT be autoloaded
'DoctrineMigrations': '%kernel.project_dir%/migrations'
enable_profiler: false

View file

View file

@ -31,7 +31,7 @@ class ComposeType extends AbstractType
{ {
private $securityContext; private Security $securityContext;
private $translator; private $translator;
public function __construct(Security $securityContext, Translator $translator) public function __construct(Security $securityContext, Translator $translator)
@ -40,7 +40,7 @@ class ComposeType extends AbstractType
$this->translator = $translator; $this->translator = $translator;
} }
public function buildForm(FormBuilderInterface $builder, array $options) public function buildForm(FormBuilderInterface $builder, array $options): void
{ {
/**@var $user MastodonAccount */ /**@var $user MastodonAccount */
$user = $options['user']; $user = $options['user'];
@ -123,7 +123,7 @@ class ComposeType extends AbstractType
} }
public function configureOptions(OptionsResolver $resolver) public function configureOptions(OptionsResolver $resolver): void
{ {
$resolver->setDefaults([ $resolver->setDefaults([
'data_class' => Compose::class, 'data_class' => Compose::class,

View file

@ -14,7 +14,7 @@ use Craue\FormFlowBundle\Form\FormFlow;
class ConnectMastodonAccountFlow extends FormFlow class ConnectMastodonAccountFlow extends FormFlow
{ {
protected function loadStepsConfig() protected function loadStepsConfig(): array
{ {
return [ return [
[ [

View file

@ -17,7 +17,7 @@ use Symfony\Component\OptionsResolver\OptionsResolver;
class ConnectMastodonAccountType extends AbstractType class ConnectMastodonAccountType extends AbstractType
{ {
public function buildForm(FormBuilderInterface $builder, array $options) public function buildForm(FormBuilderInterface $builder, array $options): void
{ {
switch ($options['flow_step']) { switch ($options['flow_step']) {
case 1: case 1:
@ -38,12 +38,12 @@ class ConnectMastodonAccountType extends AbstractType
} }
} }
public function getBlockPrefix() public function getBlockPrefix(): string
{ {
return 'addMastodonAccount'; return 'addMastodonAccount';
} }
public function configureOptions(OptionsResolver $resolver) public function configureOptions(OptionsResolver $resolver): void
{ {
$resolver->setDefaults([ $resolver->setDefaults([
'validation_groups' => ['registration'], 'validation_groups' => ['registration'],

View file

@ -18,14 +18,14 @@ class PollOptionType extends AbstractType
{ {
private $securityContext; private Security $securityContext;
public function __construct(Security $securityContext) public function __construct(Security $securityContext)
{ {
$this->securityContext = $securityContext; $this->securityContext = $securityContext;
} }
public function buildForm(FormBuilderInterface $builder, array $options) public function buildForm(FormBuilderInterface $builder, array $options): void
{ {
$builder->add('title', TextType::class, $builder->add('title', TextType::class,
[ [
@ -36,7 +36,7 @@ class PollOptionType extends AbstractType
} }
public function configureOptions(OptionsResolver $resolver) public function configureOptions(OptionsResolver $resolver): void
{ {
$resolver->setDefaults([ $resolver->setDefaults([
'data_class' => PollOption::class, 'data_class' => PollOption::class,

View file

View file

@ -5,8 +5,6 @@ namespace App\Security;
use App\SocialEntity\Client; use App\SocialEntity\Client;
use App\SocialEntity\CustomField; use App\SocialEntity\CustomField;
use App\SocialEntity\Emoji; use App\SocialEntity\Emoji;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;
use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Core\User\UserInterface;
@ -64,8 +62,8 @@ class MastodonAccount implements UserInterface
public function __construct() public function __construct()
{ {
$this->Fields = new ArrayCollection(); $this->Fields = array();
$this->Emojis = new ArrayCollection(); $this->Emojis = array();
} }

View file

@ -66,7 +66,7 @@ class Mastodon_api
* *
* @param string $path * @param string $path
*/ */
public function set_url($path) public function set_url(string $path): void
{ {
$this->mastodon_url = $path; $this->mastodon_url = $path;
} }
@ -77,7 +77,7 @@ class Mastodon_api
* @param string $id * @param string $id
* @param string $secret * @param string $secret
*/ */
public function set_client($id, $secret) public function set_client(string $id, string $secret): void
{ {
$this->client_id = $id; $this->client_id = $id;
$this->client_secret = $secret; $this->client_secret = $secret;
@ -89,7 +89,7 @@ class Mastodon_api
* @param string $token * @param string $token
* @param string $type * @param string $type
*/ */
public function set_token($token, $type) public function set_token(string $token, string $type): void
{ {
$this->token['access_token'] = $token; $this->token['access_token'] = $token;
$this->token['token_type'] = $type; $this->token['token_type'] = $type;
@ -100,7 +100,7 @@ class Mastodon_api
* *
* @param array $scopes read / write / follow * @param array $scopes read / write / follow
*/ */
public function set_scopes($scopes) public function set_scopes(array $scopes): void
{ {
$this->scopes = $scopes; $this->scopes = $scopes;
} }
@ -119,7 +119,7 @@ class Mastodon_api
* string $response['client_id'] * string $response['client_id']
* string $response['client_secret'] * string $response['client_secret']
*/ */
public function create_app($client_name, $scopes = array(), $redirect_uris = '', $website = '') public function create_app(string $client_name, array $scopes = array(), string $redirect_uris = '', string $website = ''): array
{ {
$parameters = array(); $parameters = array();
@ -162,7 +162,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
private function _post($url, $parameters = array()) private function _post(string $url, array $parameters = array()): array
{ {
$params["method"] = "POST"; $params["method"] = "POST";
@ -185,7 +185,7 @@ class Mastodon_api
* *
* @return array $data * @return array $data
*/ */
public function get_content_remote($url, $parameters = array()) public function get_content_remote(string $url, array $parameters = array()): array
{ {
$data = array(); $data = array();
@ -304,7 +304,7 @@ class Mastodon_api
* string $response['scope'] read * string $response['scope'] read
* int $response['created_at'] time * int $response['created_at'] time
*/ */
public function login($id, $password) public function login(string $id, string $password): array
{ {
$parameters = array(); $parameters = array();
$parameters['client_id'] = $this->client_id; $parameters['client_id'] = $this->client_id;
@ -340,7 +340,7 @@ class Mastodon_api
* string $response['scope'] read * string $response['scope'] read
* int $response['created_at'] time * int $response['created_at'] time
*/ */
public function loginAuthorization($code, $redirect_uri = '') public function loginAuthorization(string $code, string $redirect_uri = ''): array
{ {
$parameters = array(); $parameters = array();
$parameters['client_id'] = $this->client_id; $parameters['client_id'] = $this->client_id;
@ -367,7 +367,7 @@ class Mastodon_api
* *
* @return string $response Authorization code * @return string $response Authorization code
*/ */
public function getAuthorizationUrl($redirect_uri = '') public function getAuthorizationUrl(string $redirect_uri = ''): string
{ {
if (empty($redirect_uri)) if (empty($redirect_uri))
$redirect_uri = 'urn:ietf:wg:oauth:2.0:oob'; $redirect_uri = 'urn:ietf:wg:oauth:2.0:oob';
@ -389,7 +389,7 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
* int $response['id'] * int $response['id']
@ -408,7 +408,7 @@ class Mastodon_api
* string $response['header'] A base64 encoded image to display as the user's header image * string $response['header'] A base64 encoded image to display as the user's header image
* string $response['header_static'] * string $response['header_static']
*/ */
public function accounts($id) public function accounts(string $id): array
{ {
return $this->_get('/api/v1/accounts/' . $id); return $this->_get('/api/v1/accounts/' . $id);
} }
@ -421,7 +421,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
private function _get($url, $parameters = array()) private function _get(string $url, array $parameters = array()): array
{ {
$params["method"] = "GET"; $params["method"] = "GET";
@ -444,7 +444,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function accounts_verify_credentials() public function accounts_verify_credentials(): array
{ {
return $this->_get('/api/v1/accounts/verify_credentials'); return $this->_get('/api/v1/accounts/verify_credentials');
} }
@ -462,7 +462,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function accounts_update_credentials($parameters) public function accounts_update_credentials($parameters): array
{ {
return $this->_patch('/api/v1/accounts/update_credentials', $parameters); return $this->_patch('/api/v1/accounts/update_credentials', $parameters);
} }
@ -475,7 +475,7 @@ class Mastodon_api
* *
* @return array $parameters * @return array $parameters
*/ */
private function _patch($url, $parameters = array()) private function _patch(string $url, array $parameters = array()): array
{ {
$params["method"] = "PATCH"; $params["method"] = "PATCH";
@ -497,11 +497,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_followers($id) public function accounts_followers(string $id): array
{ {
return $this->_get('/api/v1/accounts/' . $id . '/followers'); return $this->_get('/api/v1/accounts/' . $id . '/followers');
} }
@ -511,11 +511,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_following($id) public function accounts_following(string $id): array
{ {
return $this->_get('/api/v1/accounts/' . $id . '/following'); return $this->_get('/api/v1/accounts/' . $id . '/following');
} }
@ -525,11 +525,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_statuses($id) public function accounts_statuses(string $id): array
{ {
return $this->_get('/api/v1/accounts/' . $id . '/statuses'); return $this->_get('/api/v1/accounts/' . $id . '/statuses');
} }
@ -539,11 +539,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_own_statuses($id) public function accounts_own_statuses(string $id): array
{ {
$response = $this->_get('/api/v1/accounts/' . $id . '/statuses?exclude_replies=1'); $response = $this->_get('/api/v1/accounts/' . $id . '/statuses?exclude_replies=1');
$result = []; $result = [];
@ -563,11 +563,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_follow($id) public function accounts_follow(string $id): array
{ {
return $this->_post('/api/v1/accounts/' . $id . '/follow'); return $this->_post('/api/v1/accounts/' . $id . '/follow');
} }
@ -577,11 +577,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_unfollow($id) public function accounts_unfollow(string $id): array
{ {
return $this->_post('/api/v1/accounts/' . $id . '/unfollow'); return $this->_post('/api/v1/accounts/' . $id . '/unfollow');
} }
@ -591,11 +591,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_block($id) public function accounts_block(string $id): array
{ {
return $this->_post('/api/v1/accounts/' . $id . '/block'); return $this->_post('/api/v1/accounts/' . $id . '/block');
} }
@ -605,11 +605,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_unblock($id) public function accounts_unblock(string $id): array
{ {
return $this->_post('/api/v1/accounts/' . $id . '/unblock'); return $this->_post('/api/v1/accounts/' . $id . '/unblock');
} }
@ -619,11 +619,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_mute($id) public function accounts_mute(string $id): array
{ {
return $this->_post('/api/v1/accounts/' . $id . '/mute'); return $this->_post('/api/v1/accounts/' . $id . '/mute');
} }
@ -633,11 +633,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function accounts_unmute($id) public function accounts_unmute(string $id): array
{ {
return $this->_post('/api/v1/accounts/' . $id . '/unmute'); return $this->_post('/api/v1/accounts/' . $id . '/unmute');
} }
@ -658,7 +658,7 @@ class Mastodon_api
* bool $response['muting'] * bool $response['muting']
* bool $response['requested'] * bool $response['requested']
*/ */
public function accounts_relationships($parameters) public function accounts_relationships(array $parameters): array
{ {
return $this->_get('/api/v1/accounts/relationships', $parameters); return $this->_get('/api/v1/accounts/relationships', $parameters);
} }
@ -672,7 +672,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function accounts_search($parameters) public function accounts_search(array $parameters): array
{ {
return $this->_get('/api/v1/accounts/search', $parameters); return $this->_get('/api/v1/accounts/search', $parameters);
} }
@ -682,7 +682,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function blocks() public function blocks(): array
{ {
return $this->_get('/api/v1/blocks'); return $this->_get('/api/v1/blocks');
} }
@ -692,7 +692,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function favourites() public function favourites(): array
{ {
return $this->_get('/api/v1/favourites'); return $this->_get('/api/v1/favourites');
} }
@ -702,7 +702,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function follow_requests() public function follow_requests(): array
{ {
return $this->_get('/api/v1/follow_requests'); return $this->_get('/api/v1/follow_requests');
} }
@ -712,11 +712,11 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function follow_requests_authorize($id) public function follow_requests_authorize(string $id): array
{ {
return $this->_post('/api/v1/follow_requests/authorize', array('id' => $id)); return $this->_post('/api/v1/follow_requests/authorize', array('id' => $id));
} }
@ -726,10 +726,10 @@ class Mastodon_api
* *
* @see https://your-domain/web/accounts/:id * @see https://your-domain/web/accounts/:id
* *
* @param int $id * @param string $id
* @return array $response * @return array $response
*/ */
public function follow_requests_reject($id) public function follow_requests_reject(string $id): array
{ {
return $this->_post('/api/v1/follow_requests/reject', array('id' => $id)); return $this->_post('/api/v1/follow_requests/reject', array('id' => $id));
} }
@ -742,7 +742,7 @@ class Mastodon_api
* @param string $uri username@domain of the person you want to follow * @param string $uri username@domain of the person you want to follow
* @return array $response * @return array $response
*/ */
public function follows($uri) public function follows($uri): array
{ {
return $this->_post('/api/v1/follows', array('uri' => $uri)); return $this->_post('/api/v1/follows', array('uri' => $uri));
} }
@ -758,7 +758,7 @@ class Mastodon_api
* string $response['description'] * string $response['description']
* string $response['email'] * string $response['email']
*/ */
public function instance() public function instance(): array
{ {
return $this->_get('/api/v1/instance'); return $this->_get('/api/v1/instance');
} }
@ -770,7 +770,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function mutes() public function mutes(): array
{ {
return $this->_get('/api/v1/mutes'); return $this->_get('/api/v1/mutes');
} }
@ -783,7 +783,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function notifications($parameters) public function notifications($parameters): array
{ {
$url = '/api/v1/notifications'; $url = '/api/v1/notifications';
@ -797,7 +797,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function notifications_clear() public function notifications_clear(): array
{ {
return $this->_post('/api/v1/notifications/clear'); return $this->_post('/api/v1/notifications/clear');
} }
@ -809,7 +809,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function get_reports() public function get_reports(): array
{ {
return $this->_get('/api/v1/reports'); return $this->_get('/api/v1/reports');
} }
@ -826,7 +826,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function post_reports($parameters) public function post_reports(array $parameters): array
{ {
return $this->_post('/api/v1/reports', $parameters); return $this->_post('/api/v1/reports', $parameters);
} }
@ -842,7 +842,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function search($parameters) public function search(array $parameters): array
{ {
return $this->_get('/api/v1/search', $parameters); return $this->_get('/api/v1/search', $parameters);
} }
@ -852,11 +852,11 @@ class Mastodon_api
* *
* Fetching a status * Fetching a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses($id) public function statuses(string $id): array
{ {
return $this->_get('/api/v1/statuses/' . $id); return $this->_get('/api/v1/statuses/' . $id);
} }
@ -866,11 +866,11 @@ class Mastodon_api
* *
* Getting status context * Getting status context
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_context($id) public function statuses_context(string $id): array
{ {
return $this->_get('/api/v1/statuses/' . $id . '/context'); return $this->_get('/api/v1/statuses/' . $id . '/context');
} }
@ -880,11 +880,11 @@ class Mastodon_api
* *
* Getting a card associated with a status * Getting a card associated with a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_card($id) public function statuses_card(string $id): array
{ {
return $this->_get('/api/v1/statuses/' . $id . '/card'); return $this->_get('/api/v1/statuses/' . $id . '/card');
} }
@ -894,11 +894,11 @@ class Mastodon_api
* *
* Getting who reblogged a status * Getting who reblogged a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_reblogged_by($id) public function statuses_reblogged_by(string $id): array
{ {
return $this->_get('/api/v1/statuses/' . $id . '/reblogged_by'); return $this->_get('/api/v1/statuses/' . $id . '/reblogged_by');
} }
@ -908,11 +908,11 @@ class Mastodon_api
* *
* Getting who favourited a status * Getting who favourited a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_favourited_by($id) public function statuses_favourited_by(string $id): array
{ {
return $this->_get('/api/v1/statuses/' . $id . '/favourited_by'); return $this->_get('/api/v1/statuses/' . $id . '/favourited_by');
} }
@ -927,7 +927,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function post_media($parameters) public function post_media(array $parameters): array
{ {
return $this->_post('/api/v1/media', $parameters); return $this->_post('/api/v1/media', $parameters);
} }
@ -943,7 +943,7 @@ class Mastodon_api
* @param $parameters * @param $parameters
* @return array $response * @return array $response
*/ */
public function update_media($id, $parameters) public function update_media(string $id, array $parameters): array
{ {
return $this->_put('/api/v1/media/' . $id, $parameters); return $this->_put('/api/v1/media/' . $id, $parameters);
} }
@ -958,7 +958,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
private function _put($url, $parameters = array()) private function _put(string $url, array $parameters = array()): array
{ {
$params["method"] = "PUT"; $params["method"] = "PUT";
@ -986,7 +986,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function post_statuses($parameters) public function post_statuses(array $parameters): array
{ {
return $this->_post('/api/v1/statuses', $parameters); return $this->_post('/api/v1/statuses', $parameters);
} }
@ -996,11 +996,11 @@ class Mastodon_api
* *
* Deleting a status * Deleting a status
* *
* @param int $id * @param string $id
* *
* @return array $response empty * @return array $response empty
*/ */
public function delete_statuses($id) public function delete_statuses(string $id): array
{ {
return $this->_delete('/api/v1/statuses/' . $id); return $this->_delete('/api/v1/statuses/' . $id);
} }
@ -1014,7 +1014,7 @@ class Mastodon_api
* *
*/ */
private function _delete($url) private function _delete(string $url): array
{ {
$parameters = array(); $parameters = array();
$parameters["method"] = "DELETE"; $parameters["method"] = "DELETE";
@ -1034,11 +1034,11 @@ class Mastodon_api
* *
* Deleting a scheduled status * Deleting a scheduled status
* *
* @param int $id * @param string $id
* *
* @return array $response empty * @return array $response empty
*/ */
public function delete_scheduled($id) public function delete_scheduled(string $id): array
{ {
return $this->_delete('/api/v1/scheduled_statuses/' . $id); return $this->_delete('/api/v1/scheduled_statuses/' . $id);
} }
@ -1048,11 +1048,11 @@ class Mastodon_api
* *
* Reblogging a status * Reblogging a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_reblog($id) public function statuses_reblog(string $id): array
{ {
return $this->_post('/api/v1/statuses/' . $id . '/reblog'); return $this->_post('/api/v1/statuses/' . $id . '/reblog');
} }
@ -1062,11 +1062,11 @@ class Mastodon_api
* *
* Unreblogging a status * Unreblogging a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_unreblog($id) public function statuses_unreblog(string $id): array
{ {
return $this->_post('/api/v1/statuses/' . $id . '/unreblog'); return $this->_post('/api/v1/statuses/' . $id . '/unreblog');
} }
@ -1076,11 +1076,11 @@ class Mastodon_api
* *
* Favouriting a status * Favouriting a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_favourite($id) public function statuses_favourite(string $id): array
{ {
return $this->_post('/api/v1/statuses/' . $id . '/favourite'); return $this->_post('/api/v1/statuses/' . $id . '/favourite');
} }
@ -1090,11 +1090,11 @@ class Mastodon_api
* *
* Unfavouriting a status * Unfavouriting a status
* *
* @param int $id * @param string $id
* *
* @return array $response * @return array $response
*/ */
public function statuses_unfavourite($id) public function statuses_unfavourite(string $id): array
{ {
return $this->_post('/api/v1/statuses/' . $id . '/unfavourite'); return $this->_post('/api/v1/statuses/' . $id . '/unfavourite');
} }
@ -1107,7 +1107,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function get_scheduled($parameters = array()) public function get_scheduled($parameters = array()): array
{ {
return $this->_get('/api/v1/scheduled_statuses/', $parameters); return $this->_get('/api/v1/scheduled_statuses/', $parameters);
} }
@ -1117,7 +1117,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function timelines_home() public function timelines_home(): array
{ {
return $this->_get('/api/v1/timelines/home'); return $this->_get('/api/v1/timelines/home');
} }
@ -1130,7 +1130,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function timelines_public($parameters = array()) public function timelines_public(array $parameters = array()): array
{ {
return $this->_get('/api/v1/timelines/public', $parameters); return $this->_get('/api/v1/timelines/public', $parameters);
} }
@ -1144,7 +1144,7 @@ class Mastodon_api
* *
* @return array $response * @return array $response
*/ */
public function timelines_tag($hashtag, $parameters = array()) public function timelines_tag(string $hashtag, array $parameters = array()): array
{ {
return $this->_get('/api/v1/timelines/tag/' . $hashtag, $parameters); return $this->_get('/api/v1/timelines/tag/' . $hashtag, $parameters);
} }
@ -1160,7 +1160,7 @@ class Mastodon_api
* @param $host * @param $host
* @return string|null * @return string|null
*/ */
public function getInstanceNodeInfo($host) public function getInstanceNodeInfo(string $host): ?string
{ {
$curl = new Curl(); $curl = new Curl();
$url = "https://" . $host . "/.well-known/nodeinfo"; $url = "https://" . $host . "/.well-known/nodeinfo";
@ -1192,7 +1192,7 @@ class Mastodon_api
* @param $accountParams array * @param $accountParams array
* @return MastodonAccount * @return MastodonAccount
*/ */
public function updateAccount(MastodonAccount $MastodonAccount, $accountParams) public function updateAccount(MastodonAccount $MastodonAccount, array $accountParams): MastodonAccount
{ {
$MastodonAccount->setUsername($accountParams['username']); $MastodonAccount->setUsername($accountParams['username']);
@ -1241,7 +1241,7 @@ class Mastodon_api
return $MastodonAccount; return $MastodonAccount;
} }
public function stringToDate($string_date): DateTime public function stringToDate(string $string_date): DateTime
{ {
try { try {
return new DateTime($string_date); return new DateTime($string_date);
@ -1252,10 +1252,10 @@ class Mastodon_api
/** /**
* getNotifications Hydrate an array of Notification from API reply * getNotifications Hydrate an array of Notification from API reply
* @param $notificationParams * @param $notificationParams array
* @return array * @return array
*/ */
public function getNotifications($notificationParams) public function getNotifications(array $notificationParams): array
{ {
$notifications = []; $notifications = [];
foreach ($notificationParams as $notificationParam) foreach ($notificationParams as $notificationParam)
@ -1268,7 +1268,7 @@ class Mastodon_api
* @param $notificationParams * @param $notificationParams
* @return Notification * @return Notification
*/ */
public function getSingleNotification($notificationParams) public function getSingleNotification($notificationParams): Notification
{ {
$notification = new Notification(); $notification = new Notification();
$notification->setId($notificationParams['id']); $notification->setId($notificationParams['id']);
@ -1282,10 +1282,10 @@ class Mastodon_api
/** /**
* getSingleAccount Hydrate a MastodonAccount from API reply * getSingleAccount Hydrate a MastodonAccount from API reply
* @param $accountParams * @param $accountParams array
* @return MastodonAccount * @return MastodonAccount
*/ */
public function getSingleAccount($accountParams) public function getSingleAccount(array $accountParams): MastodonAccount
{ {
$MastodonAccount = new MastodonAccount(); $MastodonAccount = new MastodonAccount();
@ -1342,10 +1342,10 @@ class Mastodon_api
/** /**
* getSingleStatus Hydrate a Status from API reply * getSingleStatus Hydrate a Status from API reply
* @param $statusParams * @param $statusParams array
* @return Status * @return Status
*/ */
public function getSingleStatus($statusParams) public function getSingleStatus(array $statusParams): Status
{ {
$status = new Status(); $status = new Status();
@ -1476,7 +1476,7 @@ class Mastodon_api
* @param $statusParams * @param $statusParams
* @return array * @return array
*/ */
public function getStatuses($statusParams) public function getStatuses($statusParams): array
{ {
$statuses = []; $statuses = [];
foreach ($statusParams as $statusParam) foreach ($statusParams as $statusParam)
@ -1486,11 +1486,11 @@ class Mastodon_api
/** /**
* getScheduledStatuses Hydrate an array of Scheduled Status from API reply * getScheduledStatuses Hydrate an array of Scheduled Status from API reply
* @param $statusParams * @param $statusParams array
* @param $account * @param $account MastodonAccount
* @return array * @return array
*/ */
public function getScheduledStatuses($statusParams, $account) public function getScheduledStatuses(array $statusParams, MastodonAccount $account): array
{ {
$statuses = []; $statuses = [];
foreach ($statusParams as $statusParam) foreach ($statusParams as $statusParam)
@ -1501,11 +1501,11 @@ class Mastodon_api
/** /**
* getSingleScheduledStatus Hydrate a scheduled Status from API reply * getSingleScheduledStatus Hydrate a scheduled Status from API reply
* @param $statusParams * @param $statusParams array
* @param $account * @param $account MastodonAccount
* @return Status * @return Status
*/ */
public function getSingleScheduledStatus($statusParams, $account) public function getSingleScheduledStatus(array $statusParams, MastodonAccount $account): Status
{ {
$status = new Status(); $status = new Status();
@ -1577,10 +1577,10 @@ class Mastodon_api
/** /**
* getSingleAttachment Hydrate an Attachment from API reply * getSingleAttachment Hydrate an Attachment from API reply
* @param $mediaParams * @param $mediaParams array
* @return Attachment * @return Attachment
*/ */
public function getSingleAttachment($mediaParams) public function getSingleAttachment(array $mediaParams): Attachment
{ {
$attachment = new Attachment(); $attachment = new Attachment();

View file

@ -6,10 +6,8 @@ namespace App\SocialEntity;
class Application class Application
{ {
/** @var string */ private string $name;
private $name; private string $website;
/** @var string */
private $website;
/** /**
* @return string * @return string

View file

@ -5,22 +5,15 @@ namespace App\SocialEntity;
class Attachment class Attachment
{ {
/** @var string */
private $id; private string $id;
/** @var string */ private string $type;
private $type; private string $url;
/** @var string */ private string $remote_url;
private $url; private string $preview_url;
/** @var string */ private string $text_url;
private $remote_url; private string $meta;
/** @var string */ private string $description;
private $preview_url;
/** @var string */
private $text_url;
/** @var string */
private $meta;
/** @var string */
private $description;
/** /**
* @return string * @return string

View file

@ -5,30 +5,18 @@ namespace App\SocialEntity;
class Card class Card
{ {
/** @var string */ private string $url;
private $url; private string $title;
/** @var string */ private string $description;
private $title; private string $image;
/** @var string */ private string $type;
private $description; private string $author_name;
/** @var string */ private string $author_url;
private $image; private string $provider_name;
/** @var string */ private string $provider_url;
private $type; private string $html;
/** @var string */ private int $width;
private $author_name; private int $height;
/** @var string */
private $author_url;
/** @var string */
private $provider_name;
/** @var string */
private $provider_url;
/** @var string */
private $html;
/** @var int */
private $width;
/** @var int */
private $height;
/** /**
* @return string * @return string
@ -222,5 +210,4 @@ class Card
$this->height = $height; $this->height = $height;
} }
} }

View file

@ -3,20 +3,17 @@
namespace App\SocialEntity; namespace App\SocialEntity;
use App\Security\MastodonAccount;
class Client class Client
{ {
private $id; private string $id;
private string $host;
private $host; private string $client_id;
private string $client_secret;
private $client_id; private MastodonAccount $account;
private string $code;
private $client_secret;
private $account;
private $code;
public function getId(): ?int public function getId(): ?int
{ {

View file

@ -3,55 +3,41 @@
namespace App\SocialEntity; namespace App\SocialEntity;
use DateTime; use DateTime;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection;
class Compose class Compose
{ {
private $id; private string $id;
private string $content_warning;
private string $content;
private $content_warning; private string $visibility;
private DateTime $created_at;
private DateTime $scheduled_at;
private DateTime $sent_at;
private bool $sensitive;
private string $in_reply_to_id;
private $content; private string $timeZone;
/** @var PollOption[] */
private $visibility; private array $poll_options;
private int $poll_expires_at;
private $created_at; private bool $poll_multiple;
private $scheduled_at;
private $sent_at;
private $sensitive;
private $in_reply_to_id;
private $timeZone;
private $poll_options;
/** @var int */
private $poll_expires_at;
/** @var bool */
private $poll_multiple;
public function __construct() public function __construct()
{ {
$this->poll_options = new ArrayCollection(); $this->poll_options = array();
} }
/**
* @return mixed public function getTimeZone(): string
*/
public function getTimeZone()
{ {
return $this->timeZone; return $this->timeZone;
} }
/**
* @param mixed $timeZone
*/
public function setTimeZone($timeZone): void public function setTimeZone($timeZone): void
{ {
$this->timeZone = $timeZone; $this->timeZone = $timeZone;
@ -63,7 +49,7 @@ class Compose
public function getSent() public function getSent()
{ {
return ($this->sent_at != null); return ($this->sent_at != null && !empty($this->sent_at));
} }
public function getId(): ?int public function getId(): ?int
@ -108,29 +94,23 @@ class Compose
} }
/** public function getSensitive(): bool
* @return boolean
*/
public function getSensitive()
{ {
return $this->sensitive; return $this->sensitive;
} }
/**
* @param mixed $sensitive
*/
public function setSensitive(bool $sensitive): void public function setSensitive(bool $sensitive): void
{ {
$this->sensitive = $sensitive; $this->sensitive = $sensitive;
} }
public function getCreatedAt(): ?DateTimeInterface public function getCreatedAt(): ?DateTime
{ {
return $this->created_at; return $this->created_at;
} }
public function setCreatedAt(DateTimeInterface $created_at): self public function setCreatedAt(DateTime $created_at): self
{ {
$this->created_at = $created_at; $this->created_at = $created_at;
@ -161,41 +141,29 @@ class Compose
return $this; return $this;
} }
/**
* @return ArrayCollection|null
*/ public function getPollOptions(): ?array
public function getPollOptions(): ?ArrayCollection
{ {
return $this->poll_options; return $this->poll_options;
} }
/**
* @param ArrayCollection $poll_options public function setPollOptions(?array $poll_options): void
*/
public function setPollOptions(?ArrayCollection $poll_options): void
{ {
$this->poll_options = $poll_options; $this->poll_options = $poll_options;
} }
/**
* @return int
*/
public function getPollExpiresAt(): ?int public function getPollExpiresAt(): ?int
{ {
return $this->poll_expires_at; return $this->poll_expires_at;
} }
/**
* @param int $poll_expires_at
*/
public function setPollExpiresAt(?int $poll_expires_at): void public function setPollExpiresAt(?int $poll_expires_at): void
{ {
$this->poll_expires_at = $poll_expires_at; $this->poll_expires_at = $poll_expires_at;
} }
/**
* @return bool
*/
public function isPollMultiple(): ?bool public function isPollMultiple(): ?bool
{ {
return $this->poll_multiple; return $this->poll_multiple;

View file

@ -4,20 +4,20 @@ namespace App\SocialEntity;
use App\Security\MastodonAccount; use App\Security\MastodonAccount;
use DateTimeInterface; use DateTime;
class CustomField class CustomField
{ {
private $id; private string $id;
private $name; private string $name;
private $value; private string $value;
private $verified_at; private \DateTime $verified_at;
private $mastodonAccount; private MastodonAccount $mastodonAccount;
public function __construct() public function __construct()
@ -41,12 +41,12 @@ class CustomField
return $this; return $this;
} }
public function getVerifiedAt(): ?DateTimeInterface public function getVerifiedAt(): ?DateTime
{ {
return $this->verified_at; return $this->verified_at;
} }
public function setVerifiedAt(?DateTimeInterface $verified_at): self public function setVerifiedAt(?DateTime $verified_at): self
{ {
$this->verified_at = $verified_at; $this->verified_at = $verified_at;

View file

@ -7,17 +7,17 @@ use App\Security\MastodonAccount;
class Emoji class Emoji
{ {
private $id; private string $id;
private $shortcode; private string $shortcode;
private $static_url; private string $static_url;
private $url; private string $url;
private $visible_in_picker; private bool $visible_in_picker;
private $mastodonAccount; private MastodonAccount $mastodonAccount;
public function __construct() public function __construct()

View file

@ -4,14 +4,10 @@ namespace App\SocialEntity;
class Mention class Mention
{ {
/** @var string */ private string $url;
private $url; private string $username;
/** @var string */ private string $acct;
private $username; private string $id;
/** @var string */
private $acct;
/** @var string */
private $id;
/** /**

View file

@ -8,16 +8,11 @@ use DateTime;
class Notification class Notification
{ {
/** @var string */ private string $id;
private $id; private string $type;
/** @var string */ private DateTime $created_at;
private $type; private MastodonAccount $account;
/** @var DateTime */ private Status $status;
private $created_at;
/** @var MastodonAccount */
private $account;
/** @var Status */
private $status;
/** /**

View file

@ -8,26 +8,19 @@ use DateTime;
class Poll class Poll
{ {
/** @var string */ private string $id;
private $id; private DateTime $expires_at;
/** @var DateTime */ private bool $expired;
private $expires_at; private bool $multiple;
/** @var bool */ private int $votes_count;
private $expired; private int $voters_count;
/** @var bool */ private bool $voted;
private $multiple;
/** @var int */
private $votes_count;
/** @var int */
private $voters_count;
/** @var bool */
private $voted;
/** @var int[] */ /** @var int[] */
private $own_votes; private array $own_votes;
/** @var PollOption[] */ /** @var PollOption[] */
private $options; private array $options;
/** @var Emoji[] */ /** @var Emoji[] */
private $emojis; private array $emojis;
/** /**
* @return string * @return string

View file

@ -6,38 +6,27 @@ namespace App\SocialEntity;
class PollOption class PollOption
{ {
/** @var string */ private string $title;
private $title; private int $votes_count;
/** @var int */
private $votes_count;
/**
* @return string
*/
public function getTitle(): ?string public function getTitle(): ?string
{ {
return $this->title; return $this->title;
} }
/**
* @param string $title
*/
public function setTitle(?string $title): void public function setTitle(?string $title): void
{ {
$this->title = $title; $this->title = $title;
} }
/**
* @return int
*/
public function getVotesCount(): ?int public function getVotesCount(): ?int
{ {
return $this->votes_count; return $this->votes_count;
} }
/**
* @param int $votes_count
*/
public function setVotesCount(?int $votes_count): void public function setVotesCount(?int $votes_count): void
{ {
$this->votes_count = $votes_count; $this->votes_count = $votes_count;

View file

@ -8,62 +8,38 @@ use DateTime;
class Status class Status
{ {
/** @var string */ private string $id;
private $id; private string $uri;
/** @var string */ private string $url;
private $uri; private MastodonAccount $account;
/** @var string */ private string $in_reply_to_id;
private $url; private string $in_reply_to_account_id;
/** @var MastodonAccount */ private string $content;
private $account; private DateTime $created_at;
/** @var string */ private DateTime $scheduled_at;
private $in_reply_to_id;
/** @var string */
private $in_reply_to_account_id;
/** @var string */
private $content;
/** @var DateTime */
private $created_at;
/** @var DateTime */
private $scheduled_at;
/** @var Emoji[] */ /** @var Emoji[] */
private $emojis = []; private array $emojis = [];
/** @var int */ private int $replies_count;
private $replies_count; private int $reblogs_count;
/** @var int */ private int $favourites_count;
private $reblogs_count; private bool $reblogged;
/** @var int */ private bool $favourited;
private $favourites_count; private bool $muted;
/** @var boolean */ private bool $sensitive_;
private $reblogged; private string $spoiler_text;
/** @var boolean */ private string $visibility;
private $favourited;
/** @var boolean */
private $muted;
/** @var boolean */
private $sensitive_;
/** @var string */
private $spoiler_text;
/** @var string */
private $visibility;
/** @var Attachment[] */ /** @var Attachment[] */
private $media_attachments = []; private array $media_attachments = [];
/** @var Mention[] */ /** @var Mention[] */
private $mentions = []; private array $mentions = [];
/** @var Tag[] */ /** @var Tag[] */
private $tags = []; private array $tags = [];
/** @var Card */ private Card $card;
private $card; private Application $application;
/** @var Application */ private string $language;
private $application; private bool $pinned;
/** @var string */ private Status $reblog;
private $language; private Poll $poll;
/** @var boolean */
private $pinned;
/** @var Status */
private $reblog;
/** @var Poll */
private $poll;
/** /**
* @return string * @return string

View file

@ -6,14 +6,10 @@ namespace App\SocialEntity;
class Tag class Tag
{ {
/** @var string */ private string $name;
private $name; private string $url;
/** @var string */ private array $history = [];
private $url; private Status $status;
/** @var array */
private $history = [];
/** @var Status */
private $status;
/** /**
* @return string * @return string

View file

@ -2,33 +2,6 @@
"craue/formflow-bundle": { "craue/formflow-bundle": {
"version": "3.7.0" "version": "3.7.0"
}, },
"doctrine/doctrine-bundle": {
"version": "2.12",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "2.12",
"ref": "7b1b0b637b337f6beb895589948cd119da705524"
},
"files": [
"./config/packages/doctrine.yaml",
"./src/Entity/.gitignore",
"./src/Repository/.gitignore"
]
},
"doctrine/doctrine-migrations-bundle": {
"version": "3.3",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "3.1",
"ref": "1d01ec03c6ecbd67c3375c5478c9a423ae5d6a33"
},
"files": [
"./config/packages/doctrine_migrations.yaml",
"./migrations/.gitignore"
]
},
"friendsofsymfony/jsrouting-bundle": { "friendsofsymfony/jsrouting-bundle": {
"version": "3.5", "version": "3.5",
"recipe": { "recipe": {