Command::edit_item( $args,  $assoc_args )

Open an existing item in the editor


Source Source

File: libraries/lifterlms-cli/src/Commands/Restful/Command.php

309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
public function edit_item( $args, $assoc_args ) {
    $assoc_args['context']         = 'edit';
    list( $status, $options_body ) = $this->do_request( 'OPTIONS', $this->get_filled_route( $args ), $assoc_args );
    if ( empty( $options_body['schema'] ) ) {
        \WP_CLI::error( 'Cannot edit - no schema found for resource.' );
    }
    $schema                           = $options_body['schema'];
    list( $status, $resource_fields ) = $this->do_request( 'GET', $this->get_filled_route( $args ), $assoc_args );
    $editable_fields                  = array();
    foreach ( $resource_fields as $key => $value ) {
        if ( ! isset( $schema['properties'][ $key ] ) || ! empty( $schema['properties'][ $key ]['readonly'] ) ) {
            continue;
        }
        $properties = $schema['properties'][ $key ];
        if ( isset( $properties['properties'] ) ) {
            $parent_key = $key;
            $properties = $properties['properties'];
            foreach ( $value as $key => $value ) {
                if ( isset( $properties[ $key ] ) && empty( $properties[ $key ]['readonly'] ) ) {
                    if ( ! isset( $editable_fields[ $parent_key ] ) ) {
                        $editable_fields[ $parent_key ] = array();
                    }
                    $editable_fields[ $parent_key ][ $key ] = $value;
                }
            }
            continue;
        }
        if ( empty( $properties['readonly'] ) ) {
            $editable_fields[ $key ] = $value;
        }
    }
    if ( empty( $editable_fields ) ) {
        \WP_CLI::error( 'Cannot edit - no editable fields found on schema.' );
    }
    $ret = \WP_CLI\Utils\launch_editor_for_input( \Spyc::YAMLDump( $editable_fields ), sprintf( 'Editing %s %s', $schema['title'], $args[0] ) );
    if ( false === $ret ) {
        \WP_CLI::warning( 'No edits made.' );
    } else {
        list( $status, $body ) = $this->do_request( 'POST', $this->get_filled_route( $args ), \Spyc::YAMLLoadString( $ret ) );
        \WP_CLI::success( "Updated {$schema['title']} {$args[0]}." );
    }
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.