• mabufoysal

    (@mabufoysal)


    I found below code in a Plugin.

    const sent_urls = () => {
            const formData = new FormData();
            formData.append('action', 'start_parsing');
            formData.append('of_start_parsing_nonce', of_start_parsing_nonce.value);
            formData.append('urls', urls.slice(offset, offset + limit));
            formData.append( 'category_fans', category_fans );
    
    
    
            fetch(ajaxurl, {
                method: 'POST',
                body: formData
            }).then(response => {
                if (!response.ok) {
                    throw new Error('Network response was not ok');
                }
                return response.json();
            }).then(data => {
                if (data.error) {
                    throw new Error(data.error);
                }
    
                if (!data.result) {
                    throw new Error('Unknown error');
                }
    
                added += data.result.added;
                exists += data.result.exists;
                error_urls = error_urls.concat(data.result.error);
                offset += limit;
                count_urls.textContent = 'Imported ' + all_urls + ' urls. ' + 'Added ' + added + ' urls. Exists ' + exists + ' urls. ' + 'Error ' + error_urls.length + ' urls.';
    
                if (offset >= urls.length) {
                    enable();
    
                    alert.show_success('Parsing complete. Added ' + added + ' urls. Exists ' + exists + ' urls.');
    
                    if (error_urls.length > 0) {
                        textarea.value = error_urls.join('\n');
                    } else {
                        textarea.value = '';
                    }
    
                    offset = 0;
                    added = 0;
                    exists = 0;
                    error_urls = [];
    
                    return;
                } else {
                    sent_urls();
                }
            }).catch(error => {
                enable();
                alert.show_warn(error);
            });
        }

    This code is create a Post.

    How this AJAX Form submitted ?

    How a new post is created in WordPress ?

Viewing 7 replies - 1 through 7 (of 7 total)
  • threadi

    (@threadi)

    The code sends a request to the URL behind the variable “ajaxurl”. Unfortunately, the URL is not included in your code snippet. I assume it is the AJAX URL from wp-admin, i.e. /wp-admin/admin-ajax.php. The action “start_parsing” is also sent, which is presumably executed on the server side via a hook such as

    admin_action( 'wp_ajax_start_parsing' , 'custom_function' );

    is executed (see https://developer.www.ads-software.com/reference/hooks/wp_ajax_action/). The magic you are looking for can then be found on the server side in custom_function() (or whatever the function is called, this is just an example).

    Based on the text in the code, I’m not even sure if posts are created there. To me it looks more like storing data in a custom format.

    Thread Starter mabufoysal

    (@mabufoysal)

    Thanks @thread . Your explanation is nice. I searched your hook. But may beit is not available. Actually I would like to know how it is executed on the server side.

    I am looking for the root of the storing data. It is creating a post when it is storing data.

    Thanks a lot.

    threadi

    (@threadi)

    In this case, this is done via AJAX. On the server side, the above-mentioned hook or https://developer.www.ads-software.com/reference/hooks/wp_ajax_nopriv_action/ is used. If you want to create a post in this way, you must then use https://developer.www.ads-software.com/reference/functions/wp_insert_post/ within the per AJAX called function. You can find examples of use on the manual page.

    Thread Starter mabufoysal

    (@mabufoysal)

    Thanks @thread. Yes, it is done via AJAX. Actually I need to save a Category when this code is saving a post. I added below code here.

    formData.append( 'category_fans', category_fans );

    Now I need to catch formData at Server Side.

    I couldn’t find ‘wp_ajax_start_parsing’.

    Could you please guide me in this regard ?

    threadi

    (@threadi)

    wp_ajax_start_parsing is a hook that you have to define yourself. The specifications for the structure are described here: https://developer.www.ads-software.com/reference/hooks/wp_ajax_action/

    If you want to use it to read the category transmitted via AJAX, it could look like this, for example:

    add_action( 'wp_ajax_start_parsing', 'custom_function' );
    function custom_function() {
     var_dump($_POST['category_fans']);
    // ..
    }

    Within the function, you must then insert the code you need to add the category.

    • This reply was modified 8 months ago by threadi.
    Thread Starter mabufoysal

    (@mabufoysal)

    Thanks @thread. Here is the code to save post.

    public function save(): bool
    
    {
    
    global $wpdb; // Добавьте эту строку в начало функции, если она еще не добавлена
    
    // Проверяем, существует ли уже запись с таким же onlyfans_url.
    
    if ($this->onlyfans_url) {
    
    $existing_id = $wpdb->get_var($wpdb->prepare(
    
    "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = 'onlyfans_url' AND meta_value = %s LIMIT 1",
    
    $this->onlyfans_url
    
    ));
    
    // Если запись с таким URL уже существует, не создаем новый пост и возвращаем false.
    
    if ($existing_id) {
    
    return false;
    
    }
    
    }
    
    $success = false;
    
    if (0 === $this->id) {
    
    $args = array(
    
    'post_title' => $this->h1,
    
    'post_content' => $this->profile_text,
    
    'post_status' => 'publish',
    
    'post_type' => 'post',
    
    'meta_input' => $this->to_meta_array(),
    
    );
    
    $post_id = wp_insert_post($args);
    
    if (!is_wp_error($post_id)) {
    
    $this->id = $post_id;
    
    $success = true;
    
    }
    
    // Получаем ID категории 'United States'
    
    $united_states_term = term_exists('United States', 'category');
    
    if (!$united_states_term) {
    
    $united_states_term = wp_insert_term('United States', 'category');
    
    }
    
    $united_states_term_id = $united_states_term['term_id'] ?? null;
    
    // Убедитесь, что у нас есть действительный ID категории
    
    if ($united_states_term_id) {
    
    // Назначаем эту категорию посту
    
    wp_set_post_categories($this->id, [$united_states_term_id], true);
    
    }
    
    // Удаление категории 'Uncategorized', если она присвоена
    
    $uncategorized_term_id = get_option('default_category'); // ID категории 'Uncategorized' обычно установлено как категория по умолчанию в WordPress
    
    // Получаем существующие категории поста
    
    $current_categories = wp_get_post_categories($this->id);
    
    // Удаляем 'Uncategorized' из текущих категорий, если он там есть
    
    if (($key = array_search($uncategorized_term_id, $current_categories)) !== false) {
    
    unset($current_categories[$key]);
    
    }
    
    // Обновляем категории поста
    
    wp_set_post_categories($this->id, $current_categories);
    
    // added tags.
    
    if (0 !== $this->id) {
    
    // get country category.
    
    $country_term = get_term_by('slug', 'country', 'category');
    
    if ($country_term) {
    
    $country_term_id = $country_term->term_id;
    
    } else {
    
    $country_term = wp_insert_term('Country', 'category', array('slug' => 'country'));
    
    $country_term_id = $country_term['term_id'];
    
    }
    
    $tags = array();
    
    $categories = array();
    
    foreach ($this->tags as $tag) {
    
    // insert new term.
    
    if ($tag['is_country']) {
    
    // check exists tag.
    
    $term = get_term_by('slug', $tag['slug'], 'category');
    
    // add country category.
    
    $categories[] = $country_term_id;
    
    if ($term) {
    
    $categories[] = $term->term_id;
    
    continue;
    
    }
    
    $new_term = wp_insert_term(
    
    $tag['name'],
    
    'category',
    
    array(
    
    'slug' => $tag['slug'],
    
    'parent' => $country_term_id,
    
    )
    
    );
    
    if (!is_wp_error($new_term)) {
    
    $categories[] = $new_term['term_id'];
    
    }
    
    } else {
    
    // check exists tag.
    
    $term = get_term_by('slug', $tag['slug'], 'post_tag');
    
    if ($term) {
    
    $tags[] = $tag['slug'];
    
    continue;
    
    }
    
    $new_term = wp_insert_term($tag['name'], 'post_tag', array('slug' => $tag['slug']));
    
    if (!is_wp_error($new_term)) {
    
    $tags[] = $tag['slug'];
    
    }
    
    }
    
    }
    
    // unique value in array.
    
    $tags = array_unique($tags);
    
    $categories = array_unique($categories);
    
    if (!empty($tags)) {
    
    wp_set_post_tags($this->id, $tags, false);
    
    }
    
    if (!empty($categories)) {
    
    wp_set_post_categories($this->id, $categories, false);
    
    }
    
    }
    
    } else {
    
    $result = wp_update_post(
    
    array(
    
    'ID' => $this->id,
    
    'meta_input' => $this->to_meta_array(),
    
    )
    
    );
    
    if (!is_wp_error($result) && $result !== 0) {
    
    $success = true;
    
    }
    
    }
    
    return $success;
    
    }

    Is it possible to get ‘post_id’ in your below code ?

    add_action( 'wp_ajax_start_parsing', 'custom_function' );
    function custom_function() {
     var_dump($_POST['category_fans']);
    // ..
    }

    Thanks.

    threadi

    (@threadi)

    Unfortunately, I don’t understand the connection between your code and the AJAX request you first asked about. You might want to take another look at the hooks for AJAX requests: https://developer.www.ads-software.com/reference/hooks/wp_ajax_action/

    You might also be able to find more programmers at https://wordpress.stackexchange.com who could help you with this. However, you should then describe in much more detail what you are trying to do.

    If you need personal support, you may be able to find someone here: https://jobs.wordpress.net/

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Code Understanding’ is closed to new replies.