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 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
|
--
-- (C) 2017-22 - ntop.org
--
-- Module to keep things in common across pools of various type
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/notifications/?.lua;" .. package.path
require "lua_utils"
local checks = require "checks"
local recipients_mod = require "recipients"
local json = require "dkjson"
local ntop_info = ntop.getInfo()
-- ##############################################
local pools = {}
-- ##############################################
-- A builtin default pool id value associated to any member without pools
pools.DEFAULT_POOL_ID = 0 -- Keep in sync with ntop_defines.h NO_HOST_POOL_ID
pools.DEFAULT_POOL_NAME = "Default" -- Keep in sync with ntop_defines.h DEFAULT_POOL_NAME
if ntop.isnEdge() then
-- Compatibility with nEdge pools
local host_pools_nedge = require "host_pools_nedge"
pools.DEFAULT_POOL_ID = tonumber(host_pools_nedge.DEFAULT_POOL_ID)
pools.DEFAULT_POOL_NAME = host_pools_nedge.DEFAULT_POOL_NAME
end
-- ##############################################
-- Possible errors occurring when calling class methods
pools.ERRORS = {
NO_ERROR = 0,
GENERIC = -1,
INVALID_MEMBER = -2,
ALREADY_BOUND = -3
}
-- ##############################################
-- Limits, in sync with former host_pools_nedge.lua
pools.LIMITED_NUMBER_POOL_MEMBERS = ntop_info["constants.max_num_pool_members"]
-- ##############################################
-- This is the minimum pool id which will be used to create new pools
-- 0: Default pool
-- 1: Jailed hosts pool
pools.MIN_ASSIGNED_POOL_ID = 2
-- ##############################################
-- Flag to remember if user bound a recipient to a pool
pools.FIRST_RECIPIENT_BOUND_CACHE_KEY = "ntopng.prefs.endpoint_hints.recipient_has_been_bound"
-- ##############################################
function pools:create(args)
if args then
-- We're being sub-classed
if not args.key then return nil end
end
local this = args or {key = "base"}
setmetatable(this, self)
self.__index = self
if args then
-- Initialization is only run if a subclass is being instanced, that is,
-- when args is not nil
this:_initialize()
end
return this
end
-- ##############################################
-- @brief Start a pool transaction. Useful to do bulk imports or other operations that may require multiple steps
-- By default, all operations are non-transational, that is, every operation atomically changes the status of pools.
-- To perform multiple, non-atomic operations, a transaction can be started.
-- NOTE: currently, transactions are not supported, unless implemented in pools.lua subclasses
function pools:start_transaction()
end
-- ##############################################
-- @brief Ends a pool transaction.
function pools:end_transaction()
end
-- ##############################################
function pools:_initialize()
local locked = self:_lock()
if locked then
-- Init the default pool, if not already initialized.
-- The default pool has always empty members and empty recipients
local default_pool = self:get_pool(pools.DEFAULT_POOL_ID)
if not default_pool then
-- Raw call to persist, no need to go through add_pool as here all the parameters are trusted and
-- there's no need to check.
-- Default pool is always created with builtin recipients
self:_persist(pools.DEFAULT_POOL_ID,
pools.DEFAULT_POOL_NAME,
{} --[[ no members --]] ,
recipients_mod.get_builtin_recipients() --[[ builtin recipients --]], nil --[[ policy ]])
end
self:_unlock()
end
end
-- ##############################################
function pools:_get_pools_prefix_key()
local key = string.format("ntopng.pools.%s_pools", self.key)
-- e.g.:
-- ntopng.pools.interface_pools
-- ntopng.pools.snmp_device_pools
-- ntopng.pools.network_pools
return key
end
-- ##############################################
function pools:_get_pool_ids_key()
local key = string.format("%s.pool_ids", self:_get_pools_prefix_key())
-- e.g.:
-- ntopng.pools.interface_pools.pool_ids
return key
end
-- ##############################################
function pools:_get_next_pool_id_key()
local key = string.format("%s.next_pool_id", self:_get_pools_prefix_key())
-- e.g.:
-- ntopng.pools.interface_pools.next_pool_id
return key
end
-- ##############################################
function pools:_get_pool_lock_key()
local key = string.format("ntopng.cache.pools.%s.pool_lock", self.key)
-- e.g.:
-- ntopng.pools.interface_pools.pool_lock
return key
end
-- ##############################################
function pools:_get_pool_details_key(pool_id)
if not pool_id then
-- A pool id is always needed
return nil
end
local key = string.format("%s.pool_id_%d.details",
self:_get_pools_prefix_key(), pool_id)
return key
end
-- ##############################################
function pools:_assign_pool_id()
local next_pool_id_key = self:_get_next_pool_id_key()
-- Atomically assign a new pool id
local next_pool_id = ntop.incrCache(next_pool_id_key)
-- Make sure the id equals at least the minimum required id
while next_pool_id < pools.MIN_ASSIGNED_POOL_ID do
next_pool_id = ntop.incrCache(next_pool_id_key)
end
-- Add the atomically assigned pool id to the set of current pool ids (set wants a string)
ntop.setMembersCache(self:_get_pool_ids_key(),
string.format("%d", next_pool_id))
return next_pool_id
end
-- ##############################################
-- @brief Returns an array with all the currently assigned pool ids
function pools:_get_assigned_pool_ids()
local res = {pools.DEFAULT_POOL_ID}
local cur_pool_ids = ntop.getMembersCache(self:_get_pool_ids_key())
for _, cur_pool_id in pairs(cur_pool_ids) do
cur_pool_id = tonumber(cur_pool_id)
if cur_pool_id ~= pools.DEFAULT_POOL_ID then
-- the default pool id is never returned,
-- it's a meta-pool without members
res[#res + 1] = cur_pool_id
end
end
return res
end
-- ##############################################
function pools:_lock()
local max_lock_duration = 5 -- seconds
local max_lock_attempts = 5 -- give up after at most this number of attempts
local lock_key = self:_get_pool_lock_key()
for i = 1, max_lock_attempts do
local value_set = ntop.setnxCache(lock_key, "1", max_lock_duration)
if value_set then
return true -- lock acquired
end
ntop.msleep(1000)
end
return false -- lock not acquired
end
-- ##############################################
function pools:_unlock() ntop.delCache(self:_get_pool_lock_key()) end
-- ##############################################
--@brief Method called after a successful execution of method persist
function pools:_post_persist(pool_id, name, members, recipients, policy)
end
-- ##############################################
-- @brief Persist pool details to disk. Possibly assign a pool id
-- @param pool_id The pool_id of the pool which needs to be persisted. If nil, a new pool id is assigned
function pools:_persist(pool_id, name, members, recipients, policy)
-- self:cleanup()
-- Default pool name and members cannot be modified
if pool_id == pools.DEFAULT_POOL_ID then
name = pools.DEFAULT_POOL_NAME
members = {}
end
local pool_details_key = self:_get_pool_details_key(pool_id)
local pool_details = {
name = name,
members = members,
recipients = recipients
}
ntop.setCache(pool_details_key, json.encode(pool_details))
self:_post_persist(pool_id, name, members, recipients, policy)
-- Return the assigned pool_id
return pool_id
end
-- ##############################################
--- Set a flag to indicate that a pool has been created/edited
function pools:_set_cache_flag()
if isEmptyString(ntop.getPref(pools.FIRST_RECIPIENT_BOUND_CACHE_KEY)) then
ntop.setPref(pools.FIRST_RECIPIENT_BOUND_CACHE_KEY, "1")
end
end
-- ##############################################
-- Create a new pool (unless it already exists)
function pools:add_pool(name, members, recipients, policy)
local pool_id
local locked = self:_lock()
if locked then
if name and members and recipients then
local checks_ok = true
-- Check if duplicate names exist
local same_name_pool = self:get_pool_by_name(name)
if same_name_pool then
checks_ok = false
end
-- Check if members are valid
if not self:are_valid_members(members) then
checks_ok = false
end
-- Check if members do not belong to any other pool
if checks_ok then
for _, member in pairs(members) do
local cur_pool = self:get_pool_by_member(member)
if cur_pool then
-- Member already existing in another pool
checks_ok = false
break
end
end
end
-- Check if recipients are valid
if checks_ok then
if not self:are_valid_recipients(recipients) then
checks_ok = false
end
end
if checks_ok then
-- All the checks have succeeded
-- Now that everything is ok, the id can be assigned and the pool can be persisted with the assigned id
pool_id = self:_assign_pool_id()
self:_persist(pool_id, name, members, recipients, policy)
self:_set_cache_flag()
end
end
self:_unlock()
end
return pool_id
end
-- ##############################################
-- Add members and recipients (merge) to an existing pool
function pools:add_to_pool(name, members, recipients)
local ret = true
local err = pools.ERRORS.NO_ERROR
if name then
local locked = self:_lock()
if locked then
-- Check if pool exists
local pool_details = self:get_pool_by_name(name)
if pool_details then
local pool_id = pool_details.pool_id
-- Add members
if members then
for _, member in pairs(members) do
local retm, errm = self:bind_member_if_not_already_bound(member, pool_id, true)
if not retm then
ret = retm
err = errm
end
end
end
-- Add recipients
if recipients then
for _, recipient_id in pairs(recipients) do
-- Check if recipient is valid
if self:is_valid_recipient(recipient_id) then
local retr, errr = self:_bind_recipient(recipient_id, pool_id)
if not retm then
ret = retr
err = errr
end
end
end
end
end
self:_unlock()
end
end
return ret, err
end
-- ##############################################
-- Overwrite the pool name, members and recipients
-- Policy are used just by Host Pool
function pools:edit_pool(pool_id, new_name, new_members, new_recipients, new_policy)
local ret = false
local locked = self:_lock()
-- Make sure the pool exists
local cur_pool_details = self:get_pool(pool_id)
-- If here, pool_id has been found
if locked then
if cur_pool_details and cur_pool_details.name then
local checks_ok = true
if new_name then
-- Check if new_name is not the name of any other existing pool
local same_name_pool = self:get_pool_by_name(new_name)
if same_name_pool and same_name_pool.pool_id ~= pool_id then
checks_ok = false
end
else
new_name = cur_pool_details.name
end
if new_members then
-- Check if members are valid
if checks_ok and not self:are_valid_members(new_members) then
checks_ok = false
end
-- Check if none of new_members belongs to any other exsiting pool
if checks_ok then
for _, new_member in pairs(new_members) do
local new_member_pool = self:get_pool_by_member(new_member)
if new_member_pool and new_member_pool["pool_id"] ~= pool_id then
-- Member already existing in another pool
checks_ok = false
break
end
end
end
else
-- In case members have not been sumbitted, new_members
-- are assumed to be the existing members
new_members = cur_pool_details["members"]
end
if new_recipients then
-- Check if recipients are valid
if checks_ok and not self:are_valid_recipients(new_recipients) then
checks_ok = false
end
else
-- In case recipients have not been sumbitted, new_recipients
-- are assumed to be the existing recipients
new_recipients = {}
-- Populate with recipient IDs
for _, recipient in pairs(cur_pool_details["recipients"] or {}) do
new_recipients[#new_recipients + 1] = recipient["recipient_id"]
end
end
if not new_policy then
-- In case policy have not been sumbitted, new_policy
-- is assumed to be the existing policy
new_policy = cur_pool_details["policy"] or ""
end
if checks_ok then
-- If here, all checks are valid and the pool can be edited
self:_persist(pool_id, new_name, new_members, new_recipients, new_policy)
self:_set_cache_flag()
-- Pool edited successfully
ret = true
end
end
self:_unlock()
end
return ret
end
-- ##############################################
function pools:delete_pool(pool_id)
local ret = false
local locked = self:_lock()
if locked then
-- Make sure the pool exists
local cur_pool_details = self:get_pool(pool_id)
if cur_pool_details then
-- Remove the key with all the pool details (e.g., with members)
ntop.delCache(self:_get_pool_details_key(pool_id))
-- Remove the pool_id from the set of all currently existing pool ids
ntop.delMembersCache(self:_get_pool_ids_key(),
string.format("%d", pool_id))
ret = true
end
self:_unlock()
end
return ret
end
-- ##############################################
-- @brief Returns all the defined pools. Pools are returned in a lua table with pool ids as keys
function pools:get_all_pools()
local cur_pool_ids = self:_get_assigned_pool_ids()
local res = {}
for _, pool_id in pairs(cur_pool_ids) do
local pool_details = self:get_pool(pool_id)
if pool_details then res[#res + 1] = pool_details end
end
return res
end
-- ##############################################
-- @brief Returns the number of currently defined pool ids
function pools:get_num_pools()
local cur_pool_ids = self:_get_assigned_pool_ids()
return #cur_pool_ids
end
-- ##############################################
-- @brief returns the maximum number of pools that can be created
function pools:get_max_num_pools()
return 128
end
-- ##############################################
-- Currently Implemented only into the Host Pools, used to get the host policy
function pools:get_pool_policy(pool_id)
end
-- ##############################################
function pools:get_pool(pool_id, recipient_details)
local recipient_details = recipient_details or true
local pool_details
local pool_details_key = self:_get_pool_details_key(pool_id)
-- Attempt at retrieving the pool details key and at decoding it from JSON
if pool_details_key then
local pool_details_str = ntop.getCache(pool_details_key)
pool_details = json.decode(pool_details_str)
if pool_details then
-- Add the integer pool id
pool_details["pool_id"] = tonumber(pool_id)
if pool_details["members"] then
-- Add a new table with member details
-- Table keys are members, table values are member details
pool_details["member_details"] = {}
for _, member in pairs(pool_details["members"]) do
pool_details["member_details"][member] =
self:get_member_details(member)
end
end
if pool_details["recipients"] then
local recipients = {}
-- get recipient metadata
for _, recipient_id in pairs(pool_details["recipients"]) do
if tonumber(recipient_id) then -- Handles previously string-keyed recipients
local res = {recipient_id = recipient_id}
if recipient_details then
local recipient = recipients_mod.get_recipient(recipient_id)
if recipient and recipient.recipient_name then
-- Keep in in sync with overridden method in host_pool.lua
res["recipient_name"] = recipient.recipient_name
res["recipient_check_categories"] = recipient.check_categories
res["recipient_minimum_severity"] = recipient.minimum_severity
end
end
recipients[#recipients + 1] = res
end
end
pool_details["recipients"] = recipients
end
end
end
-- Upon success, pool details are returned, otherwise nil
return pool_details
end
-- ##############################################
function pools:get_pool_by_name(name)
local cur_pool_ids = self:_get_assigned_pool_ids()
for _, pool_id in pairs(cur_pool_ids) do
local pool_details = self:get_pool(pool_id)
if pool_details and pool_details["name"] and pool_details["name"] ==
name then
return pool_details
end
end
return nil
end
-- ##############################################
-- @brief Returns the pool to which `member` is currently bound to, or nil if `member` is not bound to any pool
function pools:get_pool_by_member(member)
local assigned_members = self:get_assigned_members()
if assigned_members[member] then
return self:get_pool(assigned_members[member]["pool_id"])
end
return nil
end
-- ##############################################
-- @brief Returns a flattened table with pool_member->pool_id pairs
function pools:get_assigned_members()
local cur_pool_ids = self:_get_assigned_pool_ids()
local res = {}
for _, pool_id in pairs(cur_pool_ids) do
local pool_details = self:get_pool(pool_id)
if pool_details and pool_details["members"] then
for _, member in pairs(pool_details["members"]) do
res[member] = {
pool_id = tonumber(pool_id),
name = pool_details["name"]
}
end
end
end
return res
end
-- ##############################################
function pools:get_recipients(pool_id)
local pool_details
local res = {}
if pool_id == nil then return res end
local locked = self:_lock()
if locked then
pool_details = self:get_pool(pool_id)
self:_unlock()
end
if pool_details and pool_details["recipients"] then
for _, recipient in pairs(pool_details["recipients"]) do
res[#res + 1] = recipient
end
end
return res
end
-- ##############################################
-- @brief Delete all pools
function pools:cleanup()
-- Delete pool details
local cur_pool_ids = self:_get_assigned_pool_ids()
for _, pool_id in pairs(cur_pool_ids) do
self:delete_pool(pool_id)
end
-- Also delete the default pool - it will be re-created during the next initialization
self:delete_pool(pools.DEFAULT_POOL_ID)
local locked = self:_lock()
if locked then
-- Delete pool ids
ntop.delCache(self:_get_pool_ids_key())
ntop.delCache(self:_get_next_pool_id_key())
self:_unlock()
end
end
-- ##############################################
-- @brief Returns a boolean indicating whether the member is a valid pool member
function pools:is_valid_member(member)
local all_members = self:get_all_members()
return all_members[member] ~= nil
end
-- ##############################################
-- @brief Returns a boolean indicating whether the array of members passed contains all valid members
function pools:are_valid_members(members)
for _, member in pairs(members) do
if not self:is_valid_member(member) then return false end
end
return true
end
-- ##############################################
-- @brief Parses recipients submitted via HTTP (validated as `pool_recipients` in `http_lint.lua`) into a table of members
function pools:parse_recipients(recipients_string)
local recipients = {}
if isEmptyString(recipients_string) then return recipients end
-- Unfold the recipients csv
recipients = recipients_string:split(",") or {recipients_string}
local res = {}
for _, recipient_id in pairs(recipients) do
local recipient_id = tonumber(recipient_id)
if recipient_id then
res[#res + 1] = recipient_id
end
end
return res
end
-- ##############################################
-- @brief Returns available recipient ids which can be added to a pool
function pools:get_available_recipient_ids()
-- Please note that recipient ids are shared across pools of all types
-- so all the recipient ids can be returned here without distinction
local recipients = recipients_mod.get_all_recipients()
local res = {}
for _, recipient in pairs(recipients) do
local recipient_id = recipient.recipient_id
res[recipient_id] = {
recipient_id = recipient_id,
recipient_name = recipient.recipient_name
}
end
return res
end
-- ##############################################
-- @brief Returns a boolean indicating whether the recipient_id is a valid recipient id
function pools:is_valid_recipient(recipient_id)
local all_recipients = self:get_available_recipient_ids()
return all_recipients[tonumber(recipient_id)] ~= nil
end
-- ##############################################
-- @brief Returns a boolean indicating whether the array of recipients passed
-- contains all valid recipients
function pools:are_valid_recipients(recipients)
for _, recipient_id in pairs(recipients) do
if not self:is_valid_recipient(recipient_id) then return false end
end
return true
end
-- ##############################################
-- @brief Unbind a recipient from all pools
function pools:unbind_all_recipient_id(recipient_id)
if not recipient_id then
-- Invalid argument
return
end
local locked = self:_lock()
if locked then
local all_pools = self:get_all_pools()
for _, pool in pairs(all_pools) do
local found = false
-- New recipients (all pool recipients except for the one being removed)
local new_recipients = {}
if pool["recipients"] then
for _, cur_recipient in pairs(pool["recipients"]) do
if tonumber(cur_recipient.recipient_id) ~= tonumber(recipient_id) then
new_recipients[#new_recipients + 1] = tonumber(cur_recipient.recipient_id)
else
found = true
end
end
end
if found then
-- Rewrite the pool using the new recipients set
self:_persist(pool["pool_id"], pool["name"], pool["members"], new_recipients, pool["policy"])
end
end
self:_unlock()
end
end
-- ##############################################
-- @brief Bind a recipient to all pools
function pools:bind_all_recipient_id(recipient_id)
if not recipient_id then
-- Invalid argument
return
end
local locked = self:_lock()
if locked then
local all_pools = self:get_all_pools()
for _, pool in pairs(all_pools) do
local found = false
-- All the recipients for the current pool
local new_recipients = {}
if pool["recipients"] then
for _, cur_recipient in pairs(pool["recipients"]) do
if tonumber(cur_recipient.recipient_id) == tonumber(recipient_id) then
-- Already bound for this pool, nothing to do
found = true
break
else
-- Prepare a lua array with integer recipient ids
new_recipients[#new_recipients + 1] = tonumber(cur_recipient.recipient_id)
end
end
if not found then
-- Append the recipient to the array of pool recipients
new_recipients[#new_recipients + 1] = tonumber(recipient_id)
-- Rewrite the pool using the extended recipients array
self:_persist(pool["pool_id"], pool["name"], pool["members"], new_recipients, pool["policy"])
end
end
end
self:_unlock()
end
end
-- ##############################################
-- @brief Parses members submitted via HTTP (validated as `pool_members` in `http_lint.lua`) into a table of members
function pools:parse_members(members_string)
local members = {}
if isEmptyString(members_string) then return members end
-- Unfold the members csv
members = members_string:split(",") or {members_string}
return members
end
-- ##############################################
-- @brief Returns available members which don't already belong to any defined pool
function pools:get_available_members()
local assigned_members = self:get_assigned_members()
local all_members = self:get_all_members()
local res = {}
for member, member_details in pairs(all_members) do
-- tprint("checking.."..member)
-- tprint(member)
if not assigned_members[member] then res[member] = member_details end
end
return res
end
-- ##############################################
-- @brief Bind a recipient to a pool
-- PRIVATE FUNCTION, not to be called outside this class
-- The caller must lock
function pools:_bind_recipient(recipient_id, pool_id)
local ret, err = false, pools.ERRORS.GENERIC
-- ASSIGN the recipient to the pool with `pool_id`
local bind_pool = self:get_pool(pool_id, false)
if bind_pool then
-- Members stay the same
local bind_pool_members = bind_pool["members"]
-- Recipients are all pool recipients plus the recipient which is being bound
local bind_pool_recipients = {}
local already_present = false
for _, recipient in pairs(bind_pool["recipients"] or {}) do
bind_pool_recipients[#bind_pool_recipients + 1] = recipient.recipient_id
if recipient.recipient_id == recipient_id then
already_present = true
end
end
if not already_present then
bind_pool_recipients[#bind_pool_recipients + 1] = recipient_id
-- Persist the pool with the new `recipient`
self:_persist(bind_pool["pool_id"], bind_pool["name"],
bind_pool_members, bind_pool_recipients, bind_pool["policy"])
end
-- Bind has executed successfully
ret, err = true, pools.ERRORS.NO_ERROR
end
return ret, err
end
-- ##############################################
-- @brief Bind a member to a pool
-- PRIVATE FUNCTION, not to be called outside this class
-- The caller must lock and must check the member doesn't belong to
-- any other pool apart from pool_id, before calling
function pools:_bind_member(member, pool_id)
local ret = false
local err = pools.ERRORS.GENERIC
-- ASSIGN the member to the pool with `pool_id`
-- Note: If the pool_id is pools.DEFAULT_POOL_ID, then `member` is not associated to any pool, it's safe to just return
if tonumber(pool_id) == pools.DEFAULT_POOL_ID then
ret = true
err = pools.ERRORS.NO_ERROR
else
local bind_pool = self:get_pool(pool_id, false)
if bind_pool then
-- New members are all pool members plus the member which is being bound
local bind_pool_members = bind_pool["members"]
bind_pool_members[#bind_pool_members + 1] = member
-- Recipients stay the same, but we need to get their ids only
local bind_pool_recipients = {}
for _, recipient in pairs(bind_pool["recipients"] or {}) do
bind_pool_recipients[#bind_pool_recipients + 1] = recipient.recipient_id
end
-- Persist the pool with the new `member`
self:_persist(bind_pool["pool_id"], bind_pool["name"],
bind_pool_members, bind_pool_recipients, bind_pool["policy"])
-- Bind has executed successfully
ret = true
err = pools.ERRORS.NO_ERROR
end
end
return ret, err
end
-- ##############################################
-- @brief Bind `member` to pool identified with `pool_id`. If the member is already bound to another pool
-- Then the member is first unboud and the bound to `pool_id`.
function pools:bind_member(member, pool_id)
local ret, err = false, pools.ERRORS.GENERIC
if not self:is_valid_member(member) then
return false, pools.ERRORS.INVALID_MEMBER
end
local locked = self:_lock()
if locked then
-- REMOVE the member if assigned to another pool
local assigned_members = self:get_assigned_members()
if assigned_members[member] then
local cur_pool = self:get_pool(assigned_members[member]["pool_id"])
if cur_pool["pool_id"] == pool_id then
-- If the current pool id equals the new pool id, there's nothing to do and it is just safe to return
ret, err = true, pools.ERRORS.NO_ERROR
elseif cur_pool then
-- New members are all pool members except for the member which is being removed
local new_members = {}
for _, cur_member in pairs(cur_pool["members"]) do
if cur_member ~= member then
new_members[#new_members + 1] = cur_member
end
end
-- Recipients stay the same, but we need to get their ids only
local bind_pool_recipients = {}
for _, recipient in pairs(cur_pool["recipients"] or {}) do
bind_pool_recipients[#bind_pool_recipients + 1] = recipient.recipient_id
end
-- Persist the existing pool without the removed `member`
self:_persist(cur_pool["pool_id"], cur_pool["name"],
new_members, bind_pool_recipients, cur_pool["policy"])
end
end
if not ret then ret, err = self:_bind_member(member, pool_id) end
self:_unlock()
end
return ret, err
end
-- ##############################################
-- @brief Bind `member` to pool identified with `pool_id`. If the member is already bound to another pool
-- then nothing is done and an error is returned
function pools:bind_member_if_not_already_bound(member, pool_id, already_locked)
local ret, err = false, pools.ERRORS.GENERIC
if not self:is_valid_member(member) then
return false, pools.ERRORS.INVALID_MEMBER
end
local locked = already_locked
if not locked then
locked = self:_lock()
end
if locked then
local assigned_members = self:get_assigned_members()
if assigned_members[member] then
-- Member already existing
if assigned_members[member]["pool_id"] == pool_id then
-- Member is bound to the same pool as the parameter `pool_id`
ret, err = true, pools.ERRORS.NO_ERROR
else
-- Member is bound to another pool
ret, err = false, pools.ERRORS.ALREADY_BOUND
end
else
-- Member isn't bound to any pool, safe to add it
ret, err = self:_bind_member(member, pool_id)
end
if not already_locked then
self:_unlock()
end
end
return ret, err
end
-- ##############################################
-- @param member a valid pool member
-- @return The pool_id found for `member` or the default pool_id
function pools:get_pool_id(member)
if not self.assigned_pool_members then
-- Cache it as class member
self.assigned_pool_members = self:get_assigned_members()
end
if self.assigned_pool_members[member] and
self.assigned_pool_members[member]["pool_id"] then
return self.assigned_pool_members[member]["pool_id"]
end
return pools.DEFAULT_POOL_ID
end
-- ##############################################
-- @brief Return the name associated to a pool
-- @param pool_id The pool id
-- @return A string with the name of the pool
function pools:get_pool_name(pool_id)
if pool_id == pools.DEFAULT_POOL_ID then
return pools.DEFAULT_POOL_NAME
else
local pool = self:get_pool(pool_id)
if pool then return pool["name"] end
end
return nil
end
-- ##############################################
-- @brief Returns true for 'dummy' pool instances
-- that don't allow the creations of pools apart from the default one,
-- and also don't allow members to be set/removed.
-- This kind of pools only allow recipients to be added/removed from the
-- default pool.
function pools:default_only()
-- By default, pool instances are fully fledged, unless this method is
-- overridden in the subclass.
return false
end
-- ##############################################
return pools
|