-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFunctions.php
297 lines (233 loc) · 10.6 KB
/
Functions.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
/******************************************************************************************************************************************************************
*
* NO MOVER LAS SIGUIENTES LINEAS, SON PARA DAR FUNCIONALIDAD A LA API DE AUTENTIFICACIÓN
* FIRMADO: ESTEBAN SALGADO
*
******************************************************************************************************************************************************************/
add_action('rest_api_init', function () {
register_rest_route('book_reader', '/auth/', array(
'methods' => 'POST',
'callback' => 'book_reader_authenticate_user',
'permission_callback' => '__return_true',
));
register_rest_route('book_reader', '/get_user/', array(
'methods' => 'GET',
'callback' => 'book_reader_get_user_info',
'permission_callback' => '__return_true',
));
register_rest_route('book_reader', '/books/', array(
'methods' => 'GET',
'callback' => 'book_reader_get_books',
'permission_callback' => '__return_true',
));
});
function book_reader_authenticate_user($request) {
$email = sanitize_email($request['email']);
$password = sanitize_text_field($request['password']);
$user = wp_authenticate($email, $password);
if (is_wp_error($user)) {
return new WP_REST_Response(['authenticated' => false], 401);
}
return new WP_REST_Response(['authenticated' => true], 200);
}
function book_reader_get_user_info($request) {
$email = sanitize_email($request['email']);
$user = get_user_by('email', $email);
if (!$user) {
return new WP_REST_Response(['error' => 'User not found'], 404);
}
return new WP_REST_Response([
'username' => $user->user_login,
'email' => $user->user_email,
], 200);
}
function book_reader_get_books($request) {
$email = sanitize_email($request['email']);
$user1 = get_user_by('email', $email); // Cambiado de $user1 a $user para mantener consistencia
if (!$user1) {
return new WP_REST_Response(['error' => 'User not found'], 404);
}
//var_dump($user1);
//var_dump($request['email']);
// Obtener pedidos del usuario y registrar la cantidad de pedidos encontrados
$customer_orders = wc_get_orders(array(
'customer_id' => $user1->ID,
'status' => 'completed',
'limit' => -1
));
$purchased_books = [];
// Itera sobre cada pedido para obtener los productos
foreach ($customer_orders as $order) {
foreach ($order->get_items() as $item) {
$product = $item->get_product();
if ($product) {
// Obtener categorías del producto
$categories = wp_get_post_terms($product->get_id(), 'product_cat', array('fields' => 'names'));
// Verificar si el producto está en la categoría "book"
if (in_array('Books', $categories)) {
$purchased_books[] = [
'id' => $product->get_id(),
'name' => $product->get_name()
];
}
}
}
}
//var_dump($purchased_books);
// Si no se encontraron productos con la etiqueta "book"
if (empty($purchased_books)) {
return new WP_REST_Response(['error' => 'No books found'], 404);
}
return new WP_REST_Response([
'purchased_products' => $purchased_books
], 200);
}
//******************************************************************************//
function block_language_slugs_direct_access() {
// Obtener la ruta de la URL actual
$uri = $_SERVER['REQUEST_URI'];
$uri = rtrim($uri, '/'); // Limpiar la barra al final si existe
$uri_segments = explode('/', trim($uri, '/'));
// Lista de slugs a bloquear acceso directo
$blocked_slugs = ['es', 'en'];
// Verificar si el primer segmento de la URL está en la lista de bloqueados
if (in_array($uri_segments[0], $blocked_slugs) && count($uri_segments) === 1) {
// Mostrar la página 404 si solo se accede al slug bloqueado
get_header();
global $wp_query;
$wp_query->set_404();
status_header(404);
get_template_part('template-parts/404'); // Usa el path correcto a la plantilla 404 dentro de template-parts
get_footer();
exit();
}
}
add_action('template_redirect', 'block_language_slugs_direct_access');
function update_header_for_woocommerce_product_pages() {
if (is_product()) {
// Remueve los breadcrumbs
remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20);
//get_header();
// Añade un header alternativo específicamente para las páginas de producto
//add_action('get_header', 'load_custom_header_for_products');
// Remueve los hooks del header que podrían estar agregando contenido no deseado
//remove_all_actions('wp_head');
}
}
add_action('wp', 'update_header_for_woocommerce_product_pages');
add_filter( 'woocommerce_add_to_cart_validation', 'custom_add_to_cart_validation', 10, 4 );
function custom_add_to_cart_validation( $passed, $product_id, $quantity, $variation_id = 0 ) {
$product_cart_id = WC()->cart->generate_cart_id( $product_id );
$in_cart = WC()->cart->find_product_in_cart( $product_cart_id );
if ( $in_cart ) {
wc_add_notice( sprintf( __( 'You have bought a unique product to read online and/or download it, so is not necesary to add another one. <a href="%s" class="button wc-forward">View cart</a>', 'text-domain' ), wc_get_cart_url() ), 'error' );
return false;
}
return $passed;
}
/******************************************************************************************************************************************************************
*
* NO MOVER LAS SIGUIENTES LINEAS, SON PARA DAR FUNCIONALIDAD A LA API DE AUTENTIFICACIÓNCONECTIVIDAD EN MAILER LITE/
* FIRMADO: ESTEBAN SALGADO
*
******************************************************************************************************************************************************************/
function subscribe_user_to_mailerlite($user_id) {
$user_info = get_userdata($user_id);
$email = $user_info->user_email;
$api_key = get_option('mailerlite_api_key');
$group_id = '138377344715851095'; // Asegúrate de que este ID es correcto
$url = "https://api.mailerlite.com/api/v2/groups/{$group_id}/subscribers";
$body = json_encode([
'email' => $email,
// 'name' => $user_info->first_name, // Añadir si quieres pasar el nombre
]);
$args = [
'body' => $body,
'headers' => [
'Content-Type' => 'application/json',
'X-MailerLite-ApiKey' => $api_key
],
'method' => 'POST',
'data_format' => 'body'
];
$response = wp_remote_post($url, $args);
if (is_wp_error($response)) {
error_log('Error en la suscripción a MailerLite: ' . $response->get_error_message());
} else {
// Loguear la respuesta para entender lo que devolvió la API
error_log('Respuesta de MailerLite: ' . wp_json_encode($response));
}
}
add_action('user_register', 'subscribe_user_to_mailerlite');
//WP USER MANAGER MANAGE DESACTIVATE MAILS
add_filter('wpum_email_disable_new_user_notification', '__return_true');
add_filter('wpum_email_disable_admin_new_user_notification', '__return_true');
add_action( 'woocommerce_thankyou', 'custom_thank_you_page_redirect', 10, 1 );
function custom_thank_you_page_redirect( $order_id ) {
if ( !$order_id ) return;
// Obtener el objeto de la orden
$order = wc_get_order( $order_id );
// Verifica si el objeto de la orden está bien y si el estado no es fallido
if ( $order && ! $order->has_status( 'failed' ) ) {
// Define aquí la URL a la que deseas redirigir
$url = home_url( '/thank-you/' ); // Usa una URL relativa que se adapte dinámicamente a cualquier instalación de WordPress
wp_safe_redirect( $url );
exit;
}
}
// CAPTCHA
// Función para generar el CAPTCHA
function validar_captcha_wpum($errors, $values) {
if (!session_id()) {
session_start();
}
// Asumiendo que el campo del CAPTCHA se llama 'captcha_code' y que los datos del CAPTCHA están en la sesión
if (isset($_POST['captcha_code'], $_SESSION['captcha_prefix'])) {
require_once(plugin_dir_path(__FILE__) . 'path/to/really-simple-captcha/really-simple-captcha.php');
$captcha_instance = new ReallySimpleCaptcha();
// Verificación del CAPTCHA
$correct = $captcha_instance->check($_SESSION['captcha_prefix'], $_POST['captcha_code']);
// Elimina el archivo de imagen del CAPTCHA independientemente de si es correcto o no
$captcha_instance->remove($_SESSION['captcha_prefix']);
if (!$correct) {
$errors->add('invalid_captcha', 'The CAPTCHA code entered was incorrect. Please try again.');
}
// Limpia los datos de CAPTCHA de la sesión
unset($_SESSION['captcha_word'], $_SESSION['captcha_prefix']);
} else {
$errors->add('empty_captcha', 'CAPTCHA code is required.');
}
}
add_action('validate_registration', 'validar_captcha_wpum', 10, 2);
/******************************************************************************************************************************************************************
*
* NO MOVER LAS SIGUIENTES LINEAS, SON PARA DAR FUNCIONALIDAD AL CARRITO PARA QUE APAREZCA EL BOTON DE TARJETA DE CREDITO
* FIRMADO: ESTEBAN SALGADO
*
******************************************************************************************************************************************************************/
add_action('woocommerce_after_cart_totals', 'add_paypal_and_card_buttons');
function add_paypal_and_card_buttons() {
?>
<div id="paypal-button-container"></div>
<div id="card-button-container"></div>
<script>
paypal.Buttons({
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
value: '0.01' // Este valor debe ser dinámico
}
}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
alert('Transaction completed by ' + details.payer.name.given_name);
});
}
}).render('#paypal-button-container');
// Configuración adicional para los campos de tarjeta
</script>
<?php
}