defmodule WeChat.CardDistributing do
@moduledoc """
微信卡券 - 投放卡券
[官方文档](https://developers.weixin.qq.com/doc/offiaccount/Cards_and_Offer/Distributing_Coupons_Vouchers_and_Cards.html){:target="_blank"}
"""
import Jason.Helpers
import WeChat.Utils, only: [doc_link_prefix: 0]
alias WeChat.{Card, User}
@doc_link "#{doc_link_prefix()}/doc/offiaccount/Cards_and_Offer/Distributing_Coupons_Vouchers_and_Cards.html"
@doc """
创建二维码接口 -
[官方文档](#{@doc_link}#0){:target="_blank"}
开发者可调用该接口生成一张卡券二维码供用户扫码后添加卡券到卡包。
自定义Code码的卡券调用接口时,POST数据中需指定code,非自定义code不需指定,指定openid同理。指定后的二维码只能被用户扫描领取一次。
获取二维码ticket后,开发者可用[换取二维码图片详情](#{doc_link_prefix()}/doc/offiaccount/Account_Management/Generating_a_Parametric_QR_Code.html)。
"""
@spec create_qrcode(WeChat.client(), body :: map) :: WeChat.response()
def create_qrcode(client, body) do
client.post("/card/qrcode/create", body, query: [access_token: client.get_access_token()])
end
@doc """
创建货架接口 -
[官方文档](#{@doc_link}#3){:target="_blank"}
开发者需调用该接口创建货架链接,用于卡券投放。创建货架时需填写投放路径的场景字段。
"""
@spec create_landing_page(WeChat.client(), body :: map) :: WeChat.response()
def create_landing_page(client, body) do
client.post("/card/landingpage/create", body,
query: [access_token: client.get_access_token()]
)
end
@doc """
群发卡券 - 导入自定义code(仅对自定义code商户) -
[官方文档](#{@doc_link}#5){:target="_blank"}
"""
@spec import_code(WeChat.client(), Card.card_id(), [Card.card_code()]) :: WeChat.response()
def import_code(client, card_id, code_list) do
client.post(
"/card/code/deposit",
json_map(card_id: card_id, code: code_list),
query: [access_token: client.get_access_token()]
)
end
@doc """
群发卡券 - 查询导入code数目接口 -
[官方文档](#{@doc_link}#5){:target="_blank"}
"""
@spec get_code_count(WeChat.client(), Card.card_id()) :: WeChat.response()
def get_code_count(client, card_id) do
client.post("/card/code/getdepositcount", json_map(card_id: card_id),
query: [access_token: client.get_access_token()]
)
end
@doc """
群发卡券 - 核查code接口 -
[官方文档](#{@doc_link}#5){:target="_blank"}
"""
@spec check_code(WeChat.client(), Card.card_id(), [Card.card_code()]) :: WeChat.response()
def check_code(client, card_id, code_list) do
client.post(
"/card/code/checkcode",
json_map(card_id: card_id, code: code_list),
query: [access_token: client.get_access_token()]
)
end
@doc """
图文消息群发卡券 -
[官方文档](#{@doc_link}#6){:target="_blank"}
支持开发者调用该接口获取卡券嵌入图文消息的标准格式代码,将返回代码填入 [新增临时素材](#{doc_link_prefix()}/doc/offiaccount/Asset_Management/New_temporary_materials) 中content字段,即可获取嵌入卡券的图文消息素材。
特别注意:目前该接口仅支持填入非自定义code的卡券,自定义code的卡券需先进行code导入后调用。
"""
@spec get_mp_news_html(WeChat.client(), Card.card_id()) :: WeChat.response()
def get_mp_news_html(client, card_id) do
client.post("/card/mpnews/gethtml", json_map(card_id: card_id),
query: [access_token: client.get_access_token()]
)
end
@doc """
设置测试白名单 -
[官方文档](#{@doc_link}#12){:target="_blank"}
"""
@spec set_test_whitelist(WeChat.client(), [
{:openid, WeChat.openid_list()} | {:username, User.username_list()}
]) :: WeChat.response()
def set_test_whitelist(client, openid: openid_list) do
client.post("/card/testwhitelist/set", json_map(openid: openid_list),
query: [access_token: client.get_access_token()]
)
end
def set_test_whitelist(client, username: username_list) do
client.post("/card/testwhitelist/set", json_map(username: username_list),
query: [access_token: client.get_access_token()]
)
end
@doc """
设置测试白名单 -
[官方文档](#{@doc_link}#12){:target="_blank"}
"""
@spec set_test_whitelist(WeChat.client(), WeChat.openid_list(), User.username_list()) ::
WeChat.response()
def set_test_whitelist(client, openid_list, username_list) do
client.post(
"/card/testwhitelist/set",
json_map(openid: openid_list, username: username_list),
query: [access_token: client.get_access_token()]
)
end
end