/**
* Set the session variable that contains the contact IDs for the visitor's contact URL
+ *
+ * @param string $my_url
*/
- public function setVisitorsContacts();
+ public function setVisitorsContacts(string $my_url);
}
}
/** {@inheritDoc} */
- public function setVisitorsContacts()
+ public function setVisitorsContacts(string $my_url)
{
- $this->session->set('remote', Contact::getVisitorByUrl($this->session->get('my_url')));
+ $this->session->set('remote', Contact::getVisitorByUrl($my_url));
}
/** {@inheritDoc} */
$visitor = Contact::getById($cid);
// Authenticate the visitor.
- $_SESSION['authenticated'] = 1;
- $_SESSION['visitor_id'] = $visitor['id'];
- $_SESSION['visitor_handle'] = $visitor['addr'];
- $_SESSION['visitor_home'] = $visitor['url'];
- $_SESSION['my_url'] = $visitor['url'];
- $_SESSION['remote_comment'] = $visitor['subscribe'];
-
- DI::userSession()->setVisitorsContacts();
+ DI::userSession()->setMultiple([
+ 'authenticated' => 1,
+ 'visitor_id' => $visitor['id'],
+ 'visitor_handle' => $visitor['addr'],
+ 'visitor_home' => $visitor['url'],
+ 'my_url' => $visitor['url'],
+ 'remote_comment' => $visitor['subscribe'],
+ ]);
+
+ DI::userSession()->setVisitorsContacts($visitor['url']);
$a->setContactId($visitor['id']);
*/
public function setForUser(App $a, array $user_record, bool $login_initial = false, bool $interactive = false, bool $login_refresh = false)
{
+ $my_url = $this->baseUrl . '/profile/' . $user_record['nickname'];
+
$this->session->setMultiple([
'uid' => $user_record['uid'],
'theme' => $user_record['theme'],
'mobile-theme' => $this->pConfig->get($user_record['uid'], 'system', 'mobile_theme'),
'authenticated' => 1,
'page_flags' => $user_record['page-flags'],
- 'my_url' => $this->baseUrl . '/profile/' . $user_record['nickname'],
+ 'my_url' => $my_url,
'my_address' => $user_record['nickname'] . '@' . substr($this->baseUrl, strpos($this->baseUrl, '://') + 3),
'addr' => $this->remoteAddress,
'nickname' => $user_record['nickname'],
]);
- $this->session->setVisitorsContacts();
+ $this->session->setVisitorsContacts($my_url);
$member_since = strtotime($user_record['register_date']);
$this->session->set('new_member', time() < ($member_since + (60 * 60 * 24 * 14)));