-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restructure config value retrieval #42
Conversation
Fixes #41 |
README.md
Outdated
@@ -106,22 +106,52 @@ the database constants are correct. | |||
|
|||
### wp config get | |||
|
|||
Gets variables, constants, and file includes defined in wp-config.php file. | |||
Get the value of a specific variable or constant defined in wp-config.php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just first glance notice lack of third-person singular here and in list!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed.
src/Config_Command.php
Outdated
*/ | ||
public function get( $_, $assoc_args ) { | ||
public function list_( $args, $assoc_args ) { | ||
$path = Utils\locate_wp_config(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another trivial one, there's a space at the beginning of the line here before the tab, and in 4 other places /^ \t/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed. Copy/paste issue because I copied from a previous implementation I had already previously done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fab stuff. Made a few points but 2 are ignorable and the one about the test can be done later.
Edit: I'll leave you to merge. Have to go off now for a while.
src/Config_Command.php
Outdated
public function list_( $args, $assoc_args ) { | ||
$path = Utils\locate_wp_config(); | ||
if ( ! $path ) { | ||
WP_CLI::error( "'wp-config.php' not found." ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe here and for get
, add a similar spiel as in Runner::check_wp_version()
about Pass --path=path/to/wordpress
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/Config_Command.php
Outdated
|
||
$strict = Utils\get_flag_value( $assoc_args, 'strict' ); | ||
if ( $strict && empty( $args ) ) { | ||
WP_CLI::error( 'The --strict option can only be used in combination with a filter.' ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add a test to config-list.feature
to invoke this error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
continue; | ||
} | ||
|
||
if ( false === strpos( $value['key'], $filter ) ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see you have tests for case but was wondering should this case-insensitive as not strict? (Or maybe add a case-insensitive
flag).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Case-insensitivity will probably open up a huge can of worms. I'd prefer to keep everything case-sensitive for now.
Restructure config value retrieval
wp config list
now produces a list of all config variables, constants and included files.wp config get <key>
now retrieves the value of the requested config key.Note: Default behavior is to retrieve whatever key happens to fit, across both constants and variables. In case there's an ambiguous key that happens to exist as both a variable and a constant (which should be pretty rare), it will throw an error and ask for an explicit
--type=<type>
to disambiguate.