Skip to content
Snippets Groups Projects
Commit 99584371 authored by llaffont's avatar llaffont
Browse files

Adaptation SSO Vodeclic

parent a4c4b08c
No related merge requests found
......@@ -40,24 +40,16 @@ class Class_VodeclicLink {
public function url() {
$hash = Class_Hash::sha256WithKey(Class_AdminVar::get('VODECLIC_KEY'));
$partenaire = Class_AdminVar::get('VODECLIC_ID');
$id = $this->_user->getLogin();
$params = array('id' => $id,
'encrypted_id' => $hash->encrypt($id),
'd' => $hash->encrypt(date('dmY')),
'partenaire' => $partenaire);
if ($email = $this->_user->getMail())
$params = array_merge(array('email' => $email,
'encrypted_email' => $hash->encrypt($email)),
$params);
if ($nom = $this->_user->getNom())
$params['nom'] = $nom;
if ($prenom = $this->_user->getPrenom())
$params['prenom'] = $prenom;
return $this->baseUrl().'?'.http_build_query($params);
$id = strtolower($this->_user->getLogin());
$params = ['id' => $id,
'encrypted_id' => $hash->encrypt($id),
'd' => $hash->encrypt(date('dmY')),
'partenaire' => $partenaire,
'email' => $this->_user->getMail(),
'nom' => $this->_user->getNom(),
'prenom' => $this->_user->getPrenom()];
return $this->baseUrl().'?'.http_build_query(array_filter($params));
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment