2008-09-09 19:10:55 +02:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
2021-04-13 18:04:19 +02:00
|
|
|
* https://ldapsaisie.org
|
2008-09-09 19:10:55 +02:00
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Element ssh_key d'un formulaire pour LdapSaisie
|
|
|
|
*
|
|
|
|
* Cette classe définis les éléments ssh_key des formulaires.
|
|
|
|
* Elle étend la classe basic LSformElement.
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
class LSformElement_ssh_key extends LSformElement {
|
|
|
|
|
2023-01-03 12:51:45 +01:00
|
|
|
var $template = 'LSformElement_ssh_key.tpl';
|
|
|
|
var $fieldTemplate = 'LSformElement_ssh_key_field.tpl';
|
2008-10-16 16:27:07 +02:00
|
|
|
|
2021-02-05 12:22:32 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse one value
|
|
|
|
*
|
2022-12-31 05:52:31 +01:00
|
|
|
* @param string $value The value to parse
|
|
|
|
* @param boolean $details Enable/disable details return (optional, default: true)
|
2021-02-05 12:22:32 +01:00
|
|
|
*
|
2023-01-02 01:17:46 +01:00
|
|
|
* @return array|string Parsed value as array is $details is enabled, the raw value otherwise
|
2021-02-05 12:22:32 +01:00
|
|
|
*/
|
|
|
|
public function parseValue($value, $details=true) {
|
|
|
|
if (!$details)
|
|
|
|
return $value;
|
|
|
|
if (preg_match('/^ssh-([a-z0-9]+) +([^ ]+) +(.*)$/', $value, $regs)) {
|
|
|
|
return array(
|
|
|
|
'type' => $regs[1],
|
|
|
|
'mail' => $regs[3],
|
|
|
|
'value' => $value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return array(
|
|
|
|
'type' => null,
|
|
|
|
'mail' => null,
|
|
|
|
'value' => $value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-09-09 19:10:55 +02:00
|
|
|
/**
|
|
|
|
* Retourne les infos d'affichage de l'élément
|
2020-04-29 15:54:21 +02:00
|
|
|
*
|
2008-09-09 19:10:55 +02:00
|
|
|
* Cette méthode retourne les informations d'affichage de l'élement
|
|
|
|
*
|
2022-12-31 05:52:31 +01:00
|
|
|
* @return array
|
2008-09-09 19:10:55 +02:00
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function getDisplay(){
|
2020-05-28 16:56:36 +02:00
|
|
|
LStemplate :: addCssFile('LSformElement_ssh_key.css');
|
2008-09-09 19:10:55 +02:00
|
|
|
$return = $this -> getLabelInfos();
|
2008-10-16 16:27:07 +02:00
|
|
|
$params = array();
|
2008-09-09 19:10:55 +02:00
|
|
|
if (!$this -> isFreeze()) {
|
2008-10-16 16:27:07 +02:00
|
|
|
$params['values_txt'] = $this -> values;
|
2008-09-09 19:10:55 +02:00
|
|
|
}
|
|
|
|
else {
|
2020-05-28 16:56:36 +02:00
|
|
|
LStemplate :: addJSscript('LSformElement_ssh_key.js');
|
2020-06-04 19:04:48 +02:00
|
|
|
LStemplate :: addHelpInfo(
|
2008-11-10 04:30:49 +01:00
|
|
|
'LSformElement_ssh_key',
|
|
|
|
array(
|
2009-02-14 00:06:58 +01:00
|
|
|
'display' => _("Display the full key.")
|
2008-11-10 04:30:49 +01:00
|
|
|
)
|
|
|
|
);
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2008-10-16 16:27:07 +02:00
|
|
|
$values_txt = array();
|
|
|
|
foreach ($this -> values as $value) {
|
2021-02-05 12:22:32 +01:00
|
|
|
$parsedValue = $this -> parseValue($value);
|
|
|
|
$parsedValue['shortTxt'] = substr($value, 0, 15);
|
|
|
|
$values_txt[] = $parsedValue;
|
2008-09-09 19:10:55 +02:00
|
|
|
}
|
2008-10-16 16:27:07 +02:00
|
|
|
$params['values_txt'] = $values_txt;
|
2009-02-14 00:06:58 +01:00
|
|
|
$params['unknowTypeTxt'] = _('Unknown type');
|
2008-09-09 19:10:55 +02:00
|
|
|
}
|
2008-10-16 16:27:07 +02:00
|
|
|
$return['html'] = $this -> fetchTemplate(NULL,$params);
|
2008-09-09 19:10:55 +02:00
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2020-04-29 15:54:21 +02:00
|
|
|
}
|