123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- class Likes_Notify_Background extends SMF_BackgroundTask
- {
- public function execute()
- {
- global $smcFunc, $sourcedir;
- $author = false;
-
- if ($this->_details['content_type'] == 'msg')
- {
- $request = $smcFunc['db_query']('', '
- SELECT mem.id_member, mem.id_group, mem.id_post_group, mem.additional_groups, b.member_groups
- FROM {db_prefix}messages AS m
- INNER JOIN {db_prefix}members AS mem ON (m.id_member = mem.id_member)
- INNER JOIN {db_prefix}boards AS b ON (m.id_board = b.id_board)
- WHERE id_msg = {int:msg}',
- array(
- 'msg' => $this->_details['content_id'],
- )
- );
- if ($row = $smcFunc['db_fetch_assoc']($request))
- {
-
-
- $groups = explode(',', $row['additional_groups']);
- $groups[] = $row['id_group'];
- $groups[] = $row['id_post_group'];
- $allowed = explode(',', $row['member_groups']);
-
- if (in_array(1, $groups) || count(array_intersect($allowed, $groups)) != 0)
- $author = $row['id_member'];
- }
- $smcFunc['db_free_result']($request);
- }
- else
- {
-
- $hook_results = call_integration_hook('integrate_find_like_author', array($this->_details['content_type'], $this->_details['content_id']));
- foreach ($hook_results as $result)
- if (!empty($result))
- {
- $author = $result;
- break;
- }
- }
-
- if (empty($author))
- return true;
-
- if ($author == $this->_details['sender_id'])
- return true;
- require_once($sourcedir . '/Subs-Notify.php');
- $prefs = getNotifyPrefs($author, $this->_details['content_type'] . '_like');
-
-
-
- if (!isset($prefs[$author]) && isset($prefs[0]))
- $prefs[$author] = $prefs[0];
-
- if (empty($prefs[$author][$this->_details['content_type'] . '_like']))
- return true;
-
- $smcFunc['db_insert']('insert',
- '{db_prefix}user_alerts',
- array('alert_time' => 'int', 'id_member' => 'int', 'id_member_started' => 'int', 'member_name' => 'string',
- 'content_type' => 'string', 'content_id' => 'int', 'content_action' => 'string', 'is_read' => 'int', 'extra' => 'string'),
- array($this->_details['time'], $author, $this->_details['sender_id'], $this->_details['sender_name'],
- $this->_details['content_type'], $this->_details['content_id'], 'like', 0, ''),
- array('id_alert')
- );
- updateMemberData($author, array('alerts' => '+'));
- return true;
- }
- }
- ?>
|