Subversion Repositories oidplus

Rev

Rev 1189 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 - 2023 Daniel Marschall, ViaThinkSoft
  6.  *
  7.  * Licensed under the Apache License, Version 2.0 (the "License");
  8.  * you may not use this file except in compliance with the License.
  9.  * You may obtain a copy of the License at
  10.  *
  11.  *     http://www.apache.org/licenses/LICENSE-2.0
  12.  *
  13.  * Unless required by applicable law or agreed to in writing, software
  14.  * distributed under the License is distributed on an "AS IS" BASIS,
  15.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16.  * See the License for the specific language governing permissions and
  17.  * limitations under the License.
  18.  */
  19.  
  20. namespace ViaThinkSoft\OIDplus;
  21.  
  22. // phpcs:disable PSR1.Files.SideEffects
  23. \defined('INSIDE_OIDPLUS') or die;
  24. // phpcs:enable PSR1.Files.SideEffects
  25.  
  26. class OIDplusPagePublicLoginFacebook extends OIDplusPagePluginPublic
  27.         implements INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_5, /* alternativeLoginMethods */
  28.                    INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_8  /* getNotifications */
  29. {
  30.  
  31.         /**
  32.          * @param string $actionID
  33.          * @param array $params
  34.          * @return array
  35.          * @throws OIDplusException
  36.          */
  37.         public function action(string $actionID, array $params): array {
  38.                 return parent::action($actionID, $params);
  39.         }
  40.  
  41.         /**
  42.          * @param bool $html
  43.          * @return void
  44.          */
  45.         public function init(bool $html=true) {
  46.                 // Nothing
  47.         }
  48.  
  49.         /**
  50.          * @param string $id
  51.          * @param array $out
  52.          * @param bool $handled
  53.          * @return void
  54.          * @throws OIDplusException
  55.          */
  56.         public function gui(string $id, array &$out, bool &$handled) {
  57.                 if ($id === 'oidplus:login_facebook') {
  58.                         $handled = true;
  59.                         $out['title'] = _L('Login using Facebook');
  60.                         $out['icon']  = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png';
  61.  
  62.                         if (!OIDplus::baseConfig()->getValue('FACEBOOK_OAUTH2_ENABLED', false)) {
  63.                                 throw new OIDplusException(_L('Facebook OAuth authentication is disabled on this system.'), $out['title']);
  64.                         }
  65.  
  66.                         $target =
  67.                                 "https://www.facebook.com/v8.0/dialog/oauth?".
  68.                                 "client_id=".urlencode(OIDplus::baseConfig()->getValue('FACEBOOK_OAUTH2_CLIENT_ID'))."&".
  69.                                 "redirect_uri=".urlencode(OIDplus::webpath(__DIR__,OIDplus::PATH_ABSOLUTE_CANONICAL).'oauth.php')."&".
  70.                                 "state=".urlencode($_COOKIE['csrf_token_weak'])."&".
  71.                                 "scope=email";
  72.                         $out['text'] = '<p>'._L('Please wait...').'</p><script>window.location.href = '.js_escape($target).';</script>';
  73.                 }
  74.         }
  75.  
  76.         /**
  77.          * @param array $out
  78.          * @return void
  79.          */
  80.         public function publicSitemap(array &$out) {
  81.                 $out[] = 'oidplus:login_facebook';
  82.         }
  83.  
  84.         /**
  85.          * @param array $json
  86.          * @param string|null $ra_email
  87.          * @param bool $nonjs
  88.          * @param string $req_goto
  89.          * @return bool
  90.          */
  91.         public function tree(array &$json, string $ra_email=null, bool $nonjs=false, string $req_goto=''): bool {
  92.                 return true;
  93.         }
  94.  
  95.         /**
  96.          * @param string $request
  97.          * @return array|false
  98.          */
  99.         public function tree_search(string $request) {
  100.                 return false;
  101.         }
  102.  
  103.         /**
  104.          * Implements interface INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_5
  105.          * @return array
  106.          * @throws OIDplusException
  107.          */
  108.         public function alternativeLoginMethods(): array {
  109.                 $logins = array();
  110.                 if (OIDplus::baseConfig()->getValue('FACEBOOK_OAUTH2_ENABLED', false)) {
  111.                         $logins[] = array(
  112.                                 'oidplus:login_facebook',
  113.                                 _L('Login using Facebook'),
  114.                                 OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon16.png'
  115.                         );
  116.                 }
  117.                 return $logins;
  118.         }
  119.  
  120.         /**
  121.          * Implements interface INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_8
  122.          * @param string|null $user
  123.          * @return array
  124.          * @throws OIDplusException
  125.          */
  126.         public function getNotifications(string $user=null): array {
  127.                 $notifications = array();
  128.                 if ((!$user || ($user == 'admin')) && OIDplus::authUtils()->isAdminLoggedIn()) {
  129.                         if (OIDplus::baseConfig()->getValue('FACEBOOK_OAUTH2_ENABLED', false)) {
  130.                                 if (!url_post_contents_available(true, $reason)) {
  131.                                         $title = _L('Facebook OAuth Login');
  132.                                         $notifications[] = new OIDplusNotification('ERR', _L('OIDplus plugin "%1" is enabled, but OIDplus cannot connect to the Internet.', htmlentities($title)).' '.$reason);
  133.                                 }
  134.                         }
  135.                 }
  136.                 return $notifications;
  137.         }
  138.  
  139. }
  140.