summaryrefslogtreecommitdiff
path: root/classes/rpc.php
AgeCommit message (Collapse)Author
2021-02-23drop errors.php and simplify error handlingAndrew Dolgov
2021-02-23cleanup some defined-stuffAndrew Dolgov
2021-02-22migrate the rest into Config::Andrew Dolgov
2021-02-22wip: initial for config objectAndrew Dolgov
2021-02-21move published OPML endpoint to public.phpAndrew Dolgov
2021-02-21for the most part, deal with filter rules UIAndrew Dolgov
2021-02-20rpc: disable completeLabels for nowAndrew Dolgov
2021-02-19Fix an undefined array key warning in 'catchupFeed'.wn_
2021-02-19 * switch to xhr.post() almost everywhereAndrew Dolgov
* call App.handlerpcjson() automatically on json request (if possible) * show net/log indicators in prefs
2021-02-18profiles: use client dialog; move related methods to pref-prefsAndrew Dolgov
2021-02-17don't show E_USER_DEPRECATED on the frontpageAndrew Dolgov
2021-02-16remove backend helper and move its only function to rpc for the time beingAndrew Dolgov
2021-02-15prefs: unify namingAndrew Dolgov
2021-02-15counters: unify namingAndrew Dolgov
2021-02-15article: unify namingAndrew Dolgov
2021-02-15feeds: unify namingAndrew Dolgov
2021-02-15subscribe to feed: use client dialogAndrew Dolgov
2021-02-15render enclosures on the clientAndrew Dolgov
2021-02-13fail better if requested article URL is blankAndrew Dolgov
2021-02-12RIP tag cloud: last of the vanilla popup dialog systemAndrew Dolgov
2021-02-11disable themes in safe mode; rework safe mode warning/login promptAndrew Dolgov
2021-02-08front page log checker: filter out idiotic GD warningAndrew Dolgov
2021-02-08move some old-style handlers to new callback onesAndrew Dolgov
2021-02-06fix several warnings reported by phpstanAndrew Dolgov
2021-02-06more php8 fixes mostly related to loginAndrew Dolgov
2021-02-05initial WIP for php8; bump php version requirement to 7.0Andrew Dolgov
2021-01-17Archive cleanup:Andrew Dolgov
- remove code to manually archive/unarchive articles - remove ttrss_archived_feeds/orig_feed_id handling - the whole thing was implemented for this data to be kept indefinitely; it doesn't make a lot of sense to deal with this stuff now that it is expired after one month anyway (same reasons as feed browser being removed - privacy) - remove "originally from"-related stuff because of the above - also remove unused remaining frontend/backend code related to feed browser (rip)
2020-09-29exclude E_USER_NOTICE from recent events iconAndrew Dolgov
2020-09-23move timestamp-related stuff to a separate classAndrew Dolgov
2020-09-22fix updater never scheduling feeds for update if they never been updated ↵Andrew Dolgov
before while having default update interval set
2020-09-22use self:: in some places to invoke static methods from the same classAndrew Dolgov
2020-09-22remove a lot of stuff from global context (functions.php), add a few helper ↵Andrew Dolgov
classes instead
2020-09-19update URL pointing to version.jsonAndrew Dolgov
2020-09-17don't try to update manually disabled feeds even if they haven't been ↵Andrew Dolgov
updated before or are marked for a manual update
2020-09-15- enable CSRF support earlierAndrew Dolgov
- remove rpc/sanityCheck from CSRF-excluded calls
2020-09-14- fix multiple vulnerabilities in af_proxy_httpAndrew Dolgov
- fix vulnerability in rewrite_relative_url() which prevented some URLs from being properly absolutized - fetch_file_contents: validate all URLs before requesting them - validate URLs: explicitly whitelist http and https scheme, forbid everything else - DiskCache/cached_url: only serve whitelisted content types (images, video) - simplify filename/URL handling code, remove and consolidate some less-used functions
2019-12-20get_version: fix commit/timestamp lost on subsequent invocations because of ↵Andrew Dolgov
misbehaving caching
2019-12-05versioning changesAndrew Dolgov
- remove VERSION_STATIC - https://community.tt-rss.org/t/versioning-changes-for-trunk/2974 - report git commit/timestamp properly by invoking git instead of trying to parse .git/HEAD etc - remove git-related global constants used when checking for updates
2019-08-16af_readability: add missing fileAndrew Dolgov
2019-08-01change version.json endpoint URLAndrew Dolgov
2019-03-21update: add option to send digestsAndrew Dolgov
2019-03-06remove feedbrowser (other feeds)Andrew Dolgov
2019-03-06archived feeds: expire old entries (schema bump)Andrew Dolgov
2019-01-03rpc, catchupfeed: return counters immediately so that frontend can figure ↵Andrew Dolgov
out next unread feed correctly
2018-12-16rpc/checkforupdates: restrict to administrative access levelAndrew Dolgov
2018-12-16rework git update checking to be initiated by frontend, outside of runtime ↵Andrew Dolgov
info output
2018-12-15rpc/getAllCounters: return seqAndrew Dolgov
2018-12-12requestCounters: remove cooldownAndrew Dolgov
2018-12-06force cast profile id to integer when assigning to session variableAndrew Dolgov
2018-01-14rpc: addfeed: gets login and pass only if need_auth is checked.Colin Vidal
Because of browser form auto-completion, the hidden field login and password can be automatically filled when adding a feed. It would enable feed authentication even if the user doesn't click on need_auth button.