R/MetaField.R

Defines functions getMetafields getMetafieldsCount getMetafield createMetafield modifyMetafield deleteMetafield

Documented in createMetafield deleteMetafield getMetafield getMetafields getMetafieldsCount modifyMetafield

#
#   shopifyr: An R Interface to the Shopify API
#
#   Copyright (C) 2015 Charlie Friedemann cfriedem @ gmail.com
#   Shopify API (c) 2006-2015 Shopify Inc.
#
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

########### Metafield functions ########### 
#' @param resourceName the name of a resource e.g. \code{"products", "smart_collections", "product_image"}
#' @param resourceId the id number of the resource, if applicable (for example Shop has no id)
#' @templateVar name Metafield
#' @templateVar urlSlug metafield
#' @template api
NULL

## GET /admin/api/#{api_version}/metafields.json
## Get metafields that belong to a store
## GET /admin/api/#{api_version}/metafields.json?metafield[owner_id]=850703190&metafield[owner_resource]=product_image
## Get metafields that belong to a product image
#' @rdname Metafield
getMetafields <- function(resourceName, resourceId = NULL, ...) {
    if (resourceName == "shop") resourceName <- NULL
    #private$.fetchAll(private$.url(resourceName,resourceId,"metafields"), "metafields", ...)$metafield # doesn't work for all resources
    private$.fetchAll("metafields", `metafield[owner_resource]`=resourceName, `metafield[owner_id]`=resourceId, ...)
}

## GET /admin/api/#{api_version}/metafields/count.json
## Get a count of metafields that belong to a store
## GET /admin/api/#{api_version}/products/#{id}/metafields/count.json
## Get a count of metafields that belong to a product
#' @rdname Metafield
getMetafieldsCount <- function(resourceName, resourceId = NULL, ...) {
    #private$.request(private$.url(resourceName,resourceId,"metafields","count"), ...) # doesn't work for all resources
    private$.request(private$.url("metafields","count"), `metafield[owner_resource]`=resourceName, `metafield[owner_id]`=resourceId, ...)$count
}

## GET /admin/api/#{api_version}/metafields/#{id}.json
## Get a single store metafield by its ID
## GET /admin/api/#{api_version}/products/#{id}/metafields/#{id}.json
## Get a single product metafield by its ID
#' @rdname Metafield
getMetafield <- function(metafieldId, ...) {
    private$.request(private$.url("metafields",metafieldId), ...)$metafield
}

## POST /admin/api/#{api_version}/metafields.json
## Create a new metafield for a store
## POST /admin/api/#{api_version}/products/#{id}/metafields.json
## Create a new metafield for a product
#' @rdname Metafield
createMetafield <- function(resourceName, resourceId = NULL, metafield, ...) {
    metafield <- private$.wrap(metafield, "metafield", check="key")
    if (resourceName == "shop") resourceName <- NULL
    private$.request(private$.url(resourceName,resourceId,"metafields"), reqType="POST", data=metafield, ...)$metafield
}

## PUT /admin/api/#{api_version}/metafields/#{id}.json
## Update a store metafield
## PUT /admin/api/#{api_version}/products/#{id}/metafields/#{id}.json
## Update a product metafield
#' @rdname Metafield
modifyMetafield <- function(metafield, ...) {
    metafield <- private$.wrap(metafield, "metafield")
    private$.request(private$.url("metafields",metafield$metafield$id), reqType="PUT", data=metafield, ...)$metafield
}

## DELETE /admin/api/#{api_version}/metafields/#{id}.json
## Delete a store metafield
## DELETE /admin/api/#{api_version}/products/#{id}/metafields/#{id}.json
## Delete a product metafield
#' @rdname Metafield
deleteMetafield <- function(metafieldId, ...) {
    private$.request(private$.url("metafields",metafieldId), reqType="DELETE", ...)
}
charliebone/shopifyr documentation built on Aug. 12, 2019, 7:35 p.m.