-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New Components - selzy #16692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
New Components - selzy #16692
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9d9f86e
selzy init
luancazarine 5bfb2d4
[Components] selzy #16657
luancazarine c27061e
pnpm update
luancazarine 97067f7
pnpm update
luancazarine 932e9c5
some adjusts
luancazarine 9787c89
Merge branch 'master' into issue-16657
luancazarine 3ff4db2
some adjusts
luancazarine 6a90ec5
some adjusts
luancazarine b0acddc
Update components/selzy/actions/create-campaign/create-campaign.mjs
luancazarine 098d58e
Update components/selzy/sources/new-campaign/new-campaign.mjs
luancazarine 2689a54
lint fix
luancazarine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
127 changes: 127 additions & 0 deletions
127
components/selzy/actions/create-campaign/create-campaign.mjs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,127 @@ | ||
| import { ConfigurationError } from "@pipedream/platform"; | ||
| import { clearEmpty } from "../../common/utils.mjs"; | ||
| import selzy from "../../selzy.app.mjs"; | ||
|
|
||
| export default { | ||
| key: "selzy-create-campaign", | ||
| name: "Create Campaign", | ||
| description: "Creates a new campaign. [See the documentation](https://selzy.com/en/support/api/messages/createcampaign/)", | ||
| version: "0.0.1", | ||
| type: "action", | ||
| props: { | ||
| selzy, | ||
| messageId: { | ||
| type: "string", | ||
| label: "Message ID", | ||
| description: "Code of the message to be sent. The code returned by the **Create Email Message** method should be transferred.", | ||
| optional: true, | ||
| }, | ||
| startTime: { | ||
| type: "string", | ||
| label: "Start Time", | ||
| description: "Campaign launch date and time in the \"YYYY-MM-DD hh:mm\" format, which do not exceed 100 days from the current date. If the argument is not set, the campaign starts immediately. The time zone specified in the settings of the user's personal account is applied. To explicitly specify a time zone, use the **Timezone** argument. To provide additional error protection, you should not schedule two sendings of the same message within an hour.", | ||
| optional: true, | ||
| }, | ||
| trackRead: { | ||
| type: "boolean", | ||
| label: "Track Read", | ||
| description: "Whether to track the fact of reading the email message. The default value is `false` (do not track). If `true`, a link to a small image tracking the reference will be added to the email. The **Track Read** argument is ignored for SMS messages.", | ||
| optional: true, | ||
| }, | ||
| trackLinks: { | ||
| type: "boolean", | ||
| label: "Track Links", | ||
| description: "To track whether there are any click-throughs in email messages, the default value is `false` (do not track). If `true`, all external links will be replaced with special ones that allow you to track the fact of a click-through, and then forward the user to the desired page. The **Track Links** argument is ignored for SMS messages.", | ||
| optional: true, | ||
| }, | ||
| contactsUrl: { | ||
| type: "string", | ||
| label: "Contacts URL", | ||
| description: "Instead of the contacts parameter containing the actual email addresses or phone numbers, in this parameter you can specify the URL of the file from which the addresses (phone numbers) will be read. The URL must start with \"http://\", \"https://\" or \"ftp://\". The file must contain one contact per string, without commas; strings must be separated by \"n\" or \"rn\" (Mac format — only \"r\" — not supported). The file can be deleted after the campaign has shifted to the 'scheduled' status.", | ||
| optional: true, | ||
| }, | ||
| trackGa: { | ||
| type: "boolean", | ||
| label: "Track GA", | ||
| description: "Whether to enable Google Analytics integration for this campaign. Only explicitly indicated values are valid, default usage parameters are not applied. The default value is `false` (disabled).", | ||
| optional: true, | ||
| reloadProps: true, | ||
| }, | ||
| gaMedium: { | ||
| type: "string", | ||
| label: "GA Medium", | ||
| description: "Integration parameters with Google Analytics (valid if track_ga=1). Only explicitly indicated values are valid, default usage parameters are not applied.", | ||
| optional: true, | ||
| hidden: true, | ||
| }, | ||
| gaSource: { | ||
| type: "string", | ||
| label: "GA Source", | ||
| description: "Integration parameters with Google Analytics (valid if track_ga=1). Only explicitly indicated values are valid, default usage parameters are not applied.", | ||
| optional: true, | ||
| hidden: true, | ||
| }, | ||
| gaCampaign: { | ||
| type: "string", | ||
| label: "GA Campaign", | ||
| description: "Integration parameters with Google Analytics (valid if track_ga=1). Only explicitly indicated values are valid, default usage parameters are not applied.", | ||
| optional: true, | ||
| hidden: true, | ||
| }, | ||
| gaContent: { | ||
| type: "string", | ||
| label: "GA Content", | ||
| description: "Integration parameters with Google Analytics (valid if track_ga=1). Only explicitly indicated values are valid, default usage parameters are not applied.", | ||
| optional: true, | ||
| hidden: true, | ||
| }, | ||
| gaTerm: { | ||
| type: "string", | ||
| label: "GA Term", | ||
| description: "Integration parameters with Google Analytics (valid if track_ga=1). Only explicitly indicated values are valid, default usage parameters are not applied.", | ||
| optional: true, | ||
| hidden: true, | ||
| }, | ||
| }, | ||
| async additionalProps(props) { | ||
| const gaAllowed = this.trackGa; | ||
| props.gaMedium.hidden = !gaAllowed; | ||
| props.gaSource.hidden = !gaAllowed; | ||
| props.gaCampaign.hidden = !gaAllowed; | ||
| props.gaContent.hidden = !gaAllowed; | ||
| props.gaTerm.hidden = !gaAllowed; | ||
|
|
||
| return {}; | ||
| }, | ||
| async run({ $ }) { | ||
| if (this.contacts && this.contactsUrl) { | ||
| throw new ConfigurationError("You can't set both contacts and contactsUrl parameters at the same time"); | ||
| } | ||
|
|
||
| const response = await this.selzy.createCampaign({ | ||
| $, | ||
| params: clearEmpty({ | ||
| message_id: this.messageId, | ||
| start_time: this.startTime, | ||
| track_read: this.trackRead | ||
| ? 1 | ||
| : 0, | ||
| track_links: this.trackLinks | ||
| ? 1 | ||
| : 0, | ||
| contacts_url: this.contactsUrl, | ||
| track_ga: this.trackGa && +this.trackGa, | ||
| ga_medium: this.gaMedium, | ||
| ga_source: this.gaSource, | ||
| ga_campaign: this.gaCampaign, | ||
| ga_content: this.gaContent, | ||
| ga_term: this.gaTerm, | ||
| }), | ||
| }); | ||
|
|
||
| if (response.error) throw new ConfigurationError(response.error); | ||
|
|
||
| $.export("$summary", `Successfully created email campaign with ID: ${response.result.campaign_id}`); | ||
| return response; | ||
| }, | ||
| }; | ||
135 changes: 135 additions & 0 deletions
135
components/selzy/actions/create-email-message/create-email-message.mjs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| import { ConfigurationError } from "@pipedream/platform"; | ||
| import { | ||
| MESSAGE_FORMAT_OPTIONS, WRAP_TYPE_OPTIONS, | ||
| } from "../../common/constants.mjs"; | ||
| import { parseObject } from "../../common/utils.mjs"; | ||
| import selzy from "../../selzy.app.mjs"; | ||
|
|
||
| export default { | ||
| key: "selzy-create-email-message", | ||
| name: "Create Email Message", | ||
| description: "Adds a new email message. [See the documentation](https://selzy.com/en/support/category/api/messages/)", | ||
| version: "0.0.1", | ||
| type: "action", | ||
| props: { | ||
| selzy, | ||
| senderName: { | ||
| type: "string", | ||
| label: "Sender's name", | ||
| description: "It is a string that does not match the email address (the sender_email argument).", | ||
| }, | ||
| senderEmail: { | ||
| type: "string", | ||
| label: "Sender's email address", | ||
| description: "This email must be checked (to do this, you need to manually create at least one email with this return address via the web interface, then click on the \"send the confirmation request\" link and follow the link from the email).", | ||
| }, | ||
| subject: { | ||
| type: "string", | ||
| label: "Subject", | ||
| description: "String with the letter subject. It may include substitution fields. If you wish to use substitution fields, specify a string within a Pipedream Custom Expression and escape the curly brackets with a backslash. For example: `{{ \"Welcome to Our Newsletter, \\{\\{Name\\}\\}!\" }}`. The parameter is optional if Template Id is indicated.", | ||
| }, | ||
| body: { | ||
| type: "string", | ||
| label: "Body", | ||
| description: "HTML body of the letter. It may include substitution fields. If you wish to use substitution fields, specify an HTML string within a Pipedream Custom Expression and escape the curly brackets with a backslash. For example: `{{ \"<p>Hello \\{\\{Name\\}\\},</p><p>Here is your update.</p>\" }}`.", | ||
| }, | ||
| listId: { | ||
| propDefinition: [ | ||
| selzy, | ||
| "listId", | ||
| ], | ||
| }, | ||
| textBody: { | ||
| type: "string", | ||
| label: "Text Body", | ||
| description: "Text body of the letter. It may include substitution fields. If you wish to use substitution fields, specify a text string within a Pipedream Custom Expression and escape the curly brackets with a backslash. For example: `{{ \"Hello \\{\\{Name\\}\\},\\nHere is your update.\" }}`.", | ||
| optional: true, | ||
| }, | ||
| generateText: { | ||
| type: "boolean", | ||
| label: "Generate Text", | ||
| description: "`True` means that the text part of the letter will be generated automatically based on the HTML part. If you do not provide the text version along with the HTML version, you are recommended to set the **Generate Text** parameter to `true` for automatic generation of the text part of the letter. If the text variant of the letter is provided using the **Text Body** parameter, the **Generate Text** parameter is ignored. Thus, if the **Generate Text** value has been set to `true`, the server's response will contain a warning.", | ||
| }, | ||
| rawBody: { | ||
| type: "string", | ||
| label: "Raw Body", | ||
| description: "It is intended to save the json structure of the block editor data structure (if the value is **Message Format** = block) The parameter obtains only the JSON structure, otherwise it will not be transferred.", | ||
| optional: true, | ||
| }, | ||
| messageFormat: { | ||
| type: "string", | ||
| label: "Message Format", | ||
| description: `It defines the manner of creating a letter. | ||
| \n 1 - If you transfer the \`text\` value in this parameter and both the body and **Text Body** parameters are filled, the body parameter will be ignored, and the letter will be created from the data, transferred in the **Text Body** parameter. | ||
| \n 2 - If you transfer the \`block\` value in this parameter but do not specify **Raw Body**, the letter will be saved as **Raw HTML**. | ||
| \n 3 - If you transfer the \`block\` value in this parameter, the **body** and **Raw Body** parameters must be transferred so taht you can save the message in the block editor format.`, | ||
| options: MESSAGE_FORMAT_OPTIONS, | ||
| optional: true, | ||
| }, | ||
| lang: { | ||
| type: "string", | ||
| label: "Lang", | ||
| description: `Two-letter language code for the string with the unsubscribe link that is added to each letter automatically. | ||
| If it is not specified, the language code from the API URL is used. | ||
| In addition to the string with the unsubscribe link, this language also affects the interface of the unsubscribe page. Languages en, it, ua and ru are fully supported, and in case of some other languages (da, de, es, fr, nl, pl, pt, tr), the string with a link will be translated, and the control interface will be in English.`, | ||
| optional: true, | ||
| }, | ||
| templateId: { | ||
| propDefinition: [ | ||
| selzy, | ||
| "templateId", | ||
| ], | ||
| optional: true, | ||
| }, | ||
| systemTemplateId: { | ||
| propDefinition: [ | ||
| selzy, | ||
| "systemTemplateId", | ||
| ], | ||
| optional: true, | ||
| }, | ||
| wrapType: { | ||
| type: "string", | ||
| label: "Wrap Type", | ||
| description: "Alignment of the message text on the specified side. If the argument is missing, the text will not be aligned.", | ||
| options: WRAP_TYPE_OPTIONS, | ||
| optional: true, | ||
| }, | ||
| categories: { | ||
| type: "string[]", | ||
| label: "Categories", | ||
| description: "A list of letter categories.", | ||
| optional: true, | ||
| }, | ||
| }, | ||
| async run({ $ }) { | ||
| if (this.templateId && this.systemTemplateId) { | ||
| throw new ConfigurationError("You can only use one of the Template Id or System Template Id parameters."); | ||
| } | ||
| const response = await this.selzy.createEmailMessage({ | ||
| $, | ||
| params: { | ||
| sender_name: this.senderName, | ||
| sender_email: this.senderEmail, | ||
| subject: this.subject, | ||
| body: this.body, | ||
| list_id: this.listId, | ||
|
|
||
| text_body: this.textBody, | ||
| generate_text: +this.generateText, | ||
| raw_body: this.rawBody, | ||
| message_format: this.messageFormat, | ||
| lang: this.lang, | ||
luancazarine marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| template_id: this.templateId, | ||
| system_template_id: this.systemTemplateId, | ||
| wrap_type: this.wrapType, | ||
| categories: parseObject(this.categories)?.join(","), | ||
| }, | ||
luancazarine marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }); | ||
|
|
||
| if (response.error) throw new ConfigurationError(response.error); | ||
|
|
||
| $.export("$summary", `Email message created successfully with ID ${response.result.message_id}.`); | ||
| return response; | ||
| }, | ||
| }; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| export const LIMIT = 100; | ||
|
|
||
| export const MESSAGE_FORMAT_OPTIONS = [ | ||
| { | ||
| label: "Raw HTML", | ||
| value: "raw_html", | ||
| }, | ||
| { | ||
| label: "Block", | ||
| value: "block", | ||
| }, | ||
| { | ||
| label: "Text", | ||
| value: "text", | ||
| }, | ||
| ]; | ||
|
|
||
| export const WRAP_TYPE_OPTIONS = [ | ||
| { | ||
| label: "Skip (Do not apply)", | ||
| value: "skip", | ||
| }, | ||
| { | ||
| label: "Right (Right alignment)", | ||
| value: "right", | ||
| }, | ||
| { | ||
| label: "Left (Left alignment)", | ||
| value: "left", | ||
| }, | ||
| { | ||
| label: "Center (Center alignment)", | ||
| value: "center", | ||
| }, | ||
| ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| export const parseObject = (obj) => { | ||
| if (!obj) return undefined; | ||
|
|
||
| if (Array.isArray(obj)) { | ||
| return obj.map((item) => { | ||
| if (typeof item === "string") { | ||
| try { | ||
| return JSON.parse(item); | ||
| } catch (e) { | ||
| return item; | ||
| } | ||
| } | ||
| return item; | ||
| }); | ||
| } | ||
| if (typeof obj === "string") { | ||
| try { | ||
| return JSON.parse(obj); | ||
| } catch (e) { | ||
| return obj; | ||
| } | ||
| } | ||
| return obj; | ||
| }; | ||
|
|
||
| export const clearEmpty = (obj) => { | ||
| if (!obj) return undefined; | ||
|
|
||
| const newObj = { | ||
| ...obj, | ||
| }; | ||
| Object.keys(newObj).forEach((key) => { | ||
| if (newObj[key] === "" || newObj[key] === null || newObj[key] === undefined) { | ||
| delete newObj[key]; | ||
| } | ||
| }); | ||
| return newObj; | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.