1
BEGIN
2
/* add network devices into groups from last executed searches */
3
INSERT IGNORE
4
INTO SubGroupsNetworkDevices(GroupID, DeviceID) (
5
SELECT MasterGroups.GroupID,
6
Searches.NetworkDeviceID
7
FROM MasterGroups
8
JOIN Searches ON Searches.SearchID = MasterGroups.NetworkJoin
9
WHERE NetworkJoin > 0);
10
/* remove network devices from groups where the search options were excusionary */
11
DELETE SubGroupsNetworkDevices
12
FROM SubGroupsNetworkDevices
13
JOIN MasterGroups USING (GroupID)
14
WHERE (MasterGroups.NetworkJoinOptions = 1
15
AND DeviceID NOT IN (
16
SELECT NetworkDeviceID
17
FROM Searches
18
WHERE SearchID = MasterGroups.NetworkJoin))
19
OR DeviceID NOT IN (SELECT DeviceID FROM `networkdevices`);
20
/* create temp table of (groupid, deviceid) where group is not a master and device belongs to another group that is a master */
21
CREATE TEMPORARY TABLE IF NOT EXISTS GNDevice
22
SELECT *
23
FROM SubGroupsNetworkDevices
24
WHERE GroupID IN (
25
SELECT GroupID
26
FROM MasterGroups
27
WHERE `master` = 0)
28
AND DeviceID IN (
29
SELECT DeviceID
30
FROM SubGroupsNetworkDevices
31
JOIN MasterGroups USING (groupID)
32
WHERE MasterGroups.NetworkJoin > 0
33
AND MasterGroups.Master = 1);
34
/* use above temp table to remove devices from non-master groups if they're already in other master groups */
35
DELETE SubGroupsNetworkDevices
36
FROM SubGroupsNetworkDevices
37
JOIN GNdevice USING (DeviceID, GroupID);
38
DROP TEMPORARY TABLE GNDevice; /* goodbye temp table */
39
END