Skip to content
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

Save post sharing logs to ROP API #1025

Merged
merged 3 commits into from
Feb 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions includes/admin/abstract/class-rop-services-abstract.php
Original file line number Diff line number Diff line change
@@ -922,4 +922,49 @@ function( $d ) {
return $valid;
}

/**
* Capture logs on ROP API.
*
* @since 9.1.3
* @access public
*
* @param array $data API payload data.
* @return bool
*/
public function save_logs_on_rop( $data = array() ) {
if ( empty( $data ) ) {
return false;
}

$license_key = apply_filters( 'product_rop_license_key', '' );
$license_status = apply_filters( 'product_rop_license_status', 'invalid' );

// Send API request.
$response = wp_remote_post(
ROP_POST_LOGS_API,
apply_filters(
'rop_post_capture_logs_api_args',
array(
'timeout' => 100,
'body' => array_merge(
array(
'website' => get_site_url(),
'license' => $license_key,
'license_status' => $license_status,
),
$data
),
)
)
);

if ( is_wp_error( $response ) ) {
return false;
}

$body = json_decode( wp_remote_retrieve_body( $response ) );
$response_code = wp_remote_retrieve_response_code( $response );
return 200 === $response_code ? $body->status : false;
}

}
21 changes: 21 additions & 0 deletions includes/admin/services/class-rop-facebook-service.php
Original file line number Diff line number Diff line change
@@ -495,6 +495,17 @@ public function share( $post_details, $args = array() ) {

$response = Rop_Pro_Instagram_Service::share( $post_details, $hashtags, $args );

if ( $response ) {
// Save log.
$this->save_logs_on_rop(
array(
'network' => $post_details['service'],
'handle' => $args['user'],
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);
}
return $response;

}
@@ -540,6 +551,16 @@ public function share( $post_details, $args = array() ) {
}

if ( $this->try_post( $sharing_data['post_data'], $args['id'], $args['access_token'], $post_id, $sharing_data['type'] ) ) {
// Save log.
$this->save_logs_on_rop(
array(
'network' => $post_details['service'],
'handle' => $args['user'],
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);

$this->logger->alert_success(
sprintf(
'Successfully shared %s to %s on %s ',
9 changes: 9 additions & 0 deletions includes/admin/services/class-rop-gmb-service.php
Original file line number Diff line number Diff line change
@@ -521,6 +521,15 @@ public function share( $post_details, $args = array() ) {

if ( in_array( $response->state, array( 'LIVE', 'PROCESSING' ), true ) ) {

// Save log.
$this->save_logs_on_rop(
array(
'network' => $post_details['service'],
'handle' => $args['user'],
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);
$this->logger->alert_success(
sprintf(
'Successfully shared %s to %s on Google My Business ',
11 changes: 11 additions & 0 deletions includes/admin/services/class-rop-linkedin-service.php
Original file line number Diff line number Diff line change
@@ -620,6 +620,17 @@ public function share( $post_details, $args = array() ) {
}

$title = isset( $new_post['content']['media']['title'] ) ? $new_post['content']['media']['title'] : $new_post['content']['article']['title'];

// Save log.
$this->save_logs_on_rop(
array(
'network' => $post_details['service'],
'handle' => $args['user'],
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);

$this->logger->alert_success(
sprintf(
'Successfully shared %s to %s on %s ',
10 changes: 10 additions & 0 deletions includes/admin/services/class-rop-tumblr-service.php
Original file line number Diff line number Diff line change
@@ -570,6 +570,16 @@ public function share( $post_details, $args = array() ) {

$api->createPost( $args['id'] . '.tumblr.com', $new_post );

// Save log.
$this->save_logs_on_rop(
array(
'network' => $post_details['service'],
'handle' => $args['user'],
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);

$this->logger->alert_success(
sprintf(
'Successfully shared %s to %s on %s ',
12 changes: 12 additions & 0 deletions includes/admin/services/class-rop-twitter-service.php
Original file line number Diff line number Diff line change
@@ -738,6 +738,7 @@ public function share( $post_details, $args = array() ) {
}

if ( isset( $response['data'] ) && ! empty( $response['data']['id'] ) ) {

if ( $api && ! empty( $this->share_link_text ) ) {
// Post the first comment (replying to the tweet).
$comment = $api->post(
@@ -764,6 +765,17 @@ public function share( $post_details, $args = array() ) {
);
}
}

// Save log.
$this->save_logs_on_rop(
array(
'network' => $post_details['service'],
'handle' => $args['user'],
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);

$this->logger->alert_success(
sprintf(
'Successfully shared %s to %s on %s ',
11 changes: 11 additions & 0 deletions includes/admin/services/class-rop-vk-service.php
Original file line number Diff line number Diff line change
@@ -498,6 +498,7 @@ public function share( $post_details, $args = array() ) {
);

if ( ! empty( $response['post_id'] ) ) {

// Create the first comment if the share link text is not empty.
if ( ! empty( $this->share_link_text ) ) {
$create_comment = $client->wall()->createComment(
@@ -520,6 +521,16 @@ public function share( $post_details, $args = array() ) {
}
}

// Save log.
$this->save_logs_on_rop(
array(
'network' => 'Vkontakte',
'handle' => $args['user'],
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);

$this->logger->alert_success(
sprintf(
'Successfully shared %s to %s on Vkontakte ',
10 changes: 10 additions & 0 deletions includes/admin/services/class-rop-webhook-service.php
Original file line number Diff line number Diff line change
@@ -146,6 +146,16 @@ function( $header ) {
$this->logger->alert_error( $log_account_used . Rop_I18n::get_labels( 'errors.webhook_error' ) . $response->get_error_message() );
return false;
} elseif ( true === $response ) {
// Save log.
$this->save_logs_on_rop(
array(
'network' => $this->service_name,
'handle' => $this->display_name,
'content' => $post_details['content'],
'link' => $post_details['post_url'],
)
);

$this->logger->alert_success(
sprintf(
'Successfully shared %s to %s on %s ',
1 change: 1 addition & 0 deletions tweet-old-post.php
Original file line number Diff line number Diff line change
@@ -184,6 +184,7 @@ function run_rop() {
define( 'ROP_INSTALL_TOKEN_OPTION', 'rop_install_token' );
define( 'ROP_POST_SHARING_CONTROL_API', ROP_AUTH_APP_URL . '/wp-json/auth-option/v1/post-sharing-control' );
define( 'ROP_POST_ON_X_API', ROP_AUTH_APP_URL . '/wp-json/auth-option/v1/post-on-x' );
define( 'ROP_POST_LOGS_API', ROP_AUTH_APP_URL . '/wp-json/auth-option/v1/logs' );

add_filter(
'themeisle_sdk_compatibilities/' . basename( ROP_LITE_PATH ),

Unchanged files with check annotations Beta

CounterInput,
VueTimepicker
},
props: ['account_id', 'license'],

Check warning on line 160 in vue/src/vue-elements/account-schedule.vue

GitHub Actions / JS Lint (18.x)

Prop "account_id" is not in camelCase

Check warning on line 160 in vue/src/vue-elements/account-schedule.vue

GitHub Actions / JS Lint (18.x)

Prop "account_id" should define at least its type

Check warning on line 160 in vue/src/vue-elements/account-schedule.vue

GitHub Actions / JS Lint (18.x)

Prop "license" should define at least its type
data: function () {
return {
days: {
<div class="panel-body">
<div class="d-inline-block mt-2 column col-12">
<p class="text-gray">
<i class="fa fa-info-circle" /> <span v-html="labels.accounts_selector" />

Check warning on line 6 in vue/src/vue-elements/accounts-selector-panel.vue

GitHub Actions / JS Lint (18.x)

'v-html' directive can lead to XSS attack
</p>
</div>
<empty-active-accounts v-if="accountsCount === 0" />
<div
v-if="twitter_warning"
class="toast toast-warning"
v-html="labels.twitter_warning"

Check warning on line 7 in vue/src/vue-elements/accounts-tab-panel.vue

GitHub Actions / JS Lint (18.x)

'v-html' directive can lead to XSS attack
/>
<div class="container">
<div
>
<div class="column col-12">
<p class="upsell">
<i class="fa fa-info-circle " /> <span v-html="labels.upsell_accounts" />

Check warning on line 78 in vue/src/vue-elements/accounts-tab-panel.vue

GitHub Actions / JS Lint (18.x)

'v-html' directive can lead to XSS attack
</p>
</div>
</div>
export default {
name: 'AccountView',
components: {
SignInBtn,

Check warning on line 113 in vue/src/vue-elements/accounts-tab-panel.vue

GitHub Actions / JS Lint (18.x)

The "SignInBtn" component has been registered but not used
ServiceUserTile,
AddAccountTile,
WebhookAccountModal,

Check warning on line 116 in vue/src/vue-elements/accounts-tab-panel.vue

GitHub Actions / JS Lint (18.x)

The "WebhookAccountModal" component has been registered but not used
'vue_spinner': vue_spinner
},
data: function () {
}
}
}
this.twitter_warning = twitter > 1;

Check warning on line 153 in vue/src/vue-elements/accounts-tab-panel.vue

GitHub Actions / JS Lint (18.x)

Unexpected side effect in "accounts" computed property
this.$log.info('All accounts: ', all_accounts);
this.$log.debug('Preloading: ', this.$store.state.hide_preloading);
this.accountsCount = Object.keys(all_accounts).length;

Check warning on line 156 in vue/src/vue-elements/accounts-tab-panel.vue

GitHub Actions / JS Lint (18.x)

Unexpected side effect in "accounts" computed property
return all_accounts;
},
/**