mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-30 08:01:07 -05:00
* Complete PHPStan Level 6 Fix https://github.com/FreshRSS/FreshRSS/issues/4112 And initiate PHPStan Level 7 * PHPStan Level 6 for tests * Use phpstan/phpstan-phpunit * Update to PHPStan version 1.10 * Fix mixed bug * Fix mixed return bug * Fix paginator bug * Fix FreshRSS_UserConfiguration * A couple more Minz_Configuration bug fixes * A few trivial PHPStan Level 7 fixes * A few more simple PHPStan Level 7 * More files passing PHPStan Level 7 Add interface to replace removed class from https://github.com/FreshRSS/FreshRSS/pull/5251 * A few more PHPStan Level 7 preparations * A few last details
265 lines
7.4 KiB
PHP
265 lines
7.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Controller to handle actions relative to categories.
|
|
* User needs to be connected.
|
|
*/
|
|
class FreshRSS_category_Controller extends FreshRSS_ActionController {
|
|
/**
|
|
* This action is called before every other action in that class. It is
|
|
* the common boiler plate for every action. It is triggered by the
|
|
* underlying framework.
|
|
*
|
|
*/
|
|
public function firstAction(): void {
|
|
if (!FreshRSS_Auth::hasAccess()) {
|
|
Minz_Error::error(403);
|
|
}
|
|
|
|
$catDAO = FreshRSS_Factory::createCategoryDao();
|
|
$catDAO->checkDefault();
|
|
}
|
|
|
|
/**
|
|
* This action creates a new category.
|
|
*
|
|
* Request parameter is:
|
|
* - new-category
|
|
*/
|
|
public function createAction() :void {
|
|
$catDAO = FreshRSS_Factory::createCategoryDao();
|
|
$tagDAO = FreshRSS_Factory::createTagDao();
|
|
|
|
$url_redirect = array('c' => 'subscription', 'a' => 'add');
|
|
|
|
$limits = FreshRSS_Context::$system_conf->limits;
|
|
$this->view->categories = $catDAO->listCategories(false) ?: [];
|
|
|
|
if (count($this->view->categories) >= $limits['max_categories']) {
|
|
Minz_Request::bad(_t('feedback.sub.category.over_max', $limits['max_categories']), $url_redirect);
|
|
}
|
|
|
|
if (Minz_Request::isPost()) {
|
|
invalidateHttpCache();
|
|
|
|
$cat_name = Minz_Request::paramString('new-category');
|
|
if ($cat_name === '') {
|
|
Minz_Request::bad(_t('feedback.sub.category.no_name'), $url_redirect);
|
|
}
|
|
|
|
$cat = new FreshRSS_Category($cat_name);
|
|
|
|
if ($catDAO->searchByName($cat->name()) != null) {
|
|
Minz_Request::bad(_t('feedback.sub.category.name_exists'), $url_redirect);
|
|
}
|
|
|
|
if ($tagDAO->searchByName($cat->name()) != null) {
|
|
Minz_Request::bad(_t('feedback.tag.name_exists', $cat->name()), $url_redirect);
|
|
}
|
|
|
|
$opml_url = checkUrl(Minz_Request::paramString('opml_url'));
|
|
if ($opml_url != '') {
|
|
$cat->_kind(FreshRSS_Category::KIND_DYNAMIC_OPML);
|
|
$cat->_attributes('opml_url', $opml_url);
|
|
} else {
|
|
$cat->_kind(FreshRSS_Category::KIND_NORMAL);
|
|
$cat->_attributes('opml_url', null);
|
|
}
|
|
|
|
if ($catDAO->addCategoryObject($cat)) {
|
|
$url_redirect['a'] = 'index';
|
|
Minz_Request::good(_t('feedback.sub.category.created', $cat->name()), $url_redirect);
|
|
} else {
|
|
Minz_Request::bad(_t('feedback.sub.category.error'), $url_redirect);
|
|
}
|
|
}
|
|
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
|
|
/**
|
|
* This action updates the given category.
|
|
*
|
|
* Request parameters are:
|
|
* - id
|
|
* - name
|
|
*/
|
|
public function updateAction(): void {
|
|
$catDAO = FreshRSS_Factory::createCategoryDao();
|
|
$url_redirect = array('c' => 'subscription', 'a' => 'index');
|
|
|
|
if (Minz_Request::isPost()) {
|
|
invalidateHttpCache();
|
|
|
|
$id = Minz_Request::paramInt('id');
|
|
$name = Minz_Request::paramString('name');
|
|
if (strlen($name) <= 0) {
|
|
Minz_Request::bad(_t('feedback.sub.category.no_name'), $url_redirect);
|
|
}
|
|
|
|
if ($catDAO->searchById($id) == null) {
|
|
Minz_Request::bad(_t('feedback.sub.category.not_exist'), $url_redirect);
|
|
}
|
|
|
|
$cat = new FreshRSS_Category($name);
|
|
$values = array(
|
|
'name' => $cat->name(),
|
|
);
|
|
|
|
if ($catDAO->updateCategory($id, $values)) {
|
|
Minz_Request::good(_t('feedback.sub.category.updated'), $url_redirect);
|
|
} else {
|
|
Minz_Request::bad(_t('feedback.sub.category.error'), $url_redirect);
|
|
}
|
|
}
|
|
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
|
|
/**
|
|
* This action deletes a category.
|
|
* Feeds in the given category are moved in the default category.
|
|
* Related user queries are deleted too.
|
|
*
|
|
* Request parameter is:
|
|
* - id (of a category)
|
|
*/
|
|
public function deleteAction(): void {
|
|
$feedDAO = FreshRSS_Factory::createFeedDao();
|
|
$catDAO = FreshRSS_Factory::createCategoryDao();
|
|
$url_redirect = array('c' => 'subscription', 'a' => 'index');
|
|
|
|
if (Minz_Request::isPost()) {
|
|
invalidateHttpCache();
|
|
|
|
$id = Minz_Request::paramInt('id');
|
|
if ($id === 0) {
|
|
Minz_Request::bad(_t('feedback.sub.category.no_id'), $url_redirect);
|
|
}
|
|
|
|
if ($id === FreshRSS_CategoryDAO::DEFAULTCATEGORYID) {
|
|
Minz_Request::bad(_t('feedback.sub.category.not_delete_default'), $url_redirect);
|
|
}
|
|
|
|
if ($feedDAO->changeCategory($id, FreshRSS_CategoryDAO::DEFAULTCATEGORYID) === false) {
|
|
Minz_Request::bad(_t('feedback.sub.category.error'), $url_redirect);
|
|
}
|
|
|
|
if ($catDAO->deleteCategory($id) === false) {
|
|
Minz_Request::bad(_t('feedback.sub.category.error'), $url_redirect);
|
|
}
|
|
|
|
// Remove related queries.
|
|
FreshRSS_Context::$user_conf->queries = remove_query_by_get(
|
|
'c_' . $id, FreshRSS_Context::$user_conf->queries);
|
|
FreshRSS_Context::$user_conf->save();
|
|
|
|
Minz_Request::good(_t('feedback.sub.category.deleted'), $url_redirect);
|
|
}
|
|
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
|
|
/**
|
|
* This action deletes all the feeds relative to a given category.
|
|
* Feed-related queries are deleted.
|
|
*
|
|
* Request parameter is:
|
|
* - id (of a category)
|
|
* - muted (truthy to remove only muted feeds, or falsy otherwise)
|
|
*/
|
|
public function emptyAction(): void {
|
|
$feedDAO = FreshRSS_Factory::createFeedDao();
|
|
$url_redirect = array('c' => 'subscription', 'a' => 'index');
|
|
|
|
if (Minz_Request::isPost()) {
|
|
invalidateHttpCache();
|
|
|
|
$id = Minz_Request::paramInt('id');
|
|
if ($id === 0) {
|
|
Minz_Request::bad(_t('feedback.sub.category.no_id'), $url_redirect);
|
|
}
|
|
|
|
$muted = Minz_Request::paramTernary('muted');
|
|
|
|
// List feeds to remove then related user queries.
|
|
$feeds = $feedDAO->listByCategory($id, $muted);
|
|
|
|
if ($feedDAO->deleteFeedByCategory($id, $muted)) {
|
|
// TODO: Delete old favicons
|
|
|
|
// Remove related queries
|
|
foreach ($feeds as $feed) {
|
|
FreshRSS_Context::$user_conf->queries = remove_query_by_get(
|
|
'f_' . $feed->id(), FreshRSS_Context::$user_conf->queries);
|
|
}
|
|
FreshRSS_Context::$user_conf->save();
|
|
|
|
Minz_Request::good(_t('feedback.sub.category.emptied'), $url_redirect);
|
|
} else {
|
|
Minz_Request::bad(_t('feedback.sub.category.error'), $url_redirect);
|
|
}
|
|
}
|
|
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
|
|
/**
|
|
* Request parameter is:
|
|
* - id (of a category)
|
|
*/
|
|
public function refreshOpmlAction(): void {
|
|
$catDAO = FreshRSS_Factory::createCategoryDao();
|
|
$url_redirect = array('c' => 'subscription', 'a' => 'index');
|
|
|
|
if (Minz_Request::isPost()) {
|
|
invalidateHttpCache();
|
|
|
|
$id = Minz_Request::paramInt('id');
|
|
if ($id === 0) {
|
|
Minz_Request::bad(_t('feedback.sub.category.no_id'), $url_redirect);
|
|
}
|
|
|
|
$category = $catDAO->searchById($id);
|
|
if ($category === null) {
|
|
Minz_Request::bad(_t('feedback.sub.category.not_exist'), $url_redirect);
|
|
}
|
|
|
|
invalidateHttpCache();
|
|
|
|
$ok = $category->refreshDynamicOpml();
|
|
|
|
if (Minz_Request::paramBoolean('ajax')) {
|
|
Minz_Request::setGoodNotification(_t('feedback.sub.category.updated'));
|
|
$this->view->_layout(null);
|
|
} else {
|
|
if ($ok) {
|
|
Minz_Request::good(_t('feedback.sub.category.updated'), $url_redirect);
|
|
} else {
|
|
Minz_Request::bad(_t('feedback.sub.category.error'), $url_redirect);
|
|
}
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
}
|
|
}
|
|
|
|
/** @return array<string,int> */
|
|
public static function refreshDynamicOpmls(): array {
|
|
$successes = 0;
|
|
$errors = 0;
|
|
$catDAO = FreshRSS_Factory::createCategoryDao();
|
|
$categories = $catDAO->listCategoriesOrderUpdate(FreshRSS_Context::$user_conf->dynamic_opml_ttl_default ?? 86400);
|
|
foreach ($categories as $category) {
|
|
if ($category->refreshDynamicOpml()) {
|
|
$successes++;
|
|
} else {
|
|
$errors++;
|
|
}
|
|
}
|
|
return [
|
|
'successes' => $successes,
|
|
'errors' => $errors,
|
|
];
|
|
}
|
|
}
|