mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-14 15:31:13 -05:00
* Housekeeping lib_rss.php `lib_rss.php` had become much too large, especially after https://github.com/FreshRSS/FreshRSS/pull/7924 Moved most functions to other places. Mostly no change of code otherwise (see comments). * Extension: composer run-script phpstan-third-party
177 lines
7.2 KiB
PHTML
177 lines
7.2 KiB
PHTML
<?php
|
|
declare(strict_types=1);
|
|
/** @var FreshRSS_View $this */
|
|
if (!$this->disable_aside) {
|
|
$this->partial('aside_configure');
|
|
}
|
|
?>
|
|
|
|
<main class="post">
|
|
<form class="crypto-form" method="post" action="<?= _url('user', 'profile') ?>" data-auto-leave-validation="1">
|
|
<input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
|
|
<h1><?= _t('conf.profile') ?></h1>
|
|
|
|
<div class="form-group">
|
|
<label class="group-name" for="current_user"><?= _t('conf.user.current') ?></label>
|
|
<div class="group-controls">
|
|
<input id="current_user" type="text" disabled="disabled" value="<?= Minz_User::name() ?>" />
|
|
</div>
|
|
</div>
|
|
|
|
<?php if (FreshRSS_Auth::hasAccess('admin')) { ?>
|
|
<div class="form-group">
|
|
<div class="group-controls">
|
|
<label class="checkbox" for="is_admin">
|
|
<input type="checkbox" id="is_admin" disabled="disabled" checked="checked" />
|
|
<?= _t('conf.user.is_admin') ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<div class="form-group">
|
|
<label class="group-name" for="email"><?= _t('conf.profile.email') ?></label>
|
|
<div class="group-controls">
|
|
<!-- Workaround for Chrome, related to change password section -->
|
|
<input id="ignore" class="ignore-auto-complete" type="text" tabindex="-1" aria-hidden="true" data-no-leave-validation="1" />
|
|
<input id="email" name="email" type="email" value="<?= FreshRSS_Context::userConf()->mail_login ?>" autocomplete="new-password" />
|
|
</div>
|
|
</div>
|
|
|
|
<?php if (FreshRSS_Auth::accessNeedsAction()) { ?>
|
|
<div class="form-group">
|
|
<label class="group-name" for="token"><?= _t('admin.auth.token') ?></label>
|
|
<?php $token = FreshRSS_Context::userConf()->token; ?>
|
|
<div class="group-controls">
|
|
<input id="token" name="token" type="text" value="<?= $token ?>" placeholder="<?= _t('gen.short.blank_to_disable') ?>" autocomplete="new-password" />
|
|
<p class="help"><?= _i('help') ?> <?= _t('admin.auth.token_help') ?></p>
|
|
<kbd><?= Minz_Url::display(['a' => 'rss', 'params' => ['user' => Minz_User::name() ?? '',
|
|
'token' => $token, 'hours' => FreshRSS_Context::userConf()->since_hours_posts_per_rss]], 'html', true) ?></kbd>
|
|
<p class="help"><?= _i('help') ?> <?= _t('conf.query.help') ?></a></p>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php
|
|
$open = Minz_Session::paramBoolean('open');
|
|
Minz_Session::_param('open', false);
|
|
?>
|
|
|
|
<details class="form-advanced" data-challenge-if-open="1"<?= $open ? ' open="open"' : ''?>>
|
|
<summary class="form-advanced-title"><?= _t('conf.profile.change_password') ?></summary>
|
|
<div class="form-group">
|
|
<label class="group-name" for="currentPasswordPlain"><?= _t('conf.profile.current_password') ?></label>
|
|
<div class="group-controls">
|
|
<input type="hidden" id="username" value="<?= Minz_User::name() ?? '' ?>" />
|
|
<div class="stick">
|
|
<input type="password" id="currentPasswordPlain" class="passwordPlain" data-required-if-open="1" data-no-leave-validation="1" />
|
|
<button type="button" class="btn toggle-password"><?= _i('key') ?></button>
|
|
</div>
|
|
|
|
<noscript>
|
|
<br />
|
|
<strong><?= _t('gen.js.should_be_activated') ?></strong>
|
|
</noscript>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="newPasswordPlain"><?= _t('conf.profile.new_password') ?></label>
|
|
<div class="group-controls">
|
|
<div class="stick">
|
|
<input type="password" id="newPasswordPlain" name="newPasswordPlain" autocomplete="new-password" pattern=".{7,}" data-required-if-open="1" />
|
|
<button type="button" class="btn toggle-password"><?= _i('key') ?></button>
|
|
</div>
|
|
<p class="help">
|
|
<?= _i('help') ?> <?= _t('conf.profile.password_format') ?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="group-name" for="confirmPasswordPlain"><?= _t('conf.profile.confirm_new_password') ?></label>
|
|
<div class="group-controls">
|
|
<div class="stick">
|
|
<input type="password" id="confirmPasswordPlain" name="confirmPasswordPlain" autocomplete="new-password" pattern=".{7,}" data-required-if-open="1" />
|
|
<button type="button" class="btn toggle-password"><?= _i('key') ?></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</details>
|
|
|
|
<div class="form-group form-actions">
|
|
<div class="group-controls">
|
|
<button type="submit" class="btn btn-important"><?= _t('gen.action.submit') ?></button>
|
|
<button type="reset" class="btn"><?= _t('gen.action.cancel') ?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
<h2><?= _t('conf.profile.api') ?></h2>
|
|
<?php if (FreshRSS_Context::systemConf()->api_enabled) { ?>
|
|
<form method="post" action="<?= _url('api', 'updatePassword') ?>">
|
|
<input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
|
|
|
|
<div class="form-group">
|
|
<label class="group-name" for="apiPasswordPlain"><?= _t('conf.profile.password_api') ?></label>
|
|
<div class="group-controls">
|
|
<div class="stick">
|
|
<input type="password" id="apiPasswordPlain" name="apiPasswordPlain" autocomplete="new-password"
|
|
<?php if (FreshRSS_Context::userConf()->apiPasswordHash != '') {?>
|
|
placeholder="<?= _t('conf.profile.api.api_set') ?>"
|
|
<?php } else {?>
|
|
placeholder="<?= _t('conf.profile.api.api_not_set') ?>"
|
|
<?php } ?>
|
|
pattern=".{7,}" <?= FreshRSS_password_Util::cryptAvailable() ? '' : 'disabled="disabled" ' ?>/>
|
|
<button type="button" class="btn toggle-password"><?= _i('key') ?></button>
|
|
</div>
|
|
<p class="help"><?= _i('help') ?> <?= _t('conf.profile.api.check_link', Minz_Url::display('/api/', 'html', true)) ?></p>
|
|
<p class="help"><?= _i('help') ?> <?= _t('conf.profile.api.documentation_link') ?></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-actions">
|
|
<div class="group-controls">
|
|
<button type="submit" class="btn btn-important"><?= _t('gen.action.submit') ?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<?php } else { ?>
|
|
<div class="form-group">
|
|
<label class="group-name"></label>
|
|
<div class="group-controls">
|
|
<?= _t('conf.profile.api.disabled') ?>
|
|
<p class="help"><?= _i('help') ?> <?= _t('conf.profile.api.help') ?></p>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if (!FreshRSS_Auth::hasAccess('admin')) { ?>
|
|
<h2><?= _t('conf.profile.delete') ?></h2>
|
|
|
|
<form class="crypto-form" method="post" action="<?= _url('user', 'delete') ?>">
|
|
<input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
|
|
|
|
<p class="alert alert-warn"><span class="alert-head"><?= _t('gen.short.attention') ?></span> <?= _t('conf.profile.delete.warn') ?></p>
|
|
|
|
<div class="form-group">
|
|
<label class="group-name" for="passwordPlain"><?= _t('gen.auth.password') ?></label>
|
|
<div class="group-controls">
|
|
<div class="stick">
|
|
<input type="password" id="passwordPlain" class="passwordPlain" required="required" />
|
|
<button type="button" class="btn toggle-password"><?= _i('key') ?></button>
|
|
</div>
|
|
<input type="hidden" id="challenge" name="challenge" /><br />
|
|
<noscript><strong><?= _t('gen.js.should_be_activated') ?></strong></noscript>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-actions">
|
|
<div class="group-controls">
|
|
<input type="hidden" name="username" id="username" value="<?= Minz_User::name() ?>" />
|
|
<button type="submit" class="btn btn-attention confirm"><?= _t('gen.action.remove') ?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<?php } ?>
|
|
</main>
|