Make WordPress Core

Ticket #18438: wp.newTerm.patch

File wp.newTerm.patch, 4.2 KB (added by nprasath002, 13 years ago)
  • class-wp-xmlrpc-server.php

    # This patch file was generated by NetBeans IDE
    # Following Index: paths are relative to: /var/www/GSoC/wordtrunk/wp-includes
    # This patch can be applied using context Tools: Patch action on respective folder.
    # It uses platform neutral UTF-8 encoding and \n newlines.
    # Above lines and this line are ignored by the patching process.
     
    6464                        'wp.getMediaItem'               => 'this:wp_getMediaItem',
    6565                        'wp.getMediaLibrary'    => 'this:wp_getMediaLibrary',
    6666                        'wp.getPostFormats'     => 'this:wp_getPostFormats',
     67                        'wp.newTerm'            => 'this:wp_newTerm',
    6768
    6869                        // Blogger API
    6970                        'blogger.getUsersBlogs' => 'this:blogger_getUsersBlogs',
     
    17021703                return $formats;
    17031704        }
    17041705
     1706        /**
     1707         * Create a new term
     1708         *
     1709         * @uses wp_insert_term()
     1710         * @param array $args Method parameters. Contains:
     1711         *  - int     $blog_id
     1712         *  - string  $username
     1713         *  - string  $password
     1714         *  - array   $content_struct.
     1715         *      The $content_struct must contain:
     1716         *      - 'name'
     1717         *      - 'taxonomy'
     1718         *      Also, it can optionally contain:
     1719         *      - 'parent'
     1720         *      - 'description'
     1721         *      - 'slug'
     1722         * @return int term_id
     1723         */
     1724        function wp_newTerm( $args ) {
     1725
     1726                $this->escape( $args );
     1727
     1728                $blog_ID            = (int) $args[0];
     1729                $username           = $args[1];
     1730                $password           = $args[2];
     1731                $content_struct     = $args[3];
     1732
     1733                if ( ! $user = $this->login( $username, $password ) )
     1734                        return $this->error;
     1735
     1736                if ( ! taxonomy_exists( $content_struct['taxonomy'] ) )
     1737                        return new IXR_Error( 403, __( 'Invalid taxonomy' ) );
     1738
     1739                $taxonomy = get_taxonomy( $content_struct['taxonomy'] );
     1740
     1741                if( ! current_user_can( $taxonomy->cap->manage_terms ) )
     1742                        return new IXR_Error( 401, __( 'You are not allowed to create terms in this taxonomy' ) );
     1743
     1744                $taxonomy   = (array)$taxonomy;
     1745
     1746                // hold the data of the term
     1747                $term_data  = array();
     1748               
     1749                $term_data['name'] = trim( $content_struct['name'] );
     1750                if ( empty ( $term_data['name'] ) )
     1751                        return new IXR_Error( 403, __( 'The term name cannot be empty' ) );
     1752
     1753                if( isset ( $content_struct['parent'] ) ) {
     1754
     1755                        if( ! $taxonomy['hierarchical'] )
     1756                                return new IXR_Error( 403, __( 'This taxonomy is not hieararchical' ) );
     1757
     1758                        $parent_term_id = (int)$content_struct['parent'];
     1759                        $parent_term = get_term( $parent_term_id , $taxonomy['name'] );
     1760
     1761                        if ( is_wp_error( $parent_term ) )
     1762                            return new IXR_Error( 500, $term->get_error_message() );
     1763
     1764                        if ( ! $parent_term )
     1765                            return new IXR_Error(500, __('Parent term does not exist'));
     1766
     1767                        $term_data['parent'] =  $content_struct['parent'];
     1768                       
     1769                }
     1770
     1771                $term_data['description'] = '';
     1772                if( isset ( $content_struct['description'] ) )
     1773                        $term_data['description'] = $content_struct['description'];
     1774
     1775                $term_data['slug'] = '';
     1776                if( isset ( $content_struct['slug'] ) )
     1777                        $term_data['slug'] = $content_struct['slug'];
     1778
     1779                $term_ID = wp_insert_term( $term_data['name'] , $taxonomy['name'] , $term_data );
     1780
     1781                if ( is_wp_error( $term_ID ) )
     1782                        return new IXR_Error(500, $term_ID->get_error_message());
     1783
     1784                if ( ! $term_ID )
     1785                        return new IXR_Error(500, __('Sorry, your entry could not be posted. Something wrong happened.'));
     1786
     1787                return $term_ID;
     1788
     1789        }
     1790
    17051791        /* Blogger API functions.
    17061792         * specs on http://plant.blogger.com/api and http://groups.yahoo.com/group/bloggerDev/
    17071793         */