mirror of
https://gh.wpcy.net/https://github.com/discourse/wp-discourse.git
synced 2026-05-23 03:20:46 +08:00
* WIP: various tests and logs * Complete tests and logs for primary classes * Minor fix * WIP: various tests and logs * Complete tests and logs for primary classes * Minor fix * Remove incorrectly merged code * PHPCS fixes * Add phpunit polifils as a dev dependency * Bump phpunit polyfills version * Minor test and dependency fixes * Update ci.yml * Complete multisite tests and integrate in CI * Change coverage focus to entire lib folder * Update TESTS.md * Add logging to connection status * Update verbose log settings * Make verbose logging network settings in multisite * Add utilities tests * PHPCS fix * Update version and add release notes * Update settings-validator.php
87 lines
2.5 KiB
PHP
Vendored
87 lines
2.5 KiB
PHP
Vendored
<?php
|
|
/**
|
|
* SSO Client base class.
|
|
*
|
|
* @package WPDiscourse.
|
|
*/
|
|
|
|
namespace WPDiscourse\SSOClient;
|
|
|
|
use WPDiscourse\DiscourseBase;
|
|
|
|
/**
|
|
* Class SSOClientBase
|
|
*/
|
|
class SSOClientBase extends DiscourseBase {
|
|
/**
|
|
* Generates the markup for SSO link
|
|
*
|
|
* @method get_discourse_sso_link_markup
|
|
*
|
|
* @param array $link_options link, login, redirect.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function get_discourse_sso_link_markup( $link_options = array() ) {
|
|
$options = isset( $this->options ) ? $this->options : $this->get_options();
|
|
$user_id = get_current_user_id();
|
|
|
|
if ( ! empty( $user_id ) ) {
|
|
if ( get_user_meta( $user_id, 'discourse_sso_user_id', true ) ) {
|
|
|
|
return null;
|
|
}
|
|
$link_account_text = ! empty( self::get_text_options( 'link-to-discourse-text' ) ) ? self::get_text_options( 'link-to-discourse-text' ) : '';
|
|
$anchor = ! empty( $link_options['link'] ) ? $link_options['link'] : $link_account_text;
|
|
} else {
|
|
$login_text = ! empty( self::get_text_options( 'external-login-text' ) ) ? self::get_text_options( 'external-login-text' ) : '';
|
|
$anchor = ! empty( $link_options['login'] ) ? $link_options['login'] : $login_text;
|
|
}
|
|
|
|
if ( isset( $_GET['redirect_to'] ) ) {
|
|
$redirect_to = wp_validate_redirect(
|
|
esc_url_raw( wp_unslash( $_GET['redirect_to'] ) ),
|
|
null
|
|
);
|
|
} elseif ( ! empty( $link_options['redirect'] ) ) {
|
|
$redirect_to = $link_options['redirect'];
|
|
} else {
|
|
$redirect_to = null;
|
|
}
|
|
$sso_login_url = $this->get_discourse_sso_url( $redirect_to );
|
|
|
|
$anchor = apply_filters( 'wpdc_sso_client_login_anchor', $anchor );
|
|
$button = sprintf( '<a class="wpdc-sso-client-login-link" href="%s">%s</a>', esc_url( $sso_login_url ), sanitize_text_field( $anchor ) );
|
|
|
|
return apply_filters( 'wpdc_sso_client_login_button', $button, $sso_login_url, $link_options );
|
|
}
|
|
|
|
/**
|
|
* Gets the auth URL for discourse.
|
|
*
|
|
* @param string|null $redirect The URL to redirect to.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function get_discourse_sso_url( $redirect = null ) {
|
|
$is_user_logged_in = is_user_logged_in();
|
|
|
|
$redirect_to = $redirect ? $redirect : get_permalink();
|
|
|
|
if ( empty( $redirect_to ) ) {
|
|
$redirect_to = $is_user_logged_in ? admin_url( 'profile.php' ) : home_url( '/' );
|
|
}
|
|
|
|
return add_query_arg(
|
|
array(
|
|
'discourse_sso' => sanitize_key( apply_filters( 'wpdc_sso_client_query', 1 ) ),
|
|
'redirect_to' => apply_filters(
|
|
'wpdc_sso_client_redirect_url',
|
|
urlencode( esc_url_raw( $redirect_to ) ),
|
|
$redirect_to
|
|
),
|
|
),
|
|
home_url( '/' )
|
|
);
|
|
}
|
|
}
|