2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2020-01-16 19:13:12 +00:00
|
|
|
use function \MicroHTML\emptyHTML;
|
|
|
|
use function \MicroHTML\rawHTML;
|
|
|
|
use function \MicroHTML\TABLE;
|
|
|
|
use function \MicroHTML\TBODY;
|
|
|
|
use function \MicroHTML\TFOOT;
|
|
|
|
use function \MicroHTML\TR;
|
|
|
|
use function \MicroHTML\TH;
|
|
|
|
use function \MicroHTML\TD;
|
|
|
|
use function \MicroHTML\LABEL;
|
|
|
|
use function \MicroHTML\INPUT;
|
|
|
|
use function \MicroHTML\SMALL;
|
|
|
|
use function \MicroHTML\A;
|
|
|
|
use function \MicroHTML\BR;
|
|
|
|
use function \MicroHTML\P;
|
|
|
|
use function \MicroHTML\SELECT;
|
|
|
|
use function \MicroHTML\OPTION;
|
2007-07-16 19:47:25 +00:00
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
class UserPageTheme extends Themelet
|
|
|
|
{
|
|
|
|
public function display_login_page(Page $page)
|
|
|
|
{
|
|
|
|
$page->set_title("Login");
|
|
|
|
$page->set_heading("Login");
|
|
|
|
$page->add_block(new NavBlock());
|
|
|
|
$page->add_block(new Block(
|
|
|
|
"Login There",
|
|
|
|
"There should be a login box to the left"
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2019-12-01 00:46:54 +00:00
|
|
|
public function display_user_list(Page $page, $table, $paginator)
|
2019-05-28 16:59:38 +00:00
|
|
|
{
|
|
|
|
$page->set_title("User List");
|
|
|
|
$page->set_heading("User List");
|
|
|
|
$page->add_block(new NavBlock());
|
2019-12-01 00:46:54 +00:00
|
|
|
$page->add_block(new Block("Users", $table . $paginator));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function display_user_links(Page $page, User $user, $parts)
|
|
|
|
{
|
|
|
|
# $page->add_block(new Block("User Links", join(", ", $parts), "main", 10));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function display_user_block(Page $page, User $user, $parts)
|
|
|
|
{
|
2020-01-12 15:26:29 +00:00
|
|
|
$html = emptyHTML('Logged in as ', $user->name);
|
2019-05-28 16:59:38 +00:00
|
|
|
foreach ($parts as $part) {
|
2020-01-12 15:26:29 +00:00
|
|
|
$html->appendChild(BR());
|
|
|
|
$html->appendChild(A(["href"=>$part["link"]], $part["name"]));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2020-06-24 14:40:25 +00:00
|
|
|
$b = new Block("User Links", (string)$html, "left", 90);
|
|
|
|
$b->is_content = false;
|
|
|
|
$page->add_block($b);
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function display_signup_page(Page $page)
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
$tac = $config->get_string("login_tac", "");
|
|
|
|
|
|
|
|
if ($config->get_bool("login_tac_bbcode")) {
|
|
|
|
$tfe = new TextFormattingEvent($tac);
|
|
|
|
send_event($tfe);
|
|
|
|
$tac = $tfe->formatted;
|
|
|
|
}
|
|
|
|
|
2020-01-26 13:25:02 +00:00
|
|
|
$form = SHM_SIMPLE_FORM(
|
2020-01-30 10:31:11 +00:00
|
|
|
"user_admin/create",
|
2020-01-12 15:26:29 +00:00
|
|
|
TABLE(
|
|
|
|
["class"=>"form"],
|
|
|
|
TBODY(
|
|
|
|
TR(
|
|
|
|
TH("Name"),
|
|
|
|
TD(INPUT(["type"=>'text', "name"=>'name', "required"=>true]))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH("Password"),
|
|
|
|
TD(INPUT(["type"=>'password', "name"=>'pass1', "required"=>true]))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH(rawHTML("Repeat Password")),
|
|
|
|
TD(INPUT(["type"=>'password', "name"=>'pass2', "required"=>true]))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH(rawHTML("Email (Optional)")),
|
|
|
|
TD(INPUT(["type"=>'email', "name"=>'email']))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TD(["colspan"=>"2"], rawHTML(captcha_get_html()))
|
|
|
|
),
|
|
|
|
),
|
|
|
|
TFOOT(
|
2020-01-16 19:13:12 +00:00
|
|
|
TR(TD(["colspan"=>"2"], INPUT(["type"=>"submit", "value"=>"Create Account"])))
|
2020-01-12 15:26:29 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2020-01-12 15:26:29 +00:00
|
|
|
$html = emptyHTML(
|
2020-03-18 17:29:08 +00:00
|
|
|
$tac ? P(rawHTML($tac)) : null,
|
2020-01-12 15:26:29 +00:00
|
|
|
$form
|
|
|
|
);
|
2007-07-16 19:47:25 +00:00
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
$page->set_title("Create Account");
|
|
|
|
$page->set_heading("Create Account");
|
|
|
|
$page->add_block(new NavBlock());
|
2020-01-26 13:19:35 +00:00
|
|
|
$page->add_block(new Block("Signup", (string)$html));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 18:33:51 +00:00
|
|
|
public function display_user_creator()
|
|
|
|
{
|
|
|
|
global $page;
|
|
|
|
|
|
|
|
$form = SHM_SIMPLE_FORM(
|
|
|
|
"user_admin/create_other",
|
|
|
|
TABLE(
|
|
|
|
["class"=>"form"],
|
|
|
|
TBODY(
|
|
|
|
TR(
|
|
|
|
TH("Name"),
|
|
|
|
TD(INPUT(["type"=>'text', "name"=>'name', "required"=>true]))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH("Password"),
|
|
|
|
TD(INPUT(["type"=>'password', "name"=>'pass1', "required"=>true]))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH(rawHTML("Repeat Password")),
|
|
|
|
TD(INPUT(["type"=>'password', "name"=>'pass2', "required"=>true]))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH(rawHTML("Email (Optional)")),
|
|
|
|
TD(INPUT(["type"=>'email', "name"=>'email']))
|
|
|
|
),
|
|
|
|
),
|
|
|
|
TFOOT(
|
|
|
|
TR(TD(["colspan"=>"2"], INPUT(["type"=>"submit", "value"=>"Create Account"])))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$page->add_block(new Block("Create User", (string)$form, "main", 75));
|
|
|
|
}
|
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
public function display_signups_disabled(Page $page)
|
|
|
|
{
|
|
|
|
$page->set_title("Signups Disabled");
|
|
|
|
$page->set_heading("Signups Disabled");
|
|
|
|
$page->add_block(new NavBlock());
|
|
|
|
$page->add_block(new Block(
|
|
|
|
"Signups Disabled",
|
|
|
|
"The board admin has disabled the ability to create new accounts~"
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function display_login_block(Page $page)
|
|
|
|
{
|
2019-11-28 21:32:18 +00:00
|
|
|
global $config, $user;
|
2020-01-26 13:25:02 +00:00
|
|
|
$form = SHM_SIMPLE_FORM(
|
2020-01-30 10:31:11 +00:00
|
|
|
"user_admin/login",
|
2020-01-12 15:26:29 +00:00
|
|
|
TABLE(
|
|
|
|
["style"=>"width: 100%", "class"=>"form"],
|
|
|
|
TBODY(
|
|
|
|
TR(
|
|
|
|
TH(LABEL(["for"=>"user"], "Name")),
|
|
|
|
TD(INPUT(["id"=>"user", "type"=>"text", "name"=>"user", "autocomplete"=>"username"]))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH(LABEL(["for"=>"pass"], "Password")),
|
|
|
|
TD(INPUT(["id"=>"pass", "type"=>"password", "name"=>"pass", "autocomplete"=>"current-password"]))
|
|
|
|
)
|
|
|
|
),
|
|
|
|
TFOOT(
|
|
|
|
TR(TD(["colspan"=>"2"], INPUT(["type"=>"submit", "value"=>"Log In"])))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$html = emptyHTML();
|
|
|
|
$html->appendChild($form);
|
2019-11-28 21:32:18 +00:00
|
|
|
if ($config->get_bool("login_signup_enabled") && $user->can(Permissions::CREATE_USER)) {
|
2020-01-12 15:26:29 +00:00
|
|
|
$html->appendChild(SMALL(A(["href"=>make_link("user_admin/create")], "Create Account")));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2020-01-12 15:26:29 +00:00
|
|
|
|
2020-01-26 13:19:35 +00:00
|
|
|
$page->add_block(new Block("Login", (string)$html, "left", 90));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
2020-01-16 19:13:12 +00:00
|
|
|
private function _ip_list(string $name, array $ips)
|
2019-05-28 16:59:38 +00:00
|
|
|
{
|
2020-01-16 19:13:12 +00:00
|
|
|
$td = TD("$name: ");
|
2019-05-28 16:59:38 +00:00
|
|
|
$n = 0;
|
2020-01-16 19:13:12 +00:00
|
|
|
foreach ($ips as $ip => $count) {
|
|
|
|
$td->appendChild(BR());
|
|
|
|
$td->appendChild("$ip ($count)");
|
2019-05-28 16:59:38 +00:00
|
|
|
if (++$n >= 20) {
|
2020-01-16 19:13:12 +00:00
|
|
|
$td->appendChild(BR());
|
|
|
|
$td->appendChild("...");
|
2019-05-28 16:59:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-01-16 19:13:12 +00:00
|
|
|
return $td;
|
|
|
|
}
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2020-01-16 19:13:12 +00:00
|
|
|
public function display_ip_list(Page $page, array $uploads, array $comments, array $events)
|
|
|
|
{
|
|
|
|
$html = TABLE(
|
|
|
|
["id"=>"ip-history"],
|
|
|
|
TR(
|
|
|
|
$this->_ip_list("Uploaded from", $uploads),
|
|
|
|
$this->_ip_list("Commented from", $comments),
|
|
|
|
$this->_ip_list("Logged Events", $events)
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TD(["colspan"=>"3"], "(Most recent at top)")
|
|
|
|
)
|
|
|
|
);
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2020-01-26 13:19:35 +00:00
|
|
|
$page->add_block(new Block("IPs", (string)$html, "main", 70));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function display_user_page(User $duser, $stats)
|
|
|
|
{
|
2019-10-02 10:23:57 +00:00
|
|
|
global $page;
|
2019-05-28 16:59:38 +00:00
|
|
|
assert(is_array($stats));
|
|
|
|
$stats[] = 'User ID: '.$duser->id;
|
|
|
|
|
|
|
|
$page->set_title(html_escape($duser->name)."'s Page");
|
|
|
|
$page->set_heading(html_escape($duser->name)."'s Page");
|
|
|
|
$page->add_block(new NavBlock());
|
|
|
|
$page->add_block(new Block("Stats", join("<br>", $stats), "main", 10));
|
|
|
|
}
|
|
|
|
|
2020-10-26 15:13:28 +00:00
|
|
|
|
|
|
|
public function build_operations(User $duser, UserOperationsBuildingEvent $event): string
|
2019-05-28 16:59:38 +00:00
|
|
|
{
|
|
|
|
global $config, $user;
|
2020-01-16 19:13:12 +00:00
|
|
|
$html = emptyHTML();
|
2019-10-02 10:23:57 +00:00
|
|
|
|
2020-01-16 19:13:12 +00:00
|
|
|
// just a fool-admin protection so they dont mess around with anon users.
|
|
|
|
if ($duser->id != $config->get_int('anon_id')) {
|
2019-07-09 14:10:21 +00:00
|
|
|
if ($user->can(Permissions::EDIT_USER_NAME)) {
|
2020-01-16 19:13:12 +00:00
|
|
|
$html->appendChild(SHM_USER_FORM(
|
|
|
|
$duser,
|
|
|
|
"user_admin/change_name",
|
|
|
|
"Change Name",
|
|
|
|
TBODY(TR(
|
|
|
|
TH("New name"),
|
|
|
|
TD(INPUT(["type"=>'text', "name"=>'name', "value"=>$duser->name]))
|
|
|
|
)),
|
|
|
|
"Set"
|
|
|
|
));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2015-07-12 21:14:57 +00:00
|
|
|
|
2020-01-16 19:13:12 +00:00
|
|
|
$html->appendChild(SHM_USER_FORM(
|
|
|
|
$duser,
|
|
|
|
"user_admin/change_pass",
|
|
|
|
"Change Password",
|
|
|
|
TBODY(
|
|
|
|
TR(
|
|
|
|
TH("Password"),
|
|
|
|
TD(INPUT(["type"=>'password', "name"=>'pass1', "autocomplete"=>'new-password']))
|
|
|
|
),
|
|
|
|
TR(
|
|
|
|
TH("Repeat Password"),
|
|
|
|
TD(INPUT(["type"=>'password', "name"=>'pass2', "autocomplete"=>'new-password']))
|
|
|
|
),
|
|
|
|
),
|
|
|
|
"Set"
|
|
|
|
));
|
2012-01-22 19:14:35 +00:00
|
|
|
|
2020-01-16 19:13:12 +00:00
|
|
|
$html->appendChild(SHM_USER_FORM(
|
|
|
|
$duser,
|
|
|
|
"user_admin/change_email",
|
|
|
|
"Change Email",
|
|
|
|
TBODY(TR(
|
|
|
|
TH("Address"),
|
|
|
|
TD(INPUT(["type"=>'text', "name"=>'address', "value"=>$duser->email, "autocomplete"=>'email', "inputmode"=>'email']))
|
|
|
|
)),
|
|
|
|
"Set"
|
|
|
|
));
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2019-07-09 14:10:21 +00:00
|
|
|
if ($user->can(Permissions::EDIT_USER_CLASS)) {
|
2019-05-28 16:59:38 +00:00
|
|
|
global $_shm_user_classes;
|
2020-01-16 19:13:12 +00:00
|
|
|
$select = SELECT(["name"=>"class"]);
|
2019-05-28 16:59:38 +00:00
|
|
|
foreach ($_shm_user_classes as $name => $values) {
|
2020-01-16 19:13:12 +00:00
|
|
|
$select->appendChild(
|
|
|
|
OPTION(["value"=>$name, "selected"=>$name == $duser->class->name], ucwords($name))
|
|
|
|
);
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2020-01-16 19:13:12 +00:00
|
|
|
$html->appendChild(SHM_USER_FORM(
|
|
|
|
$duser,
|
|
|
|
"user_admin/change_class",
|
|
|
|
"Change Class",
|
|
|
|
TBODY(TR(TD($select))),
|
|
|
|
"Set"
|
|
|
|
));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2012-03-31 18:25:27 +00:00
|
|
|
|
2019-07-09 14:10:21 +00:00
|
|
|
if ($user->can(Permissions::DELETE_USER)) {
|
2020-01-16 19:13:12 +00:00
|
|
|
$html->appendChild(SHM_USER_FORM(
|
|
|
|
$duser,
|
|
|
|
"user_admin/delete_user",
|
|
|
|
"Delete User",
|
|
|
|
TBODY(
|
2020-02-01 11:58:42 +00:00
|
|
|
TR(TD(LABEL(INPUT(["type"=>'checkbox', "name"=>'with_images']), "Delete images"))),
|
|
|
|
TR(TD(LABEL(INPUT(["type"=>'checkbox', "name"=>'with_comments']), "Delete comments"))),
|
2020-01-16 19:13:12 +00:00
|
|
|
),
|
|
|
|
TFOOT(
|
|
|
|
TR(TD(INPUT(["type"=>'button', "class"=>'shm-unlocker', "data-unlock-sel"=>'.deluser', "value"=>'Unlock']))),
|
|
|
|
TR(TD(INPUT(["type"=>'submit', "class"=>'deluser', "value"=>'Delete User', "disabled"=>'true']))),
|
|
|
|
)
|
|
|
|
));
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2020-01-16 19:13:12 +00:00
|
|
|
|
2019-06-27 13:12:15 +00:00
|
|
|
foreach ($event->parts as $part) {
|
|
|
|
$html .= $part;
|
|
|
|
}
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2020-01-26 13:19:35 +00:00
|
|
|
return (string)$html;
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
2019-08-02 20:05:49 +00:00
|
|
|
|
|
|
|
public function get_help_html()
|
|
|
|
{
|
|
|
|
global $user;
|
2020-10-26 15:14:03 +00:00
|
|
|
$output = emptyHTML(P("Search for posts posted by particular individuals."));
|
2020-01-16 19:13:12 +00:00
|
|
|
$output->appendChild(SHM_COMMAND_EXAMPLE(
|
|
|
|
"poster=username",
|
2020-10-26 15:14:03 +00:00
|
|
|
'Returns posts posted by "username".'
|
2020-01-16 19:13:12 +00:00
|
|
|
));
|
|
|
|
$output->appendChild(SHM_COMMAND_EXAMPLE(
|
|
|
|
"poster_id=123",
|
2020-10-26 15:14:03 +00:00
|
|
|
'Returns posts posted by user 123.'
|
2020-01-16 19:13:12 +00:00
|
|
|
));
|
2019-08-02 20:05:49 +00:00
|
|
|
|
|
|
|
if ($user->can(Permissions::VIEW_IP)) {
|
2020-01-16 19:13:12 +00:00
|
|
|
$output->appendChild(SHM_COMMAND_EXAMPLE(
|
|
|
|
"poster_ip=127.0.0.1",
|
2020-10-26 15:14:03 +00:00
|
|
|
"Returns posts posted from IP 127.0.0.1."
|
2020-01-16 19:13:12 +00:00
|
|
|
));
|
2019-08-02 20:05:49 +00:00
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
2007-07-16 19:47:25 +00:00
|
|
|
}
|