-
Notifications
You must be signed in to change notification settings - Fork 9
/
apg-sms.php
361 lines (312 loc) · 18.2 KB
/
apg-sms.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
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
351
352
353
354
355
356
357
358
359
360
361
<?php
/*
Plugin Name: WC - APG SMS Notifications
Version: 2.27.0.1
Plugin URI: https://wordpress.org/plugins/woocommerce-apg-sms-notifications/
Description: Add to WooCommerce SMS notifications to your clients for order status changes. Also you can receive an SMS message when the shop get a new order and select if you want to send international SMS. The plugin add the international dial code automatically to the client phone number.
Author URI: https://artprojectgroup.es/
Author: Art Project Group
Requires at least: 5.0
Tested up to: 6.8
WC requires at least: 5.6
WC tested up to: 9.5
Text Domain: woocommerce-apg-sms-notifications
Domain Path: /languages
@package WC - APG SMS Notifications
@category Core
@author Art Project Group
*/
//Igual no deberías poder abrirme
defined( 'ABSPATH' ) || exit;
//Definimos constantes
define( 'DIRECCION_apg_sms', plugin_basename( __FILE__ ) );
//Funciones generales de APG
include_once( 'includes/admin/funciones-apg.php' );
//¿Está activo WooCommerce?
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( is_plugin_active( 'woocommerce/woocommerce.php' ) || is_network_only_plugin( 'woocommerce/woocommerce.php' ) ) {
//Añade compatibilidad con HPOS
add_action( 'before_woocommerce_init', function() {
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
}
} );
//Cargamos funciones necesarias
include_once( 'includes/admin/funciones.php' );
//Comprobamos si está instalado y activo WPML
$wpml_activo = function_exists( 'icl_object_id' );
//Mensajes
$mensajes = [
'propietario' => 'mensaje_pedido',
'pending' => 'mensaje_pendiente',
'failed' => 'mensaje_fallido',
'on-hold' => 'mensaje_recibido',
'processing' => 'mensaje_procesando',
'completed' => 'mensaje_completado',
'refunded' => 'mensaje_devuelto',
'cancelled' => 'mensaje_cancelado',
'nota' => 'mensaje_nota',
];
//Actualiza las traducciones de los mensajes SMS
function apg_registra_wpml( $apg_sms_settings ) {
global $wpml_activo, $mensajes;
//Registramos los mensajes en WPML
foreach ( $mensajes as $mensaje ) {
if ( $wpml_activo && function_exists( 'icl_register_string' ) ) { //Versión anterior a la 3.2
icl_register_string( 'apg_sms', $mensaje, esc_textarea( $apg_sms_settings[ $mensaje ] ) );
} else if ( $wpml_activo ) { //Versión 3.2 o superior
do_action( 'wpml_register_single_string', 'apg_sms', $mensaje, esc_textarea( $apg_sms_settings[ $mensaje ] ) );
}
}
}
//Inicializamos las traducciones y los proveedores
function apg_sms_inicializacion() {
global $apg_sms_settings, $wpml_activo;
if ( $wpml_activo ) {
apg_registra_wpml( $apg_sms_settings );
}
}
add_action( 'init', 'apg_sms_inicializacion' );
//Pinta el formulario de configuración
function apg_sms_tab() {
include( 'includes/admin/funciones-formulario.php' );
include( 'includes/formulario.php' );
}
//Añade en el menú a WooCommerce
function apg_sms_admin_menu() {
add_submenu_page( 'woocommerce', __( 'APG SMS Notifications', 'woocommerce-apg-sms-notifications' ), __( 'SMS Notifications', 'woocommerce-apg-sms-notifications' ) , 'manage_woocommerce', 'apg_sms', 'apg_sms_tab' );
}
add_action( 'admin_menu', 'apg_sms_admin_menu', 15 );
//Carga los scripts y CSS de WooCommerce
function apg_sms_screen_id( $woocommerce_screen_ids ) {
$woocommerce_screen_ids[] = 'woocommerce_page_apg_sms';
return $woocommerce_screen_ids;
}
add_filter( 'woocommerce_screen_ids', 'apg_sms_screen_id' );
//Registra las opciones
function apg_sms_registra_opciones() {
global $apg_sms_settings;
register_setting( 'apg_sms_settings_group', 'apg_sms_settings', 'apg_sms_update' );
$apg_sms_settings = get_option( 'apg_sms_settings' );
}
add_action( 'admin_init', 'apg_sms_registra_opciones' );
function apg_sms_update( $apg_sms_settings ) {
apg_registra_wpml( $apg_sms_settings );
return $apg_sms_settings;
}
//Procesa el SMS
function apg_sms_procesa_estados( $numero_de_pedido, $temporizador = false ) {
global $apg_sms_settings, $wpml_activo, $mensajes;
$pedido = wc_get_order( $numero_de_pedido );
$estado = is_callable( [ $pedido, 'get_status' ] ) ? $pedido->get_status() : $pedido->status;
//Inicializa el mensaje para un estado personalizado
if ( ! isset( $mensajes[ $estado ] ) ) {
$mensajes[ $estado ] = $estado;
}
//Comprobamos si se tiene que enviar el mensaje o no
if ( isset( $apg_sms_settings[ 'mensajes' ] ) ) {
if ( ( $estado == 'on-hold' || $estado == 'processing' ) && ! array_intersect( [ "todos", "mensaje_pedido", $mensajes[ $estado ] ], $apg_sms_settings[ 'mensajes' ] ) ) {
return;
} else if ( ! array_intersect( [ "todos", $mensajes[ $estado ] ], $apg_sms_settings[ 'mensajes' ] ) ) {
return;
}
} else {
return;
}
//Permitir que otros plugins impidan que se envíe el SMS
if ( ! apply_filters( 'apg_sms_send_message', true, $pedido ) ) {
return;
}
//Recoge datos del formulario de facturación
$billing_country = is_callable( [ $pedido, 'get_billing_country' ] ) ? $pedido->get_billing_country() : $pedido->billing_country;
$billing_phone = is_callable( [ $pedido, 'get_billing_phone' ] ) ? $pedido->get_billing_phone() : $pedido->billing_phone;
$shipping_country = is_callable( [ $pedido, 'get_shipping_country' ] ) ? $pedido->get_shipping_country() : $pedido->shipping_country;
$campo_envio = esc_attr( $pedido->get_meta( $apg_sms_settings[ 'campo_envio' ], true ) );
$telefono = apg_sms_procesa_el_telefono( $pedido, $billing_phone, esc_attr( $apg_sms_settings[ 'servicio' ] ) );
$telefono_envio = apg_sms_procesa_el_telefono( $pedido, $campo_envio, esc_attr( $apg_sms_settings[ 'servicio' ] ), false, true );
$enviar_envio = ( ! empty( $telefono_envio ) && $telefono != $telefono_envio && isset( $apg_sms_settings[ 'envio' ] ) && $apg_sms_settings[ 'envio' ] == 1 ) ? true : false;
$internacional = ( isset( $billing_country ) && ( WC()->countries->get_base_country() != $billing_country ) ) ? true : false;
$internacional_envio = ( isset( $shipping_country ) && ( WC()->countries->get_base_country() != $shipping_country ) ) ? true : false;
//Teléfono propietario
if ( strpos( $apg_sms_settings[ 'telefono' ], "|" ) ) { //Existe más de uno
$administradores = explode( "|", esc_attr( $apg_sms_settings[ 'telefono' ] ) );
foreach ( $administradores as $administrador ) {
$telefono_propietario[] = apg_sms_procesa_el_telefono( $pedido, $administrador, esc_attr( $apg_sms_settings[ 'servicio' ] ), true );
}
} else {
$telefono_propietario = apg_sms_procesa_el_telefono( $pedido, esc_attr( $apg_sms_settings[ 'telefono' ] ), esc_attr( $apg_sms_settings[ 'servicio' ] ), true );
}
//Genera las variables con los textos personalizados
foreach ( $mensajes as $mensaje ) {
if ( function_exists( 'icl_register_string' ) || ! $wpml_activo ) { //WPML versión anterior a la 3.2 o no instalado
$$mensaje = ( $wpml_activo ) ? icl_translate( 'apg_sms', $mensaje, esc_textarea( $apg_sms_settings[ $mensaje ] ) ) : esc_textarea( $apg_sms_settings[ $mensaje ] );
} else if ( $wpml_activo ) { //WPML versión 3.2 o superior
$$mensaje = apply_filters( 'wpml_translate_single_string', esc_textarea( $apg_sms_settings[ $mensaje ] ), 'apg_sms', $mensaje );
}
}
unset( $mensaje ); //Evita mensaje vacío con el temporizador
//Cargamos los proveedores SMS
include_once( 'includes/admin/proveedores.php' );
//Envía el SMS
$variables = esc_textarea( $apg_sms_settings[ 'variables' ] );
//Mensaje SMS
if ( $estado == 'on-hold' ) { //Pedido en espera
//Mensaje para el/los propietarios
if ( !! array_intersect( [ "todos", "mensaje_pedido" ], $apg_sms_settings[ 'mensajes' ] ) && isset( $apg_sms_settings[ 'notificacion' ] ) && $apg_sms_settings[ 'notificacion' ] == 1 && ! $temporizador ) { //Evita el envío en el temporizador
if ( ! is_array( $telefono_propietario ) ) {
apg_sms_envia_sms( $apg_sms_settings, $telefono_propietario, apg_sms_procesa_variables( $mensaje_pedido, $pedido, $variables ), $estado, true ); //Mensaje para el propietario
} else {
foreach ( $telefono_propietario as $administrador ) {
apg_sms_envia_sms( $apg_sms_settings, $administrador, apg_sms_procesa_variables( $mensaje_pedido, $pedido, $variables ), $estado, true ); //Mensaje para los propietarios
}
}
}
//Mensaje para el cliente
if ( !! array_intersect( [ "todos", $mensajes[ $estado ] ], $apg_sms_settings[ 'mensajes' ] ) ) {
//Limpia el temporizador para pedidos recibidos
wp_clear_scheduled_hook( 'apg_sms_ejecuta_el_temporizador' );
//Retardo para pedidos recibidos
if ( isset( $apg_sms_settings[ 'retardo' ] ) && $apg_sms_settings[ 'retardo' ] > 0 && ( ! intval( $pedido->get_meta( 'apg_sms_retardo_enviado', true ) ) == 1 ) ) {
wp_schedule_single_event( time() + ( absint( $apg_sms_settings[ 'retardo' ] ) * 60 ), 'apg_sms_ejecuta_el_retraso', [ $numero_de_pedido ] );
$pedido->update_meta_data( 'apg_sms_retardo_enviado', -1 );
$pedido->save();
} else { //Envío normal
$mensaje = apg_sms_procesa_variables( ${ $mensajes[ $estado ] }, $pedido, $variables ); //Mensaje para el cliente
}
//Temporizador para pedidos recibidos
if ( isset( $apg_sms_settings[ 'temporizador' ] ) && $apg_sms_settings[ 'temporizador' ] > 0 ) {
wp_schedule_single_event( time() + ( absint( $apg_sms_settings[ 'temporizador' ] ) * 60 * 60 ), 'apg_sms_ejecuta_el_temporizador' );
}
}
} else if ( $estado == 'processing' ) { //Pedido procesando
//Mensaje para el/los propietarios
if ( !! array_intersect( [ "todos", "mensaje_pedido" ], $apg_sms_settings[ 'mensajes' ] ) && isset( $apg_sms_settings[ 'notificacion' ] ) && $apg_sms_settings[ 'notificacion' ] == 1 ) {
if ( ! is_array( $telefono_propietario ) ) {
apg_sms_envia_sms( $apg_sms_settings, $telefono_propietario, apg_sms_procesa_variables( $mensaje_pedido, $pedido, $variables ), $estado, true ); //Mensaje para el propietario
} else {
foreach ( $telefono_propietario as $administrador ) {
apg_sms_envia_sms( $apg_sms_settings, $administrador, apg_sms_procesa_variables( $mensaje_pedido, $pedido, $variables ), $estado, true ); //Mensaje para los propietarios
}
}
}
//Mensaje para el cliente
if ( !! array_intersect( [ "todos", $mensajes[ $estado ] ], $apg_sms_settings[ 'mensajes' ] ) ) {
$mensaje = apg_sms_procesa_variables( ${ $mensajes[ $estado ] }, $pedido, $variables );
}
} else if ( $estado != 'on-hold' && $estado != 'processing' ) { //El resto de estados
if ( !! array_intersect( [ "todos", $mensajes[ $estado ] ], $apg_sms_settings[ 'mensajes' ] ) ) {
$mensaje = apg_sms_procesa_variables( ${ $mensajes[ $estado ] }, $pedido, $variables );
} else {
$mensaje = apg_sms_procesa_variables( $apg_sms_settings[ $estado ], $pedido, $variables );
}
}
//Se envía el mensaje SMS si no se ha enviado aún
if ( isset( $mensaje ) && ( ! $internacional || ( isset( $apg_sms_settings[ 'internacional' ] ) && $apg_sms_settings[ 'internacional' ] == 1 ) ) ) {
if ( ! is_array( $telefono ) ) {
apg_sms_envia_sms( $apg_sms_settings, $telefono, $mensaje, $estado ); //Mensaje para el teléfono de facturación
} else {
foreach ( $telefono as $cliente ) {
apg_sms_envia_sms( $apg_sms_settings, $cliente, $mensaje, $estado ); //Mensaje para los teléfonos recibidos
}
}
if ( $enviar_envio ) {
apg_sms_envia_sms( $apg_sms_settings, $telefono_envio, $mensaje, $estado ); //Mensaje para el teléfono de envío
}
}
}
add_action( 'woocommerce_order_status_changed', 'apg_sms_procesa_estados', 10 ); //Funciona cuando el pedido cambia de estado
//Retraso
function apg_sms_retardo( $numero_de_pedido ) {
global $apg_sms_settings;
if ( $pedido = wc_get_order( intval( $numero_de_pedido ) ) ) {
$retraso_enviado = $pedido->get_meta( 'apg_sms_retardo_enviado', true );
$estado = is_callable( [ $pedido, 'get_status' ] ) ? $pedido->get_status() : $pedido->status;
if ( intval( $retraso_enviado ) == -1 ) { //Solo enviamos si no ha cambiado de estado
$pedido->update_meta_data( 'apg_sms_retardo_enviado', 1 );
if ( $estado == 'on-hold' ) {
apg_sms_procesa_estados( $numero_de_pedido );
$retraso_enviado = $pedido->get_meta( 'apg_sms_retardo_enviado', true );
if ( intval( $retraso_enviado ) == -1 ) {
$pedido->update_meta_data( 'apg_sms_retardo_enviado', 1 );
apg_sms_procesa_estados( $numero_de_pedido );
}
}
$pedido->save();
}
}
}
add_action( 'apg_sms_ejecuta_el_retraso', 'apg_sms_retardo' );
//Temporizador
function apg_sms_temporizador() {
global $apg_sms_settings;
$pedidos = wc_get_orders( [
'limit' => -1,
'date_created' => '<' . ( time() - ( absint( $apg_sms_settings[ 'temporizador' ] ) * 60 * 60 ) - 1 ),
'status' => 'on-hold',
] );
if ( $pedidos ) {
foreach ( $pedidos as $pedido ) {
apg_sms_procesa_estados( is_callable( [ $pedido, 'get_id' ] ) ? $pedido->get_id() : $pedido->id, true );
}
}
}
add_action( 'apg_sms_ejecuta_el_temporizador', 'apg_sms_temporizador' );
//Envía las notas de cliente por SMS
function apg_sms_procesa_notas( $datos ) {
global $apg_sms_settings, $wpml_activo;
//Comprobamos si se tiene que enviar el mensaje
if ( isset( $apg_sms_settings[ 'mensajes' ] ) && ! array_intersect( [ "todos", "mensaje_nota" ], $apg_sms_settings[ 'mensajes' ] ) ) {
return;
}
//Pedido
$numero_de_pedido = $datos[ 'order_id' ];
$pedido = wc_get_order( $numero_de_pedido );
//Recoge datos del formulario de facturación
$billing_country = is_callable( [ $pedido, 'get_billing_country' ] ) ? $pedido->get_billing_country() : $pedido->billing_country;
$billing_phone = is_callable( [ $pedido, 'get_billing_phone' ] ) ? $pedido->get_billing_phone() : $pedido->billing_phone;
$shipping_country = is_callable( [ $pedido, 'get_shipping_country' ] ) ? $pedido->get_shipping_country() : $pedido->shipping_country;
$campo_envio = $pedido->get_meta( esc_attr( $apg_sms_settings[ 'campo_envio' ] ), true );
$telefono = apg_sms_procesa_el_telefono( $pedido, $billing_phone, esc_attr( $apg_sms_settings[ 'servicio' ] ) );
$telefono_envio = apg_sms_procesa_el_telefono( $pedido, $campo_envio, esc_attr( $apg_sms_settings[ 'servicio' ] ), false, true );
$enviar_envio = ( $telefono != $telefono_envio && isset( $apg_sms_settings[ 'envio' ] ) && $apg_sms_settings[ 'envio' ] == 1 ) ? true : false;
$internacional = ( $billing_country && ( WC()->countries->get_base_country() != $billing_country ) ) ? true : false;
$internacional_envio = ( $shipping_country && ( WC()->countries->get_base_country() != $shipping_country ) ) ? true : false;
//Genera la variable con el texto personalizado
if ( function_exists( 'icl_register_string' ) || ! $wpml_activo ) { //WPML versión anterior a la 3.2 o no instalado
$mensaje_nota = ( $wpml_activo ) ? icl_translate( 'apg_sms', 'mensaje_nota', esc_textarea( $apg_sms_settings[ 'mensaje_nota' ] ) ) : esc_textarea( $apg_sms_settings[ 'mensaje_nota' ] );
} else if ( $wpml_activo ) { //WPML versión 3.2 o superior
$mensaje_nota = apply_filters( 'wpml_translate_single_string', esc_textarea( $apg_sms_settings[ 'mensaje_nota' ] ), 'apg_sms', 'mensaje_nota' );
}
//Cargamos los proveedores SMS
include_once( 'includes/admin/proveedores.php' );
//Envía el SMS
if ( ! $internacional || ( isset( $apg_sms_settings[ 'internacional' ] ) && $apg_sms_settings[ 'internacional' ] == 1 ) ) {
$variables = esc_textarea( $apg_sms_settings[ 'variables' ] );
if ( ! is_array( $telefono ) ) {
apg_sms_envia_sms( $apg_sms_settings, $telefono, apg_sms_procesa_variables( $mensaje_nota, $pedido, $variables, wptexturize( $datos[ 'customer_note' ] ) ), 'mensaje_nota' ); //Mensaje para el teléfono de facturación
} else {
foreach ( $telefono as $cliente ) {
apg_sms_envia_sms( $apg_sms_settings, $cliente, apg_sms_procesa_variables( $mensaje_nota, $pedido, $variables, wptexturize( $datos[ 'customer_note' ] ) ), 'mensaje_nota' ); //Mensaje para los teléfonos recibidos
}
}
if ( $enviar_envio ) {
apg_sms_envia_sms( $apg_sms_settings, $telefono_envio, apg_sms_procesa_variables( $mensaje_nota, $pedido, $variables, wptexturize( $datos[ 'customer_note' ] ) ), 'mensaje_nota' ); //Mensaje para el teléfono de envío
}
}
}
add_action( 'woocommerce_new_customer_note', 'apg_sms_procesa_notas', 10 );
} else {
add_action( 'admin_notices', 'apg_sms_requiere_wc' );
}
//Muestra el mensaje de activación de WooCommerce y desactiva el plugin
function apg_sms_requiere_wc() {
global $apg_sms;
echo '<div class="notice notice-error is-dismissible" id="woocommerce-apg-sms-notifications"><h3>' . $apg_sms[ 'plugin' ] . '</h3><h4>' . __( "This plugin require WooCommerce active to run!", 'woocommerce-apg-sms-notifications' ) . '</h4></div>';
deactivate_plugins( DIRECCION_apg_sms );
}
//Eliminamos todo rastro del plugin al desinstalarlo
function apg_sms_desinstalar() {
delete_option( 'apg_sms_settings' );
delete_transient( 'apg_sms_plugin' );
}
register_uninstall_hook( __FILE__, 'apg_sms_desinstalar' );