Skip to content

Commit 88e7174

Browse files
authored
Merge pull request #106 from diggy/add-wp-pll-post-update-subcommand
add 'wp pll post update' subcommand
2 parents f75be8d + 3cb50ca commit 88e7174

File tree

5 files changed

+127
-25
lines changed

5 files changed

+127
-25
lines changed

README.md

+50-17
Original file line numberDiff line numberDiff line change
@@ -951,34 +951,36 @@ wp pll post get <post_id> [<language-code>] [--api]
951951

952952

953953

954-
### wp pll post duplicate
954+
### wp pll post update
955955

956-
Duplicate a post to one or more languages.
956+
Update one or more existing posts and their translations.
957957

958958
~~~
959-
wp pll post duplicate <post_id> [<language-code>]
959+
wp pll post update <id>... [<file>] --<field>=<value> [--defer-term-counting]
960960
~~~
961961

962-
Syncs metadata and taxonomy terms, based on Polylang settings. Run `wp pll option list` to inspect current settings.
963-
964962
**OPTIONS**
965963

966-
<post_id>
967-
Post ID of the post to duplicate. Required.
964+
<id>...
965+
One or more IDs of posts to update.
968966

969-
[<language-code>]
970-
Language code (slug), or comma-separated list of language codes, to duplicate the post to. Omit to duplicate to all languages. Optional.
967+
[<file>]
968+
Read post content from <file>. If this value is present, the
969+
`--post_content` argument will be ignored.
971970

972-
**EXAMPLES**
971+
Passing `-` as the filename will cause post content to
972+
be read from STDIN.
973973

974-
# Duplicate post 23 (Dutch) to German
975-
$ wp pll post duplicate 23 de
976-
Success: Created post 68 (de) < post 23 (nl)
974+
--<field>=<value>
975+
One or more fields to update. See wp_update_post().
977976

978-
# Duplicate post 23 (Dutch) to all languages (Dutch and Spanish)
979-
$ wp pll post duplicate 23
980-
Success: Updated post 68 (de) < post 23 (nl)
981-
Success: Created post 69 (es) < post 23 (nl)
977+
[--defer-term-counting]
978+
Recalculate term count in batch, for a performance boost.
979+
980+
**EXAMPLES**
981+
982+
$ wp pll post update 13 --comment_status=closed
983+
Success: Updated post 13.
982984

983985

984986

@@ -1007,6 +1009,37 @@ wp pll post delete <post_id> [--force] [--defer-term-counting]
10071009

10081010

10091011

1012+
### wp pll post duplicate
1013+
1014+
Duplicate a post to one or more languages.
1015+
1016+
~~~
1017+
wp pll post duplicate <post_id> [<language-code>]
1018+
~~~
1019+
1020+
Syncs metadata and taxonomy terms, based on Polylang settings. Run `wp pll option list` to inspect current settings.
1021+
1022+
**OPTIONS**
1023+
1024+
<post_id>
1025+
Post ID of the post to duplicate. Required.
1026+
1027+
[<language-code>]
1028+
Language code (slug), or comma-separated list of language codes, to duplicate the post to. Omit to duplicate to all languages. Optional.
1029+
1030+
**EXAMPLES**
1031+
1032+
# Duplicate post 23 (Dutch) to German
1033+
$ wp pll post duplicate 23 de
1034+
Success: Created post 68 (de) < post 23 (nl)
1035+
1036+
# Duplicate post 23 (Dutch) to all languages (Dutch and Spanish)
1037+
$ wp pll post duplicate 23
1038+
Success: Updated post 68 (de) < post 23 (nl)
1039+
Success: Created post 69 (es) < post 23 (nl)
1040+
1041+
1042+
10101043
### wp pll post list
10111044

10121045
Get a list of posts in a language.

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@
6161
"pll post generate",
6262
"pll post create",
6363
"pll post get",
64-
"pll post duplicate",
64+
"pll post update",
6565
"pll post delete",
66+
"pll post duplicate",
6667
"pll post list",
6768
"pll post-type",
6869
"pll post-type disable",

composer.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

features/post.feature

+22
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,28 @@ Feature: Manage posts and their translations
4646
Warning: tlh is not a valid language.
4747
"""
4848

49+
@pll-post-update
50+
Scenario: Update posts and their translations
51+
52+
When I run `wp pll option sync comment_status`
53+
And I run `wp pll lang create de de de_DE`
54+
And I run `wp pll post duplicate 1`
55+
And I run `wp pll post update 1 --comment_status="closed"`
56+
And I run `wp post list --fields=ID,comment_status`
57+
Then STDOUT should be a table containing rows:
58+
| ID | comment_status |
59+
| 5 | closed |
60+
| 1 | closed |
61+
And STDERR should be empty
62+
63+
When I run `wp pll post update 5 --comment_status="open"`
64+
And I run `wp post list --fields=ID,comment_status`
65+
Then STDOUT should be a table containing rows:
66+
| ID | comment_status |
67+
| 5 | open |
68+
| 1 | open |
69+
And STDERR should be empty
70+
4971
Scenario: Delete posts and their translations
5072

5173
When I run `wp pll post delete 1`

src/Commands/Post.php

+47-1
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,52 @@ public function create( $args, $assoc_args ) {
161161
echo implode( ' ', array_map( 'absint', $post_ids ) );
162162
}
163163

164+
/**
165+
* Update one or more existing posts and their translations.
166+
*
167+
* ## OPTIONS
168+
*
169+
* <id>...
170+
* : One or more IDs of posts to update.
171+
*
172+
* [<file>]
173+
* : Read post content from <file>. If this value is present, the
174+
* `--post_content` argument will be ignored.
175+
*
176+
* Passing `-` as the filename will cause post content to
177+
* be read from STDIN.
178+
*
179+
* --<field>=<value>
180+
* : One or more fields to update. See wp_update_post().
181+
*
182+
* [--defer-term-counting]
183+
* : Recalculate term count in batch, for a performance boost.
184+
*
185+
* ## EXAMPLES
186+
*
187+
* $ wp pll post update 13 --comment_status=closed
188+
* Success: Updated post 13.
189+
*/
190+
public function update( $args, $assoc_args ) {
191+
192+
$this->pll->filters_post = new \PLL_Admin_Filters_Post( $this->pll );
193+
$this->pll->sync = new \PLL_Admin_Sync( $this->pll );
194+
195+
$GLOBALS['pagenow'] = 'post.php';
196+
197+
# get around Polylang's capability check
198+
$current_user = wp_get_current_user();
199+
$current_user->allcaps = get_role( 'administrator' )->capabilities;
200+
201+
$_args = implode( ' ', array_merge( array( 'post', 'update' ), $args ) );
202+
$_assoc_args = empty( $assoc_args ) ? '' : implode( ' ', array_map( function ( $v, $k ) { return "--{$k}='{$v}'"; }, $assoc_args, array_keys( $assoc_args ) ) );
203+
204+
$this->cli->runcommand(
205+
sprintf( '%s %s', $_args, $_assoc_args ),
206+
array( 'return' => false, 'launch' => false, 'exit_error' => false )
207+
);
208+
}
209+
164210
/**
165211
* Delete a post and its translations.
166212
*
@@ -437,7 +483,7 @@ public function list_( $args, $assoc_args ) {
437483
$this->cli->command( array( 'post', 'list' ), $assoc_args );
438484
}
439485

440-
/**
486+
/**
441487
* Generate some posts and their translations.
442488
*
443489
* Creates a specified number of sets of new posts with dummy data.

0 commit comments

Comments
 (0)