Plugin Directory

Changeset 3279408


Ignore:
Timestamp:
04/22/2025 07:57:42 PM (10 months ago)
Author:
reenhanced
Message:

Release version 1.4.0

Location:
wp-connectr/trunk
Files:
44 edited

Legend:

Unmodified
Added
Removed
  • wp-connectr/trunk/changelog.txt

    r3242190 r3279408  
    11*** Changelog ***
     2
     32025-04-22 - version 1.4
     4* Adds password generation and email notification for new user creation
     5
     62025-03-27 - version 1.3.2
     7* Additional updates to support the upcoming WP Connectr Pro. Make sure you have the latest version if you are using the pro version.
     8
     92025-03-06 - version 1.3.1
     10* Just a small fix for upcoming pro version support. Adds ability to use any action hook as trigger.
     11
     122025-02-28 - version 1.3.0
     13* Added dynamic schema support for trigger topics
     14* Added dynamic fetch endpoint for upcoming new action in connector (GetItemV2)
     15
     162025-02-24 - version 1.2.0
     17* User responses now contain much more data
    218
    3192025-02-17 - version 1.1.1
  • wp-connectr/trunk/readme.txt

    r3263023 r3279408  
    4040Triggers will be supported through an upcoming paid plugin that will extend this plugin. Please watch reenhanced.com for details.
    4141
     42= Why can't I see my custom post types? =
     43Custom post types must be configured to be shown in the rest api in order to be used with this plugin. You can do this by adding the following to your custom post type registration:
     44```php
     45'show_in_rest' => true,
     46```
     47
     48There may also be a setting in your custom post type registration admin page to enable this. Either one will work, but until you do this, these custom post types will not be available in the plugin.
     49
    4250= How can I get support? =
    4351
     
    4553
    4654== Changelog ==
     55
     562025-04-22 - version 1.4
     57* Adds password generation and email notification for new user creation
    4758
    48592025-03-27 - version 1.3.2
  • wp-connectr/trunk/src/PowerResource/User/Controller.php

    r3246049 r3279408  
    4747    }
    4848
     49    public function rest_after_insert_user( $user, $request ) {
     50        // Only send if this is a create (not update)
     51        if ( empty( $request['send_user_notification'] ) || ! $request['send_user_notification'] ) {
     52            return;
     53        }
     54
     55        $user_obj = get_userdata( $user->ID );
     56        if ( ! $user_obj ) {
     57            return;
     58        }
     59
     60        // Try to get the password from the request
     61        $password = isset( $request['password'] ) ? $request['password'] : '';
     62
     63        $site_name = get_bloginfo( 'name' );
     64        $site_url  = home_url();
     65        $login_url = wp_login_url();
     66
     67        $to      = $user_obj->user_email;
     68        $subject = sprintf( __( '[%s] Your account details', 'wp-connectr' ), $site_name );
     69
     70        $message = sprintf(
     71            __( "Welcome to %s!\n\nYour account has been created for %s.\n\nUsername: %s\nPassword: %s\nLogin URL: %s\n\nFor your security, please change your password after logging in.\n", 'wp-connectr' ),
     72            $site_name,
     73            $site_url,
     74            $user_obj->user_login,
     75            $password,
     76            $login_url
     77        );
     78
     79        $this->logger->debug( 'Sending user notification email:' . var_export( array( 'to' => $to, 'subject' => $subject, 'message' => $message ), true ) );
     80
     81        wp_mail( $to, $subject, $message );
     82    }
     83
     84    public function create_item( $request ) {
     85        // If password is not set, generate a random one
     86        if ( empty( $request['password'] ) ) {
     87            $request['password'] = wp_generate_password( 20, false );
     88        }
     89
     90        // If the user is set to be notified, add_filter to rest_after_insert_user
     91        if ( ! empty( $request['send_user_notification'] ) && $request['send_user_notification'] ) {
     92            add_action( 'rest_after_insert_user', array( $this, 'rest_after_insert_user' ), 10, 2 );
     93        }
     94
     95        return parent::create_item( $request );
     96    }
     97
    4998    public function get_collection_params() {
    5099        $query_params = parent::get_collection_params();
     
    69118        $args['roles']['items']['enum'] = array_keys( $all_wp_roles );
    70119
     120        if ( WP_REST_Server::CREATABLE === $method ) {
     121            $args['password'] = array_merge(
     122                $args['password'],
     123                array(
     124                    'description' => __( 'The password for the user. Leave blank to generate', 'wp-connectr' ),
     125                    'required'    => false,
     126                ),
     127            );
     128
     129            // Add send_user_notification
     130            $args['send_user_notification'] = array(
     131                'description' => __( 'Whether to send the user a notification about their new account.', 'wp-connectr' ),
     132                'type'        => 'boolean',
     133                'default'     => true,
     134            );
     135        }
     136
     137
    71138        return $args;
    72139    }
  • wp-connectr/trunk/vendor/composer/installed.php

    r3263023 r3279408  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '90fbcf5c8978fdf471e73a0137612c7cc9622915',
     6        'reference' => '74d5530ee4bafdba0bb89e5d29ce7538870125eb',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4444            'pretty_version' => 'dev-main',
    4545            'version' => 'dev-main',
    46             'reference' => '90fbcf5c8978fdf471e73a0137612c7cc9622915',
     46            'reference' => '74d5530ee4bafdba0bb89e5d29ce7538870125eb',
    4747            'type' => 'wordpress-plugin',
    4848            'install_path' => __DIR__ . '/../../',
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ArgumentResolverTrait.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/DefaultValueInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/ArrayArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/BooleanArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/CallableArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/FloatArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/IntegerArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/ObjectArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/Literal/StringArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/LiteralArgumentInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgument.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Argument/ResolvableArgumentInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Container.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ContainerAwareTrait.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/Definition.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregate.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionAggregateInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Definition/DefinitionInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/DefinitionContainerInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/ContainerException.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Exception/NotFoundException.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/Inflector.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregate.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorAggregateInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/Inflector/InflectorInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ReflectionContainer.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/AbstractServiceProvider.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/BootableServiceProviderInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregate.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/league/container/src/ServiceProvider/ServiceProviderInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/psr/container/src/ContainerInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/vendor_prefixed/psr/container/src/NotFoundExceptionInterface.php

    r3263023 r3279408  
    33 * @license MIT
    44 *
    5  * Modified by reenhanced on 27-March-2025 using {@see https://github.com/BrianHenryIE/strauss}.
     5 * Modified by reenhanced on 22-April-2025 using {@see https://github.com/BrianHenryIE/strauss}.
    66 */
    77
  • wp-connectr/trunk/wp-connectr.php

    r3263023 r3279408  
    2727 * Plugin URI:        https://www.reenhanced.com/products/wordpress-connector/
    2828 * Description:       Deeply integrates WordPress with Microsoft Power Automate. Microsoft Certified. Easily connect your site to Microsoft SharePoint, Dynamics, Teams or over 1000 other services.
    29  * Version:           1.3.2
     29 * Version:           1.4.0
    3030 * Author:            Reenhanced LLC
    3131 * License:           GPL-2.0+
     
    3434 *
    3535 */
    36 define( 'WP_CONNECTR_VERSION', '1.3.2' );
     36define( 'WP_CONNECTR_VERSION', '1.4.0' );
    3737
    3838 /*
Note: See TracChangeset for help on using the changeset viewer.