View source
<?php
namespace Drupal\simple_fb_connect\Form;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Routing\RequestContext;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Component\Utility\Html;
class SimpleFbConnectSettingsForm extends ConfigFormBase {
protected $requestContext;
public function __construct(ConfigFactoryInterface $config_factory, RequestContext $request_context) {
$this
->setConfigFactory($config_factory);
$this->requestContext = $request_context;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('router.request_context'));
}
public function getFormId() {
return 'simple_fb_connect_admin_form';
}
protected function getEditableConfigNames() {
return [
'simple_fb_connect.settings',
];
}
public function buildForm(array $form, FormStateInterface $form_state) {
$simple_fb_config = $this
->config('simple_fb_connect.settings');
$form['fb_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Facebook App settings'),
'#open' => TRUE,
'#description' => $this
->t('You need to first create a Facebook App at <a href="@facebook-dev">@facebook-dev</a>', [
'@facebook-dev' => 'https://developers.facebook.com/apps',
]),
];
$form['fb_settings']['app_id'] = [
'#type' => 'textfield',
'#required' => TRUE,
'#title' => $this
->t('Application ID'),
'#default_value' => $simple_fb_config
->get('app_id'),
'#description' => $this
->t('Copy the App ID of your Facebook App here. This value can be found from your App Dashboard.'),
];
$form['fb_settings']['app_secret'] = [
'#type' => 'textfield',
'#required' => TRUE,
'#title' => $this
->t('App Secret'),
'#default_value' => $simple_fb_config
->get('app_secret'),
'#description' => $this
->t('Copy the App Secret of your Facebook App here. This value can be found from your App Dashboard.'),
];
$form['fb_settings']['api_version'] = [
'#type' => 'textfield',
'#required' => TRUE,
'#title' => $this
->t('API Version'),
'#default_value' => $simple_fb_config
->get('api_version'),
'#description' => $this
->t('Copy the API Version of your Facebook App here. This value can be found from your App Dashboard. More information on API versions can be found at <a href="@facebook-changelog">Facebook Platform Changelog</a>.', [
'@facebook-changelog' => 'https://developers.facebook.com/docs/apps/changelog',
]),
];
$form['fb_settings']['oauth_redirect_url'] = [
'#type' => 'textfield',
'#disabled' => TRUE,
'#title' => $this
->t('Valid OAuth redirect URIs'),
'#description' => $this
->t('Copy this value to <em>Valid OAuth redirect URIs</em> field of your Facebook App settings.'),
'#default_value' => $GLOBALS['base_url'] . '/user/simple-fb-connect/return',
];
$form['fb_settings']['app_domains'] = [
'#type' => 'textfield',
'#disabled' => TRUE,
'#title' => $this
->t('App Domains'),
'#description' => $this
->t('Copy this value to <em>App Domains</em> field of your Facebook App settings.'),
'#default_value' => $this->requestContext
->getHost(),
];
$form['fb_settings']['site_url'] = [
'#type' => 'textfield',
'#disabled' => TRUE,
'#title' => $this
->t('Site URL'),
'#description' => $this
->t('Copy this value to <em>Site URL</em> field of your Facebook App settings.'),
'#default_value' => $GLOBALS['base_url'],
];
$form['module_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Simple FB Connect configurations'),
'#open' => TRUE,
'#description' => $this
->t('These settings allow you to configure how Simple FB Connect module behaves on your Drupal site'),
];
$form['module_settings']['post_login_path'] = [
'#type' => 'textfield',
'#required' => TRUE,
'#title' => $this
->t('Post login path'),
'#description' => $this
->t('Drupal path where the user should be redirected after successful login. Use <em><front></em> to redirect user to your front page.'),
'#default_value' => $simple_fb_config
->get('post_login_path'),
];
$form['module_settings']['redirect_user_form'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Redirect new users to Drupal user form'),
'#description' => $this
->t('If you check this, new users are redirected to Drupal user form after the user is created. This is useful if you want to encourage users to fill in additional user fields.'),
'#default_value' => $simple_fb_config
->get('redirect_user_form'),
];
$form['module_settings']['disable_admin_login'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Disable FB login for administrator'),
'#description' => $this
->t('Disabling FB login for administrator (<em>user 1</em>) can help protect your site if a security vulnerability is ever discovered in Facebook PHP SDK or this module.'),
'#default_value' => $simple_fb_config
->get('disable_admin_login'),
];
$roles = user_roles();
$options = [];
foreach ($roles as $key => $role_object) {
if ($key != 'anonymous' && $key != 'authenticated') {
$options[$key] = Html::escape($role_object
->get('label'));
}
}
$form['module_settings']['disabled_roles'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Disable FB login for the following roles'),
'#options' => $options,
'#default_value' => $simple_fb_config
->get('disabled_roles'),
];
if (empty($roles)) {
$form['module_settings']['disabled_roles']['#description'] = $this
->t('No roles found.');
}
return parent::buildForm($form, $form_state);
}
public function validateForm(array &$form, FormStateInterface $form_state) {
if (!preg_match('/^v[2-9]\\.[0-9]{1,2}$/', $form_state
->getValue('api_version'))) {
$form_state
->setErrorByName('api_version', $this
->t('Invalid API version. The syntax for API version is for example <em>v2.8</em>'));
}
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$values = $form_state
->getValues();
$this
->config('simple_fb_connect.settings')
->set('app_id', $values['app_id'])
->set('app_secret', $values['app_secret'])
->set('api_version', $values['api_version'])
->set('post_login_path', $values['post_login_path'])
->set('redirect_user_form', $values['redirect_user_form'])
->set('disable_admin_login', $values['disable_admin_login'])
->set('disabled_roles', $values['disabled_roles'])
->save();
parent::submitForm($form, $form_state);
}
}