/** * Verifica custo mensal e envia alerta Telegram se necessario. */ private static function check_cost_alert() { $limit = (float) get_option( 'rssr_cost_limit_usd', 0 ); if ( $limit <= 0 ) return; global $wpdb; $tbl = $wpdb->prefix . 'rssr_stats'; $month = date( 'Y-m' ); $cost = (float) $wpdb->get_var( $wpdb->prepare( "SELECT SUM(cost_usd) FROM {$tbl} WHERE DATE_FORMAT(created_at, '%%Y-%%m') = %s", $month ) ); $pct = $limit > 0 ? round( ($cost / $limit) * 100 ) : 0; $alert_at = (int) get_option( 'rssr_cost_alert_pct', 80 ); $sent_key = 'rssr_cost_alert_' . $month . '_' . $alert_at; if ( $pct >= $alert_at && ! get_option( $sent_key ) ) { update_option( $sent_key, 1, false ); RSSR_Telegram::send( "*RSS Rewriter - Alerta de Custo*\n\n" . "Custo mensal atingiu *{$pct}%* do limite.\n" . "Gasto: $" . number_format($cost,4) . " / $" . number_format($limit,2) ); } if ( $pct >= 100 ) { $paused_key = 'rssr_cost_paused_' . $month; if ( ! get_option( $paused_key ) ) { update_option( $paused_key, 1, false ); $wpdb->update( $wpdb->prefix . 'rssr_feeds', ['active' => 0], ['active' => 1] ); RSSR_Telegram::send( '*RSS Rewriter*: Limite de custo atingido. Todos os feeds pausados.' ); } } } afetaram - Correio Espírito Santo

Etiqueta: afetaram

Recomendado!