parent
d452ba8585
commit
338200b386
4 changed files with 20 additions and 9 deletions
|
@ -4,7 +4,7 @@
|
||||||
**Tags:** OStatus, fediverse, activitypub, activitystream
|
**Tags:** OStatus, fediverse, activitypub, activitystream
|
||||||
**Requires at least:** 4.7
|
**Requires at least:** 4.7
|
||||||
**Tested up to:** 5.8
|
**Tested up to:** 5.8
|
||||||
**Stable tag:** 0.13.1
|
**Stable tag:** 0.13.2
|
||||||
**Requires PHP:** 5.6
|
**Requires PHP:** 5.6
|
||||||
**License:** MIT
|
**License:** MIT
|
||||||
**License URI:** http://opensource.org/licenses/MIT
|
**License URI:** http://opensource.org/licenses/MIT
|
||||||
|
@ -88,6 +88,10 @@ Where 'blog' is the path to the subdirectory at which your blog resides.
|
||||||
|
|
||||||
Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
||||||
|
|
||||||
|
### 0.13.2 ###
|
||||||
|
|
||||||
|
* fix Follow issue AGAIN
|
||||||
|
|
||||||
### 0.13.1 ###
|
### 0.13.1 ###
|
||||||
|
|
||||||
* fix Inbox issue
|
* fix Inbox issue
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Plugin Name: ActivityPub
|
* Plugin Name: ActivityPub
|
||||||
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
|
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
|
||||||
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
|
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
|
||||||
* Version: 0.13.1
|
* Version: 0.13.2
|
||||||
* Author: Matthias Pfefferle
|
* Author: Matthias Pfefferle
|
||||||
* Author URI: https://notiz.blog/
|
* Author URI: https://notiz.blog/
|
||||||
* License: MIT
|
* License: MIT
|
||||||
|
|
|
@ -139,6 +139,7 @@ class Inbox {
|
||||||
|
|
||||||
$data = $request->get_params();
|
$data = $request->get_params();
|
||||||
$type = $request->get_param( 'type' );
|
$type = $request->get_param( 'type' );
|
||||||
|
$type = \strtolower( $type );
|
||||||
|
|
||||||
\do_action( 'activitypub_inbox', $data, $user_id, $type );
|
\do_action( 'activitypub_inbox', $data, $user_id, $type );
|
||||||
\do_action( "activitypub_inbox_{$type}", $data, $user_id );
|
\do_action( "activitypub_inbox_{$type}", $data, $user_id );
|
||||||
|
@ -173,6 +174,8 @@ class Inbox {
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ( $users as $user ) {
|
foreach ( $users as $user ) {
|
||||||
|
$type = \strtolower( $type );
|
||||||
|
|
||||||
\do_action( 'activitypub_inbox', $data, $user->ID, $type );
|
\do_action( 'activitypub_inbox', $data, $user->ID, $type );
|
||||||
\do_action( "activitypub_inbox_{$type}", $data, $user->ID );
|
\do_action( "activitypub_inbox_{$type}", $data, $user->ID );
|
||||||
}
|
}
|
||||||
|
@ -216,9 +219,9 @@ class Inbox {
|
||||||
'required' => true,
|
'required' => true,
|
||||||
//'type' => 'enum',
|
//'type' => 'enum',
|
||||||
//'enum' => array( 'Create' ),
|
//'enum' => array( 'Create' ),
|
||||||
'sanitize_callback' => function( $param, $request, $key ) {
|
//'sanitize_callback' => function( $param, $request, $key ) {
|
||||||
return \strtolower( $param );
|
// return \strtolower( $param );
|
||||||
},
|
//},
|
||||||
);
|
);
|
||||||
|
|
||||||
$params['object'] = array(
|
$params['object'] = array(
|
||||||
|
@ -261,9 +264,9 @@ class Inbox {
|
||||||
'required' => true,
|
'required' => true,
|
||||||
//'type' => 'enum',
|
//'type' => 'enum',
|
||||||
//'enum' => array( 'Create' ),
|
//'enum' => array( 'Create' ),
|
||||||
'sanitize_callback' => function( $param, $request, $key ) {
|
//'sanitize_callback' => function( $param, $request, $key ) {
|
||||||
return \strtolower( $param );
|
// return \strtolower( $param );
|
||||||
},
|
//},
|
||||||
);
|
);
|
||||||
|
|
||||||
$params['object'] = array(
|
$params['object'] = array(
|
||||||
|
|
|
@ -4,7 +4,7 @@ Donate link: https://notiz.blog/donate/
|
||||||
Tags: OStatus, fediverse, activitypub, activitystream
|
Tags: OStatus, fediverse, activitypub, activitystream
|
||||||
Requires at least: 4.7
|
Requires at least: 4.7
|
||||||
Tested up to: 5.8
|
Tested up to: 5.8
|
||||||
Stable tag: 0.13.1
|
Stable tag: 0.13.2
|
||||||
Requires PHP: 5.6
|
Requires PHP: 5.6
|
||||||
License: MIT
|
License: MIT
|
||||||
License URI: http://opensource.org/licenses/MIT
|
License URI: http://opensource.org/licenses/MIT
|
||||||
|
@ -88,6 +88,10 @@ Where 'blog' is the path to the subdirectory at which your blog resides.
|
||||||
|
|
||||||
Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
||||||
|
|
||||||
|
= 0.13.2 =
|
||||||
|
|
||||||
|
* fix Follow issue AGAIN
|
||||||
|
|
||||||
= 0.13.1 =
|
= 0.13.1 =
|
||||||
|
|
||||||
* fix Inbox issue
|
* fix Inbox issue
|
||||||
|
|
Loading…
Reference in a new issue