Files
root b6df4dbb92 Snapshot: MLS sync fixes, image refresh, plugin/theme updates
MLS plugin fixes from this session:
- Fix silent insert failures: location column NOT NULL was rejecting wpdb->insert calls,
  causing ~18k new properties since Dec 2025 to be lost. Inserts now build raw SQL
  with ST_PointFromText so the spatial column is populated atomically.
- Auto-refresh expired media URLs in MLS_Media_Handler::fetch_and_cache(), guarded by
  a property-level GET_LOCK so concurrent fetches share one API refresh.
- Normalize WP_Error to null in mls_get_property_image() so callers can rely on the
  documented string|null contract.
- Support comma-separated property_type filters in MLS_Query and MLS_Cluster so the
  homepage "View All Commercial" link (?property_type=Commercial+Sale,Land,Farm)
  actually filters correctly.
- Incremental sync now looks back 10 minutes past the latest modification timestamp
  as a safety margin against missed records.
- Smart sync exits silently (info-level, not warning) when a full sync is in progress.

Operational:
- New cron: weekly full sync Sundays at 3 AM (/usr/local/bin/mls-full-sync).
- New cron: hourly 2GB cap on mls-thumbnails/ and cache/transformed-images/
  (/usr/local/bin/mls-image-cache-cap).
- Logrotate config for wp-content/debug.log (2-day retention, daily rotation,
  delaycompress).

Repo policy:
- CLAUDE.md updated with explicit "commit everything except build artifacts" policy.
- .gitignore: untrack runtime image caches and debug.log rotations.

Other modifications in this snapshot are pre-existing in-flight theme/plugin/db_content_updates work.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 15:32:23 +00:00

277 lines
6.9 KiB
JavaScript
Executable File

/* global wpforms_pluginlanding, wpforms_admin */
/**
* @param wpforms_pluginlanding.activated
* @param wpforms_pluginlanding.activated_pro
* @param wpforms_pluginlanding.download_now
* @param wpforms_pluginlanding.error_could_not_activate
* @param wpforms_pluginlanding.error_could_not_install
* @param wpforms_pluginlanding.is_activated
* @param wpforms_pluginlanding.license_level
* @param wpforms_pluginlanding.result_status
* @param wpforms_pluginlanding.plugins_page
* @param wpforms_pluginlanding.setup_status
* @param wpforms_pluginlanding.step3_button_url
* @param wpforms_pluginlanding.manual_activate_url
* @param wpforms_pluginlanding.manual_install_url
*/
/**
* Landing Pages Common.
*
* @since 1.9.8.6
*/
const WPFormsPagesCommon = window.WPFormsPagesCommon || ( function( document, window, $ ) {
/**
* Elements.
*
* @since 1.9.8.6
*
* @type {Object}
*/
let el = {};
/**
* Public functions and properties.
*
* @since 1.9.8.6
*
* @type {Object}
*/
const app = {
/**
* Start the engine.
*
* @since 1.9.8.6
*/
init: () => {
$( app.ready );
},
/**
* Document ready.
*
* @since 1.9.8.6
*/
ready: () => {
app.initVars();
app.events();
},
/**
* Init variables.
*
* @since 1.9.8.6
*/
initVars: () => {
el = {
$stepInstall: $( 'section.step-install' ),
$stepInstallNum: $( 'section.step-install .num img' ),
$stepSetup: $( 'section.step-setup' ),
$stepSetupNum: $( 'section.step-setup .num img' ),
$stepResult: $( 'section.step-result' ),
$stepResultNum: $( 'section.step-result .num img' ),
};
},
/**
* Register JS events.
*
* @since 1.9.8.6
*/
events: () => {
// Step the 'Install' button click.
el.$stepInstall.on( 'click', 'button', app.stepInstallClick );
// Step 'Setup' button click.
el.$stepSetup.on( 'click', 'button', app.gotoURL );
// Step the 'Addon' button click.
el.$stepResult.on( 'click', 'button', app.gotoURL );
},
/**
* Step the 'Install' button click.
*
* @since 1.9.8.6
*
* @param {Event} e Event object.
*/
stepInstallClick: ( e ) => {
const $btn = $( e.currentTarget );
if ( $btn.hasClass( 'disabled' ) ) {
return;
}
const action = $btn.attr( 'data-action' );
let ajaxAction = '';
switch ( action ) {
case 'activate':
ajaxAction = 'wpforms_activate_addon';
$btn.text( wpforms_pluginlanding.activating );
break;
case 'install':
ajaxAction = 'wpforms_install_addon';
$btn.text( wpforms_pluginlanding.installing );
break;
case 'goto-url':
window.location.href = $btn.attr( 'data-url' );
return;
default:
return;
}
$btn.addClass( 'disabled' );
app.showSpinner( el.$stepInstallNum );
const plugin = $btn.attr( 'data-plugin' );
const data = {
action: ajaxAction,
nonce : wpforms_admin.nonce,
plugin,
type : 'plugin',
};
$.post( wpforms_admin.ajax_url, data )
.done( function( res ) {
app.stepInstallDone( res, $btn, action );
} )
.always( function() {
app.hideSpinner( el.$stepInstallNum );
} );
},
/**
* Done part of the step 'Install'.
*
* @since 1.9.8.6
*
* @param {Object} res Result of $.post() query.
* @param {jQuery} $btn Button.
* @param {string} action Action (for more info look at the app.stepInstallClick() function).
*/
stepInstallDone: ( res, $btn, action ) => { // eslint-disable-line complexity
const success = 'install' === action ? res.success && res.data.is_activated : res.success,
provider = $btn.data( 'provider' );
if ( success ) {
el.$stepInstallNum.attr( 'src', el.$stepInstallNum.attr( 'src' ).replace( 'step-1.', 'step-complete.' ) );
$btn.addClass( 'grey' ).removeClass( 'button-primary' ).text( wpforms_pluginlanding.activated );
app.stepInstallPluginStatus( provider );
} else {
const activationFail = ( 'install' === action && res.success && ! res.data.is_activated ) || 'activate' === action,
installUrl = wpforms_pluginlanding[ provider + '_manual_install_url' ] || '',
activateUrl = wpforms_pluginlanding[ provider + '_manual_activate_url' ] || '',
url = ! activationFail ? installUrl : activateUrl,
msg = ! activationFail ? wpforms_pluginlanding.error_could_not_install : wpforms_pluginlanding.error_could_not_activate,
btn = ! activationFail ? wpforms_pluginlanding.download_now : wpforms_pluginlanding.plugins_page;
$btn.removeClass( 'grey disabled' ).text( btn ).attr( 'data-action', 'goto-url' ).attr( 'data-url', url );
$btn.after( '<p class="error">' + msg + '</p>' );
}
},
/**
* Callback for step 'Install' completion.
*
* @since 1.9.8.6
*
* @param {string} plugin Plugin name.
*/
stepInstallPluginStatus: ( plugin ) => {
const data = {
action: 'wpforms_page_check_' + plugin + '_status',
nonce: wpforms_admin.nonce,
provider: plugin,
};
$.post( wpforms_admin.ajax_url, data ).done( app.stepInstallPluginStatusDone );
},
/**
* Done part of the callback for step 'Install' completion.
*
* @since 1.9.8.6
*
* @param {Object} res Result of $.post() query.
*/
stepInstallPluginStatusDone: ( res ) => {
if ( ! res.success ) {
return;
}
el.$stepSetup.removeClass( 'grey' );
el.$stepSetupBtn = el.$stepSetup.find( 'button' );
if ( res.data.setup_status > 0 ) {
el.$stepSetupNum.attr( 'src', el.$stepSetupNum.attr( 'src' ).replace( 'step-2.svg', 'step-complete.svg' ) );
el.$stepResult.removeClass( 'grey' );
el.$stepResultBtn = el.$stepResult.find( 'button' );
if ( res.data.license_level === 'pro' && res.data.result_status === true ) {
el.$stepResultBtn.text( wpforms_pluginlanding.activated_pro );
el.$stepResultNum.attr( 'src', el.$stepResultNum.attr( 'src' ).replace( 'step-3.svg', 'step-complete.svg' ) );
} else {
el.$stepResultBtn.attr( 'data-url', res.data.step3_button_url );
el.$stepResultBtn.removeClass( 'grey disabled' ).addClass( 'button-primary' );
}
} else {
el.$stepSetupBtn.removeClass( 'grey disabled' ).addClass( 'button-primary' );
}
},
/**
* Go to URL.
*
* @since 1.9.8.6
*
* @param {Event} e Event object.
*/
gotoURL: ( e ) => { // eslint-disable-line no-unused-vars
const $btn = $( e.currentTarget ),
url = $btn.attr( 'data-url' );
if ( $btn.hasClass( 'disabled' ) || ! url ) {
return;
}
window.open( url, '_blank' );
},
/**
* Show spinner.
*
* @since 1.9.8.6
*
* @param {jQuery} $el Element.
*/
showSpinner: ( $el ) => {
$el.siblings( 'i.loader' ).removeClass( 'hidden' );
},
/**
* Hide spinner.
*
* @since 1.9.8.6
*
* @param {jQuery} $el Element.
*/
hideSpinner: ( $el ) => {
$el.show();
$el.siblings( 'i.loader' ).addClass( 'hidden' );
},
};
// Provide public access to functions and properties.
return app;
}( document, window, jQuery ) );
// Initialize.
WPFormsPagesCommon.init();