1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
|
set client_min_messages = 'warning';
-- Copyright (C) 2011 LedgerSMB Core Team. Licensed under the GNU General
-- Public License v 2 or at your option any later version.
-- Docstrings already added to this file.
-- README: This module is unlike most others in that it requires most functions
-- to run as superuser. For this reason it is CRITICAL that the following
-- practices are adhered to:
-- 1: When using EXECUTE, all user-supplied information MUST be passed through
-- quote_literal.
-- 2: This file MUST be frequently audited to ensure the above rule is followed
--
-- -CT
BEGIN;
-- work in progress, not documenting yet.
CREATE OR REPLACE FUNCTION admin__add_user_to_role(in_username TEXT, in_role TEXT) returns INT AS $$
declare
stmt TEXT;
a_role name;
a_user name;
t_userid int;
BEGIN
-- Issue the grant
select rolname into a_role from pg_roles
where rolname = lsmb__role(in_role);
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot grant permissions of a non-existant role.';
END IF;
select rolname into a_user from pg_roles
where rolname = in_username;
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot grant permissions to a non-existant database user.';
END IF;
select id into t_userid from users where username = in_username;
if not FOUND then
RAISE EXCEPTION 'Cannot grant permissions to a non-existant application user.';
end if;
stmt := 'GRANT '|| quote_ident(a_role) ||' to '|| quote_ident(in_username);
EXECUTE stmt;
return 1;
END;
$$ language 'plpgsql' security definer;
REVOKE EXECUTE ON FUNCTION admin__add_user_to_role(TEXT, TEXT) FROM PUBLIC;
-- work in progress. Not documenting yet.
CREATE OR REPLACE FUNCTION admin__remove_user_from_role(in_username TEXT, in_role TEXT) returns INT AS $$
declare
stmt TEXT;
a_role name;
a_user name;
BEGIN
-- Issue the grant
select rolname into a_role from pg_roles
where rolname = lsmb__role(in_role);
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot revoke permissions of a non-existant role.';
END IF;
select rolname into a_user from pg_roles
where rolname = in_username;
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot revoke permissions from a non-existant user.';
END IF;
stmt := 'REVOKE '|| quote_ident(a_role) ||' FROM '|| quote_ident(in_username);
EXECUTE stmt;
return 1;
END;
$$ language 'plpgsql' SECURITY DEFINER;
REVOKE EXECUTE ON FUNCTION admin__remove_user_from_role(TEXT, TEXT) FROM PUBLIC;
-- work in progress. Not documenting yet.
CREATE OR REPLACE FUNCTION admin__add_function_to_group(in_func TEXT, in_role TEXT) returns INT AS $$
declare
stmt TEXT;
a_role name;
a_user name;
BEGIN
-- Issue the grant
select rolname into a_role from pg_roles
where rolname = lsmb__role(in_role);
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot grant permissions of a non-existant role.';
END IF;
select rolname into a_user from pg_roles
where rolname = in_username;
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot grant permissions to a non-existant user.';
END IF;
stmt := 'GRANT EXECUTE ON FUNCTION '|| quote_ident(in_func) ||' to '|| quote_ident(a_role);
EXECUTE stmt;
return 1;
END;
$$ language 'plpgsql' SECURITY DEFINER;
REVOKE EXECUTE ON FUNCTION admin__add_function_to_group(TEXT, TEXT) FROM PUBLIC;
-- work in progress, not documenting yet.
CREATE OR REPLACE FUNCTION admin__remove_function_from_group(in_func TEXT, in_role TEXT) returns INT AS $$
declare
stmt TEXT;
a_role name;
a_user name;
BEGIN
-- Issue the grant
select rolname into a_role from pg_roles
where rolname = lsmb__role(in_role);
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot revoke permissions of non-existant role $.';
END IF;
select rolname into a_user from pg_roles where rolname = in_username;
IF NOT FOUND THEN
RAISE EXCEPTION 'Cannot revoke permissions from a non-existant function.';
END IF;
stmt := 'REVOKE EXECUTE ON FUNCTION '|| quote_ident(in_func) ||' FROM '|| quote_ident(a_role);
EXECUTE stmt;
return 1;
END;
$$ language 'plpgsql' SECURITY DEFINER;
REVOKE EXECUTE ON FUNCTION admin__remove_function_from_group(text, text)
FROM public;
DROP FUNCTION IF EXISTS admin__get_user(in_entity_id INT);
CREATE OR REPLACE FUNCTION admin__get_user(in_id INT) returns users as $$
select * from users where id = in_id;
$$ language sql;
COMMENT ON FUNCTION admin__get_user(in_user_id INT) IS
$$ Returns a set of (only one) user specified by the id.$$;
DROP FUNCTION IF EXISTS admin__get_user_by_entity(in_entity_id INT);
CREATE OR REPLACE FUNCTION admin__get_user_by_entity(in_entity_id INT) returns users as $$
select * from users where entity_id = in_entity_id;
$$ language sql;
COMMENT ON FUNCTION admin__get_user_by_entity(in_entity_id INT) IS
$$ Returns a set of (only one) user specified by the entity_id.$$;
DROP FUNCTION IF EXISTS admin__get_roles_for_user(in_entity_id INT);
CREATE OR REPLACE FUNCTION admin__get_roles_for_user(in_user_id INT) returns setof text as $$
declare
u_role record;
a_user users;
begin
select * into a_user from admin__get_user(in_user_id);
-- this function used to be security definer, but that hides the true
-- CURRENT_USER, returning the DEFINER instead of the caller
IF a_user.username != CURRENT_USER THEN
-- super users and application users match the first criterion
-- db owners and db owner group members match the second criterion
IF pg_has_role(lsmb__role('users_manage'), 'USAGE') IS FALSE
AND pg_has_role((select rolname
from pg_database db inner join pg_roles rol
on db.datdba = rol.oid
where db.datname = current_database()),
'USAGE') IS FALSE THEN
RAISE EXCEPTION 'User % querying permissions for %, not authorised', CURRENT_USER, a_user.username;
END IF;
END IF;
FOR u_role IN
select r.rolname
from
pg_roles r,
(select
m.roleid
from
pg_auth_members m, pg_roles b
where
m.member = b.oid
and
b.rolname = a_user.username
) as ar
where
r.oid = ar.roleid
and position(lsmb__role_prefix() in r.rolname) = 1
LOOP
RETURN NEXT lsmb__global_role(u_role.rolname);
END LOOP;
RETURN;
end;
$$ language 'plpgsql';
REVOKE EXECUTE ON FUNCTION admin__get_roles_for_user(in_entity_id INT) from PUBLIC;
COMMENT ON FUNCTION admin__get_roles_for_user(in_user_id INT) IS
$$Returns a set of roles that a user is a part of.
Note: this function can only be used by
- super users
- database admins (setup.pl users):
- database owners
- database users (roles) which were granted the database owner role
- application users:
- application admins (users with 'manage_users' role)
- application users (roles) which query their own roles
$$;
CREATE OR REPLACE FUNCTION admin__get_roles_for_user_by_entity(in_entity_id INT) returns setof text as $$
declare
u_role record;
a_user users;
begin
select * into a_user from admin__get_user_by_entity(in_entity_id);
-- this function used to be security definer, but that hides the true
-- CURRENT_USER, returning the DEFINER instead of the caller
IF a_user.username != CURRENT_USER THEN
-- super users and application users match the first criterion
-- db owners and db owner group members match the second criterion
IF pg_has_role(lsmb__role('users_manage'), 'USAGE') IS FALSE
AND pg_has_role((select rolname
from pg_database db inner join pg_roles rol
on db.datdba = rol.oid
where db.datname = current_database()),
'USAGE') IS FALSE THEN
RAISE EXCEPTION 'User % querying permissions for %, not authorised', CURRENT_USER, a_user.username;
END IF;
END IF;
FOR u_role IN
select r.rolname
from
pg_roles r,
(select
m.roleid
from
pg_auth_members m, pg_roles b
where
m.member = b.oid
and
b.rolname = a_user.username
) as ar
where
r.oid = ar.roleid
and position(lsmb__role_prefix() in r.rolname) = 1
LOOP
RETURN NEXT lsmb__global_role(u_role.rolname);
END LOOP;
RETURN;
end;
$$ language 'plpgsql';
REVOKE EXECUTE ON FUNCTION admin__get_roles_for_user_by_entity(in_entity_id INT) from PUBLIC;
COMMENT ON FUNCTION admin__get_roles_for_user_by_entity(in_entity_id INT) IS
$$Returns a set of roles that a user is a part of.
Note: this function can only be used by
- super users
- database admins (setup.pl users):
- database owners
- database users (roles) which were granted the database owner role
- application users:
- application admins (users with 'manage_users' role)
- application users (roles) which query their own roles
$$;
CREATE OR REPLACE FUNCTION user__check_my_expiration()
returns interval as
$$
DECLARE
outval interval;
BEGIN
SELECT CASE WHEN isfinite(rolvaliduntil) is not true THEN '1 year'::interval
ELSE rolvaliduntil - now() END AS expiration INTO outval
FROM pg_roles WHERE rolname = SESSION_USER;
RETURN outval;
end;
$$ language plpgsql security definer;
COMMENT ON FUNCTION user__check_my_expiration() IS
$$ Returns the time when password of the current logged in user is set to
expire.$$;
CREATE OR REPLACE FUNCTION user__expires_soon()
RETURNS BOOL AS
$$
SELECT user__check_my_expiration() < '1 week';
$$ language sql;
COMMENT ON FUNCTION user__expires_soon() IS
$$ Returns true if the password of the current logged in user is set to expire
within on week.$$;
CREATE OR REPLACE FUNCTION user__change_password(in_new_password text)
returns int SET datestyle = 'ISO, YMD' as -- datestyle needed due to legacy code
$$
DECLARE
t_expires timestamp;
t_password_duration text;
BEGIN
SELECT value INTO t_password_duration FROM defaults
WHERE setting_key = 'password_duration';
IF t_password_duration IS NULL or t_password_duration='' THEN
t_expires := 'infinity';
ELSE
t_expires := now()
+ (t_password_duration::numeric::text || ' days')::interval;
END IF;
UPDATE users SET notify_password = DEFAULT where username = SESSION_USER;
EXECUTE 'ALTER USER ' || quote_ident(SESSION_USER) ||
' with ENCRYPTED password ' || quote_literal(in_new_password) ||
' VALID UNTIL '|| quote_literal(t_expires);
return 1;
END;
$$ language plpgsql security definer;
COMMENT ON FUNCTION user__change_password(in_new_password text) IS
$$ Allows a user to change his or her own password. The password is set to
expire setting_get('password_duration') days after the password change.$$;
DROP FUNCTION IF EXISTS admin__save_user(int, int, text, text, bool);
CREATE OR REPLACE FUNCTION admin__save_user(
in_id int,
in_entity_id INT,
in_username text,
in_password TEXT,
in_pls_import BOOL
) returns int
SET datestyle = 'ISO, YMD' -- needed due to legacy code regarding datestyles
AS $$
DECLARE
a_user users;
v_user_id int;
p_id int;
l_id int;
stmt text;
t_is_role bool;
t_is_user bool;
BEGIN
-- WARNING TO PROGRAMMERS: This function runs as the definer and runs
-- utility statements via EXECUTE.
-- PLEASE BE VERY CAREFUL ABOUT SQL-INJECTION INSIDE THIS FUNCTION.
PERFORM rolname FROM pg_roles WHERE rolname = in_username;
t_is_role := found;
t_is_user := admin__is_user(in_username);
IF t_is_role is true and t_is_user is false and in_pls_import is NOT TRUE THEN
RAISE EXCEPTION 'Duplicate user';
END IF;
if t_is_role and in_password is not null then
execute 'ALTER USER ' || quote_ident( in_username ) ||
' WITH ENCRYPTED PASSWORD ' || quote_literal (in_password)
|| $e$ valid until $e$ ||
quote_literal(now() + '1 day'::interval);
elsif in_pls_import is false AND t_is_user is false
AND in_password IS NULL THEN
RAISE EXCEPTION 'No password';
elsif t_is_role is false and in_pls_import IS NOT TRUE THEN
-- create an actual user
execute 'CREATE USER ' || quote_ident( in_username ) ||
' WITH ENCRYPTED PASSWORD ' || quote_literal (in_password)
|| $e$ valid until $e$ || quote_literal(now() + '1 day'::interval);
END IF;
select * into a_user from users lu where lu.id = in_id;
IF FOUND THEN
PERFORM admin__add_user_to_role(a_user.username, 'base_user');
return a_user.id;
ELSE
-- Insert cycle
--- The entity is expected to already BE created. See admin.pm.
PERFORM * FROM USERS where username = in_username;
IF NOT FOUND THEN
v_user_id := nextval('users_id_seq');
insert into users (id, username, entity_id) VALUES (
v_user_id,
in_username,
in_entity_id
);
insert into user_preference (id) values (v_user_id);
END IF;
IF NOT exists(SELECT * FROM entity_employee WHERE entity_id = in_entity_id) THEN
INSERT into entity_employee (entity_id) values (in_entity_id);
END IF;
-- Finally, issue the create user statement
PERFORM admin__add_user_to_role(in_username, 'base_user');
return v_user_id ;
END IF;
END;
$$ language 'plpgsql' SECURITY DEFINER;
COMMENT ON FUNCTION admin__save_user(
in_id int,
in_entity_id INT,
in_username text,
in_password TEXT,
in_import BOOL
) IS
$$ Creates a user and relevant records in LedgerSMB and PostgreSQL.$$;
REVOKE EXECUTE ON FUNCTION admin__save_user(
in_id int,
in_entity_id INT,
in_username text,
in_password TEXT,
in_import bool
) FROM public;
DROP VIEW if exists role_view CASCADE;
create view role_view as
select * from pg_auth_members m join pg_roles a ON (m.roleid = a.oid);
-- work in progress, not for public docs yet
create or replace function admin__is_group(in_group_name text) returns bool as $$
-- This needs some work. CT
DECLARE
existant_role pg_roles;
stmt text;
BEGIN
select * into existant_role from pg_roles
where rolname = in_group_name AND rolcanlogin is false;
if not found then
return 'f'::bool;
else
return 't'::bool;
end if;
END;
$$ language 'plpgsql';
-- work in progress, not for public docs yet
CREATE OR REPLACE FUNCTION admin__create_group(in_group_name TEXT) RETURNS int as $$
DECLARE
stmt text;
group_name text;
BEGIN
group_name := lsmb__role(in_group_name);
stmt := 'create role '|| quote_ident(group_name);
execute stmt;
INSERT INTO lsmb_group (role_name)
values (group_name);
return 1;
END;
$$ language 'plpgsql' SECURITY DEFINER;
REVOKE EXECUTE ON FUNCTION admin__create_group(TEXT) FROM PUBLIC;
CREATE OR REPLACE FUNCTION admin__add_group_to_role
(in_group_name text, in_role_name text)
RETURNS BOOL AS
$$
DECLARE
t_group_name text;
t_role_name text;
BEGIN
t_group_name := lsmb__role(in_group_name);
t_role_name := lsmb__role(in_role_name);
PERFORM * FROM lsmb_group_grants
WHERE group_name = t_group_name AND
granted_role = t_role_name;
IF NOT FOUND THEN
INSERT INTO lsmb_group_grants(group_name, granted_role)
VALUES (t_group_name, t_role_name);
END IF;
EXECUTE 'GRANT ' || quote_ident(t_role_name) || ' TO ' ||
quote_literal(t_group_name);
RETURN TRUE;
END;
$$ LANGUAGE PLPGSQL SECURITY DEFINER;
revoke execute on function admin__add_group_to_role
(in_group_name text, in_role_name text) FROM public;
COMMENT ON function admin__add_group_to_role
(in_group_name text, in_role_name text) IS
$$ This function inserts the arguments into lsmb_group_grants for future
reference and issues the db-level grant. It then returns true if there are no
exceptions.$$;
CREATE OR REPLACE FUNCTION admin__remove_group_from_role
(in_group_name text, in_role_name text) RETURNS BOOL AS $$
BEGIN
EXECUTE 'REVOKE ' || quote_ident(in_role_name) || ' FROM ' ||
quote_literal('lsmb_' || t_dbname || '__' || in_group_name);
DELETE FROM lsmb_group_grants
WHERE group_name = in_group_name AND granted_role = in_role_name;
RETURN FOUND;
END;
$$ LANGUAGE PLPGSQL SECURITY DEFINER;
revoke execute on function admin__remove_group_from_role
(in_group_name text, in_role_name text) FROM public;
COMMENT ON FUNCTION admin__remove_group_from_role
(in_group_name text, in_role_name text) IS $$
Returns true if the grant record was found and deleted, false otherwise.
Issues db-level revoke in all cases.$$;
CREATE OR REPLACE FUNCTION admin__list_group_grants(in_group_name text)
RETURNS SETOF lsmb_group_grants AS $$
SELECT * FROM lsmb_group_grants WHERE group_name = $1
ORDER BY granted_role;
$$ LANGUAGE SQL;
-- not sure if this is exposed to the front end yet. --CT
CREATE OR REPLACE FUNCTION admin__delete_user
(in_username TEXT, in_drop_role bool) returns INT as $$
DECLARE
stmt text;
a_user users;
BEGIN
select * into a_user from users where username = in_username;
IF NOT FOUND THEN
raise exception 'User not found.';
ELSIF FOUND THEN
IF in_drop_role IS TRUE then
stmt := ' drop user ' || quote_ident(a_user.username);
execute stmt;
END IF;
-- also gets user_connection
delete from user_preference where id = (
select id from users where entity_id = a_user.entity_id);
delete from users where entity_id = a_user.entity_id;
return 1;
END IF;
END;
$$ language 'plpgsql' SECURITY DEFINER;
REVOKE EXECUTE ON FUNCTION admin__delete_user(in_username TEXT,
in_drop_role bool) from public;
comment on function admin__delete_user(text, bool) is $$
Drops the provided user, as well as deletes the user configuration data.
It leaves the entity and person references.
If in_drop_role is set, it drops the role too.
$$;
-- Work in progress, not for ducmenting yet.
CREATE OR REPLACE FUNCTION admin__delete_group (in_group_name TEXT) returns bool as $$
DECLARE
stmt text;
a_role role_view;
group_name text;
BEGIN
select * into a_role from role_view where rolname = in_group_name;
if not found then
return 'f'::bool;
else
group_name := lsmb__role(in_group_name);
stmt := 'drop role lsmb_' || quote_ident(group_name);
execute stmt;
return 't'::bool;
end if;
END;
$$ language 'plpgsql' SECURITY DEFINER;
REVOKE EXECUTE on function admin__delete_group(text) from public;
comment on function admin__delete_group(text) IS $$
Deletes the input group from the database. Not designed to be used to
remove a login-capable user.
$$;
create or replace function admin__is_user (in_user text) returns bool as $$
BEGIN
PERFORM * from users where username = in_user;
RETURN found;
END;
$$ language plpgsql;
COMMENT ON function admin__is_user (in_user text) IS
$$ Returns true if user is set up in LedgerSMB. False otherwise.$$;
create or replace view user_listable as
select
u.id,
u.username,
e.created
from entity e
join users u on u.entity_id = e.id;
create or replace function user__get_all_users () returns setof user_listable as $$
select * from user_listable;
$$ language sql;
DROP FUNCTION IF EXISTS admin__get_roles();
create or replace function admin__get_roles () returns setof pg_roles as $$
DECLARE
u_role pg_roles;
begin
FOR u_role IN
SELECT *
FROM
pg_roles
WHERE
rolname ~ ('^' || lsmb__role_prefix())
AND NOT rolcanlogin
ORDER BY lsmb__global_role(rolname) ASC
LOOP
u_role.rolname = lsmb__global_role(u_role.rolname);
RETURN NEXT u_role;
END LOOP;
end;
$$ language plpgsql;
create or replace function user__save_preferences(
in_dateformat text,
in_numberformat text,
in_language text,
in_stylesheet text,
in_printer text
) returns bool as
$$
BEGIN
UPDATE user_preference
SET dateformat = in_dateformat,
numberformat = in_numberformat,
language = in_language,
stylesheet = in_stylesheet,
printer = in_printer
WHERE id = (select id from users where username = SESSION_USER);
RETURN FOUND;
END;
$$ language plpgsql;
COMMENT ON function user__save_preferences(
in_dateformat text,
in_numberformat text,
in_language text,
in_stylesheet text,
in_printer text
) IS
$$ Saves user preferences. Returns true if successful, false if no preferences
were found to update.$$;
DROP FUNCTION IF EXISTS user__get_preferences (in_user_id int);
create or replace function user__get_preferences (in_user_id int) returns user_preference as $$
declare
v_row user_preference;
BEGIN
select * into v_row from user_preference where id = in_user_id;
IF NOT FOUND THEN
RAISE EXCEPTION 'Could not find user preferences for id %', in_user_id;
ELSE
return v_row;
END IF;
END;
$$ language plpgsql;
COMMENT ON function user__get_preferences (in_user_id int) IS
$$ Returns the preferences row for the user.$$;
DROP TYPE if exists user_result CASCADE;
CREATE TYPE user_result AS (
id int,
username text,
first_name text,
last_name text,
ssn text,
dob date
);
CREATE OR REPLACE FUNCTION admin__search_users(in_username text, in_first_name text, in_last_name text, in_ssn text, in_dob date) RETURNS SETOF user_result AS
$$
SELECT u.id, u.username, p.first_name, p.last_name, e.ssn, e.dob
FROM users u
JOIN person p ON (u.entity_id = p.entity_id)
JOIN entity_employee e ON (e.entity_id = p.entity_id)
WHERE u.username LIKE '%' || coalesce(in_username,'') || '%' AND
(p.first_name = in_first_name or in_first_name is null)
AND (p.last_name = in_last_name or in_last_name is null)
AND (in_ssn is NULL or in_ssn = e.ssn)
AND (e.dob = in_dob::date or in_dob is NULL)
$$ LANGUAGE SQL;
COMMENT ON FUNCTION admin__search_users(in_username text, in_first_name text, in_last_name text, in_ssn text, in_dob date) IS
$$ Returns a list of users matching search criteria. Nulls match all values.
only username is not an exact match.$$;
DROP TYPE if exists session_result CASCADE;
CREATE TYPE session_result AS (
id int,
username text,
last_used timestamp,
locks_active bigint
);
CREATE OR REPLACE FUNCTION admin__list_sessions() RETURNS SETOF session_result
AS $$
SELECT s.session_id, u.username, s.last_used, count(t.id)
FROM "session" s
JOIN users u ON (s.users_id = u.id)
LEFT JOIN transactions t ON (t.locked_by = s.session_id)
GROUP BY s.session_id, u.username, s.last_used
ORDER BY u.username;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION admin__list_sessions() IS
$$ Lists all active sessions.$$;
CREATE OR REPLACE FUNCTION admin__drop_session(in_session_id int) RETURNS bool AS
$$
BEGIN
DELETE FROM "session" WHERE session_id = in_session_id;
RETURN FOUND;
END;
$$ language plpgsql;
COMMENT ON FUNCTION admin__drop_session(in_session_id int) IS
$$ Drops the session identified, releasing all locks held.$$;
update defaults set value = 'yes' where setting_key = 'module_load_ok';
COMMIT;
|