1
BEGIN
2
/* add contacts into groups from last executed searches */
3
INSERT IGNORE
4
INTO SubGroupsContacts(GroupID, ContactID) (
5
SELECT MasterGroups.GroupID,
6
Searches.ContactID
7
FROM MasterGroups
8
JOIN Searches ON Searches.SearchID = MasterGroups.ContactJoin
9
WHERE ContactJoin > 0);
10
/* remove contacts from groups where the search options were excusionary */
11
DELETE SubGroupsContacts
12
FROM SubGroupsContacts
13
JOIN MasterGroups USING (GroupID)
14
WHERE (MasterGroups.ContactJoinOptions = 1
15
AND ContactID NOT IN (
16
SELECT ContactID
17
FROM Searches
18
WHERE SearchID = MasterGroups.ContactJoin))
19
OR ContactID NOT IN (SELECT ContactID FROM `contacts`);
20
/* create temp table of (groupid, ContactID) where group is not a master and contact belongs to another group that is a master */
21
CREATE TEMPORARY TABLE IF NOT EXISTS GContacts
22
SELECT *
23
FROM SubGroupsContacts
24
WHERE GroupID IN (
25
SELECT GroupID
26
FROM MasterGroups
27
WHERE `master` = 0)
28
AND ContactID IN (
29
SELECT ContactID
30
FROM SubGroupsContacts
31
JOIN MasterGroups USING (groupID)
32
WHERE MasterGroups.ContactJoin > 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 SubGroupsContacts
36
FROM SubGroupsContacts
37
JOIN GContacts USING (ContactID, GroupID);
38
DROP TEMPORARY TABLE GContacts; /* goodbye temp table */
39
END