REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
< ? php
/**
* List Table API : WP_Application_Passwords_List_Table class
*
* @ package WordPress
* @ subpackage Administration
* @ since 5.6 . 0
*/
/**
* Class for displaying the list of application password items .
*
* @ since 5.6 . 0
* @ access private
*
* @ see WP_List_Table
*/
class WP_Application_Passwords_List_Table extends WP_List_Table {
/**
* Gets the list of columns .
*
* @ since 5.6 . 0
*
* @ return array
*/
public function get_columns () {
return array (
'name' => __ ( 'Name' ),
'created' => __ ( 'Created' ),
'last_used' => __ ( 'Last Used' ),
'last_ip' => __ ( 'Last IP' ),
'revoke' => __ ( 'Revoke' ),
);
}
/**
* Prepares the list of items for displaying .
*
* @ since 5.6 . 0
2020-10-27 03:12:06 +01:00
*
* @ global int $user_id User ID .
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
*/
public function prepare_items () {
global $user_id ;
$this -> items = array_reverse ( WP_Application_Passwords :: get_user_application_passwords ( $user_id ) );
}
/**
* Handles the name column output .
*
* @ since 5.6 . 0
*
* @ param array $item The current application password item .
*/
public function column_name ( $item ) {
echo esc_html ( $item [ 'name' ] );
}
/**
* Handles the created column output .
*
* @ since 5.6 . 0
*
* @ param array $item The current application password item .
*/
public function column_created ( $item ) {
if ( empty ( $item [ 'created' ] ) ) {
echo '—' ;
} else {
2020-12-03 22:06:08 +01:00
echo date_i18n ( __ ( 'F j, Y' ), $item [ 'created' ] );
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
}
}
/**
* Handles the last used column output .
*
* @ since 5.6 . 0
*
* @ param array $item The current application password item .
*/
public function column_last_used ( $item ) {
if ( empty ( $item [ 'last_used' ] ) ) {
echo '—' ;
} else {
2020-12-03 22:06:08 +01:00
echo date_i18n ( __ ( 'F j, Y' ), $item [ 'last_used' ] );
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
}
}
/**
* Handles the last ip column output .
*
* @ since 5.6 . 0
*
* @ param array $item The current application password item .
*/
public function column_last_ip ( $item ) {
if ( empty ( $item [ 'last_ip' ] ) ) {
echo '—' ;
} else {
echo $item [ 'last_ip' ];
}
}
/**
* Handles the revoke column output .
*
* @ since 5.6 . 0
2020-10-24 05:34:06 +02:00
*
* @ param array $item The current application password item .
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
*/
2020-10-24 05:34:06 +02:00
public function column_revoke ( $item ) {
2021-06-08 01:49:58 +02:00
$name = 'revoke-application-password-' . $item [ 'uuid' ];
printf (
'<button type="button" name="%1$s" id="%1$s" class="button delete" aria-label="%2$s">%3$s</button>' ,
esc_attr ( $name ),
/* translators: %s: the application password's given name. */
esc_attr ( sprintf ( __ ( 'Revoke "%s"' ), $item [ 'name' ] ) ),
__ ( 'Revoke' )
2020-10-24 05:34:06 +02:00
);
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
}
/**
* Generates content for a single row of the table
*
* @ since 5.6 . 0
*
* @ param array $item The current item .
* @ param string $column_name The current column name .
*/
protected function column_default ( $item , $column_name ) {
/**
* Fires for each custom column in the Application Passwords list table .
*
* Custom columns are registered using the { @ see 'manage_application-passwords-user_columns' } filter .
*
* @ since 5.6 . 0
*
* @ param string $column_name Name of the custom column .
* @ param array $item The application password item .
*/
do_action ( " manage_ { $this -> screen -> id } _custom_column " , $column_name , $item );
}
/**
* Generates custom table navigation to prevent conflicting nonces .
*
* @ since 5.6 . 0
*
* @ param string $which The location of the bulk actions : 'top' or 'bottom' .
*/
protected function display_tablenav ( $which ) {
?>
< div class = " tablenav <?php echo esc_attr( $which ); ?> " >
< ? php if ( 'bottom' === $which ) : ?>
< div class = " alignright " >
2021-06-08 01:49:58 +02:00
< button type = " button " name = " revoke-all-application-passwords " id = " revoke-all-application-passwords " class = " button delete " >< ? php _e ( 'Revoke all application passwords' ); ?> </button>
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
</ div >
< ? php endif ; ?>
< div class = " alignleft actions bulkactions " >
< ? php $this -> bulk_actions ( $which ); ?>
</ div >
< ? php
$this -> extra_tablenav ( $which );
$this -> pagination ( $which );
?>
< br class = " clear " />
</ div >
< ? php
}
/**
* Generates content for a single row of the table .
*
* @ since 5.6 . 0
*
2020-10-18 22:53:08 +02:00
* @ param array $item The current item .
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
*/
public function single_row ( $item ) {
echo '<tr data-uuid="' . esc_attr ( $item [ 'uuid' ] ) . '">' ;
$this -> single_row_columns ( $item );
echo '</tr>' ;
}
/**
* Gets the name of the default primary column .
*
* @ since 5.6 . 0
*
* @ return string Name of the default primary column , in this case , 'name' .
*/
protected function get_default_primary_column_name () {
return 'name' ;
}
/**
* Prints the JavaScript template for the new row item .
*
* @ since 5.6 . 0
*/
public function print_js_template_row () {
list ( $columns , $hidden , , $primary ) = $this -> get_column_info ();
echo '<tr data-uuid="{{ data.uuid }}">' ;
foreach ( $columns as $column_name => $display_name ) {
$is_primary = $primary === $column_name ;
$classes = " { $column_name } column- { $column_name } " ;
if ( $is_primary ) {
$classes .= ' has-row-actions column-primary' ;
}
if ( in_array ( $column_name , $hidden , true ) ) {
$classes .= ' hidden' ;
}
printf ( '<td class="%s" data-colname="%s">' , esc_attr ( $classes ), esc_attr ( wp_strip_all_tags ( $display_name ) ) );
switch ( $column_name ) {
case 'name' :
echo '{{ data.name }}' ;
break ;
case 'created' :
2020-12-03 22:06:08 +01:00
// JSON encoding automatically doubles backslashes to ensure they don't get lost when printing the inline JS.
echo '<# print( wp.date.dateI18n( ' . wp_json_encode ( __ ( 'F j, Y' ) ) . ', data.created ) ) #>' ;
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
break ;
case 'last_used' :
2020-12-03 22:06:08 +01:00
echo '<# print( data.last_used !== null ? wp.date.dateI18n( ' . wp_json_encode ( __ ( 'F j, Y' ) ) . " , data.last_used ) : '—' ) #> " ;
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
break ;
case 'last_ip' :
echo " { { data.last_ip || '—' }} " ;
break ;
case 'revoke' :
2020-10-24 05:34:06 +02:00
printf (
2021-06-08 01:49:58 +02:00
'<button type="button" class="button delete" aria-label="%1$s">%2$s</button>' ,
2020-10-24 05:34:06 +02:00
/* translators: %s: the application password's given name. */
2021-06-08 01:49:58 +02:00
esc_attr ( sprintf ( __ ( 'Revoke "%s"' ), '{{ data.name }}' ) ),
esc_html__ ( 'Revoke' )
2020-10-24 05:34:06 +02:00
);
REST API: Introduce Application Passwords for API authentication.
In WordPress 4.4 the REST API was first introduced. A few releases later in WordPress 4.7, the Content API endpoints were added, paving the way for Gutenberg and countless in-site experiences. In the intervening years, numerous plugins have built on top of the REST API. Many developers shared a common frustration, the lack of external authentication to the REST API.
This commit introduces Application Passwords to allow users to connect to external applications to their WordPress website. Users can generate individual passwords for each application, allowing for easy revocation and activity monitoring. An authorization flow is introduced to make the connection flow simple for users and application developers.
Application Passwords uses Basic Authentication, and by default is only available over an SSL connection.
Props georgestephanis, kasparsd, timothyblynjacobs, afercia, akkspro, andraganescu, arippberger, aristath, austyfrosty, ayesh, batmoo, bradyvercher, brianhenryie, helen, ipstenu, jeffmatson, jeffpaul, joostdevalk, joshlevinson, kadamwhite, kjbenk, koke, michael-arestad, Otto42, pekz0r, salzano, spacedmonkey, valendesigns.
Fixes #42790.
Built from https://develop.svn.wordpress.org/trunk@49109
git-svn-id: http://core.svn.wordpress.org/trunk@48871 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-09 00:14:06 +02:00
break ;
default :
/**
* Fires in the JavaScript row template for each custom column in the Application Passwords list table .
*
* Custom columns are registered using the { @ see 'manage_application-passwords-user_columns' } filter .
*
* @ since 5.6 . 0
*
* @ param string $column_name Name of the custom column .
*/
do_action ( " manage_ { $this -> screen -> id } _custom_column_js_template " , $column_name );
break ;
}
if ( $is_primary ) {
echo '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __ ( 'Show more details' ) . '</span></button>' ;
}
echo '</td>' ;
}
echo '</tr>' ;
}
}