File: /virtual/nagasaki/public_html/ec/src/Eccube/Form/Type/Install/Step3Type.php
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* 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.
*/
namespace Eccube\Form\Type\Install;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\Form\FormError;
use Symfony\Component\Form\FormEvents;
use Symfony\Component\Validator\Constraints as Assert;
class Step3Type extends AbstractType
{
public $app;
public function __construct(\Silex\Application $app)
{
$this->app = $app;
}
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$app = $this->app;
$builder
->add('shop_name', 'text', array(
'label' => 'あなたの店名',
'constraints' => array(
new Assert\NotBlank(),
new Assert\Length(array(
'max' => $this->app['config']['stext_len'],
)),
),
))
->add('email', 'email', array(
'label' => 'メールアドレス(受注メールなどの宛先になります)',
'constraints' => array(
new Assert\NotBlank(),
new Assert\Email(array('strict' => true)),
),
))
->add('login_id', 'text', array(
'label' => '管理画面ログインID(半角英数字'.$this->app['config']['id_min_len'].'~'.$this->app['config']['id_max_len'].'文字)',
'constraints' => array(
new Assert\NotBlank(),
new Assert\Length(array(
'min' => $this->app['config']['id_min_len'],
'max' => $this->app['config']['id_max_len'],
)),
new Assert\Regex(array(
'pattern' => '/^[[:graph:][:space:]]+$/i',
'message' => 'form.type.graph.invalid',
)),
),
))
->add('login_pass', 'password', array(
'label' => '管理画面パスワード(半角英数字'.$this->app['config']['password_min_len'].'~'.$this->app['config']['password_max_len'].'文字)',
'constraints' => array(
new Assert\NotBlank(),
new Assert\Length(array(
'min' => $this->app['config']['password_min_len'],
'max' => $this->app['config']['password_max_len'],
)),
new Assert\Regex(array(
'pattern' => '/^[[:graph:][:space:]]+$/i',
'message' => 'form.type.graph.invalid',
)),
),
))
->add('admin_dir', 'text', array(
'label' => '管理画面のディレクトリ名(半角英数字'.$this->app['config']['id_min_len'].'~'.$this->app['config']['id_max_len'].'文字)',
'constraints' => array(
new Assert\NotBlank(),
new Assert\Length(array(
'min' => $this->app['config']['id_min_len'],
'max' => $this->app['config']['id_max_len'],
)),
new Assert\Regex(array('pattern' => '/\A\w+\z/')),
),
))
->add('admin_force_ssl', 'checkbox', array(
'label' => 'サイトへのアクセスを、SSL(https)経由に制限します',
'required' => false,
))
->add('admin_allow_hosts', 'textarea', array(
'label' => '管理画面へのアクセスを、以下のIPに制限します',
'help' => '複数入力する場合は、IPとIPの間に改行をいれてください',
'required' => false,
))
->add('trusted_proxies_connection_only', 'checkbox', array(
'label' => 'サイトが信頼されたロードバランサー、プロキシサーバからのみアクセスされる',
'required' => false,
))
->add('trusted_proxies', 'textarea', array(
'label' => 'ロードバランサー、プロキシサーバのIP',
'help' => '複数入力する場合は、IPとIPの間に改行をいれてください(X-Forwarded-Proto、X-Forwarded-Host、X-Forwarded-Portヘッダーに対応してる必要があります)',
'required' => false,
))
->add('mail_backend', 'choice', array(
'label' => 'メーラーバックエンド',
'choices' => array(
'mail' => 'mail(PHPの組み込み関数 mail() を使用してメールを送信)',
'smtp' => 'SMTP(SMTPサーバに直接接続してメールを送信)',
'sendmail' => 'sendmail(sendmailプログラムによりメールを送信)',
),
'expanded' => true,
'multiple' => false,
))
->add('smtp_host', 'text', array(
'label' => 'SMTPホスト',
'help' => 'メーラーバックエンドがSMTPの場合のみ指定',
'required' => false,
))
->add('smtp_port', 'text', array(
'label' => 'SMTPポート',
'help' => 'メーラーバックエンドがSMTPの場合のみ指定',
'required' => false,
))
->add('smtp_username', 'text', array(
'label' => 'SMTPユーザー',
'help' => 'メーラーバックエンドがSMTPかつSMTP-AUTH使用時のみ指定',
'required' => false,
))
->add('smtp_password', 'password', array(
'label' => 'SMTPパスワード',
'help' => 'メーラーバックエンドがSMTPかつSMTP-AUTH使用時のみ指定',
'required' => false,
))
->addEventListener(FormEvents::POST_SUBMIT, function ($event) use($app) {
$form = $event->getForm();
$data = $form->getData();
$ips = preg_split("/\R/", $data['admin_allow_hosts'], null, PREG_SPLIT_NO_EMPTY);
foreach($ips as $ip) {
$errors = $app['validator']->validateValue($ip, array(
new Assert\Ip(),
)
);
if ($errors->count() != 0) {
$form['admin_allow_hosts']->addError(new FormError($ip . 'はIPv4アドレスではありません。'));
}
}
})
;
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'install_step3';
}
}