25 KiB
sidebar_position |
---|
50 |
.gbdialog Reference
General Bots BASIC using HEAR and TALK keywords provides a easy to write bot language accessible to everyone and used as incomer for people willing to make their own bot.
It is like creating a conversation Node.js application just using BASIC. All code will run isolated on a Node VM:
Using Conversational BASIC
The following file types are loaded from a .gbdialog package: .vbs
, .vb
, .basic
and .bas
.
General Bots BASIC reference
Instruction / Usage | Description | Example |
---|---|---|
HEAR variable | Hears something from the person into a variable for later use. | HEAR name |
confirm variable (Comming soon) | Waits for confirmation like 'yes', 'y', 'yeah' and return true or false | |
TALK message | Talk the specified message to the person. | TALK "Hello world." |
GENERATE A PASSWORD | Creates a new password into the system variable password for later use. | |
CREATE A BOT FARM USING params | Deploys a new bot farm to the cloud. | |
WAIT seconds | Wait a number of seconds before continuing the conversation. | |
variable = GET "file.xlsx", "A1:A1" | Gets the value of the cell specified in range address | |
SET "file.xlsx", "A1:A1", 42 | Gets the value of the cell specified in range address | |
variable = GET "https://server/query" | Gets the value of the cell specified in range address | |
POST "https://", data | Gets the value of the cell specified in range address | |
wait seconds | Wait a number of seconds before continuing the conversation. | |
HEAR variable AS EMAIL | ||
HEAR variable AS DATE | ||
HEAR variable AS NAME | ||
HEAR variable AS INTEGER | eg.: HEAR approve as Boolean. | |
HEAR variable AS BOOLEAN | ||
HEAR variable AS HOUR | ||
HEAR variable AS MONEY | ||
HEAR variable AS MOBILE | ||
* HEAR variable AS FILE | Returns a file uploaded by user to be saved with SAVE variable AS "folder/folder/file" on .gbdrive. | |
HEAR variable AS AUDIO | Returns a audio uploaded by user to be saved with SAVE. | |
HEAR variable AS ZIPCODE | ||
HEAR variable AS "Abacate", "Maçã", "Morango" | Displays the specified menu and waits for this input until user select one of them. | |
HEAR variable AS LANGUAGE | ||
HEAR variable AS LOGIN (internal) | Waits for Active Directoy login integration before proceeding with the dialog . | |
GO TO [number,] dialogName | Transfers the conversation to a next dialog for the specificed number or as last command, transfers the context to this dialog. | |
SEE CAPTION OF url AS variable | Extracts an caption, using a pre-trained neural network, from a image. | |
SEE TEXT OF url AS variable | Extracts text from the image in a OCR (Optical Character Recognition) feature. | |
data = SELECT a, SUM(b) AS b FROM data GROUP BY a | Use SQL to manipulate a data variable returned from FIND or an array | variable = CHART "pie", data |
file = data AS IMAGE | Converts a two dimension array into an image file, ready to be used with SAVE AS or SEND FILE. | |
file = data AS PDF | Converts a two dimension array into an PDF file, ready to be used with SAVE AS or SEND FILE. | |
page = OPEN url [AS #namedSession] | Web automation retrival of a web page saving the session for reuse in other dialogs (optional). | |
* variable = GET page, cssSelector, "body > img" | Retrives an element within an IFRAME specified by selector eg.: "[name=iFrameName]", to be used later. | |
* SET page, cssSelector, value | Define an field to value eg. "value 123" on the webpage specified by selector eg. "#id". | |
* CLICK page, cssSelector | Clicks on an element inside the web page being automated by General Bots. | |
* file = DOWNLOAD url | ||
NEW OBJECT | Creates a new object to be used with REST calls for example. data = NEW OBJECT data.color = "blue" |
|
NEW ARRAY | Creates a new array. data = NEW ARRAY data[0] = "blue" |
|
QRCODE | Creates a QRCode from specified text, eg.: file = QRCODE "data" | |
ADD NOTE | Adds a note to a file named Notes.xls of .gbdata. eg.: ADD NOTE "text" | |
ALLOW ROLE | Check if role specified in People sheet (.gbdata) will have access. eg.: ALLOW ROLE "DevOps" | |
CONTINUATION TOKEN | Retuns the value of the continuation token associated with the current dialog. | |
UPLOAD file | Uploads a file to a storage blob, like Azure Storage. | |
DIR path | Returns a list of files to be used with FOR EACH and performs actions. | |
TABLE name ON connection | Defines a TABLE on specified storage (database) connection. | |
field AS dataType | Defines a field in TABLE. Eg.: name string(50). | |
FILL | Fills a data into a Word document to be exported as images | |
INCLUDE file | Includes a file into .gbdialog | |
FORMAT value, format | Formats a value according to format specified. Eg. d = FORMAT today, "YYYY-MM-dd" | |
SEND MAIL | Sends an e-mail, eg.: SEND MAIL "mail@domain.com", "Subject", "Message body." |
Internal Variables and Functions.
These are variables that can be used in General Bots BASIC to faster dialog and services faster. All values from .gbot Config.xlsx are also provided as variables, so it can be acessed directly in dialog.
Instruction / Usage | Description |
---|---|
aadToken() | Auto generated variable that contains Azure AD Token useful for calling Microsoft Web Services. |
Options
Instruction / Usage | Description |
---|---|
SET PARAM name AS value | Defines a retrievable param in the storage in the scope of the user |
GET PARAM name | Returns a previously user scoped param via SET PARAM from the storage. |
SET HTTP HEADER _key = value | Defines an HTTP header to be used to next GET call. |
SET HTTP USERNAME = value | Defines the HTTP username to be used to next GET call. |
SET HTTP PASSWORD = value | Defines the HTTP password to be used to next GET call. |
* SET HEAR ON "mobile" | |
SET MAX LINES value | |
SET SCHEDULE "2 * * * * *" | |
SET LANGUAGE value | |
SET TRANSLATOR [ON or OFF] | |
SET WHOLE WORD [TRUE or FALSE] | |
SET THEME "dark" or "white" or "blue" | Defines the theme to the next content generation (PDF, images, vídeos, etc.) |
SET OPERATOR [OR] | Defines OR operations on multiple FIND filters separated by comma, eg.: FIND "A1=2", "A3=4" |
SET FILTER TYPE [comma separated list of types] | Uses the specified type in next FIND calls, disabling auto detection of filter type, eg.: SET FILTER TYPE date, string |
SET PAGED "auto" or "none" | Defines auto pagging for HTTP REST GET calls. |
- = Work in progress.
How To
Use code in Excel
To reply as code in Excel, start the cell value with /basic followed by the code itself. Eg.:
/basic
TALK "Hello."
Use General Bots computer vision
- Develop a BASIC dialog and publish;
- Test it in the conversation
Using General Bots Web Automation to ask humans about unreadable captchas
mobile = "5521000000000"
page = GET HTML "https://www.any-website.com/"
SET page, "#usuario", "user"
SET page, "#j_password", "xxxxxxxxxxx"
img = GET page, "[name=iCaptcha]", "body > img"
SEND FILE TO mobile, img
TALK TO mobile, "Digite o código da imagem para prosseguir:"
SET HEAR ON mobile
HEAR captcha
SET page, "#captcha", captcha
CLICK page, "#bt-login"
TALK TO mobile, "Login done, thanks."
Using General Bots SQL and dynamic image and chart generation
On the fly table as images.
SET MAX LINES 1000
data = FIND "data.xlsx",
data = SELECT a, SUM(b) AS b FROM data GROUP BY a
SET THEME dark
png = data as IMAGE
SEND FILE png
On the fly charts
data = [10, 20, 30]
legends= "Steve;Yui;Carlos"
img = CHART "pie", data, legends
SEND FILE img
SAVE img as "folder/filename.jpg"
Using General Bots Web Automation to custom notify about Google Calendar
REM Perform G. Login.
OPEN "https://accounts.google.com/ServiceLogin"
SET "#identifierId", "test@gmail.com"
PRESS ENTER
WAIT 3
SET "input[type='password']", "******"
PRESS ENTER
WAIT 5
REM Enter on the Calendar page and capture the calendar grid inside the page.
OPEN "https://calendar.google.com/calendar/u/0/r?tab=mc&pli=1"
file = SCREENSHOT "div.K2fuAf"
REM Notify all team members with the updated calendar image.
list = FIND "People.xlsx", "Calendar=Y"
index = 1
DO WHILE index < ubound(list)
row = list[index]
TALK TO row.Mobile, "Hello " + row.Name + ", here is your calendar:"
SEND FILE TO row.Mobile, file, "Calendar"
index = index + 1
LOOP
Using complete General Bots Conversational Data Analytics
TALK "General Bots Labs presents FISCAL DATA SHOW BY BASIC"
TALK "Gift Contributions to Reduce the Public Debt API (https://fiscaldata.treasury.gov/datasets/gift-contributions-reduce-debt-held-by-public/gift-contributions-to-reduce-the-public-debt)"
result = GET "https://api.fiscaldata.treasury.gov/services/api/fiscal_service/v2/accounting/od/gift_contributions?page[size]=500"
data = result.data
data = SELECT YEAR(record_date) as Yr, SUM(CAST(contribution_amt AS NUMBER)) AS Amount FROM data GROUP BY YEAR(record_date)
TALK "Demonstration of Gift Contributions with AS IMAGE keyword"
SET THEME dark
png = data as IMAGE
SEND FILE png
DELAY 5
TALK " Demonstration of Gift Contributions CHART keyword"
img = CHART "bar", data
SEND FILE img
Using General Bots Office templates
data = FIND "Customer.xlsx", "Idade=25"
doc = TEMPLATE "template.docx" WITH data
SAVE doc AS "resume.docx"
SEND EMAIL "noreply@pragmatismo.io", "Subject", doc
Automating GitHub Issue creation with General Bots Automation
REM Realiza login no GitHub.
page = GET HTML "https://github.com/login"
SET page, "#login_field", "username"
SET page, "#password", "*******"
PRESS ENTER ON page
REM Verifica 2FA.
SET HEAR ON "5521999999999"
TALK "Digite o código de dupla autenticação enviado..."
HEAR code
SET page, "#otp", code
PRESS ENTER ON page
REM Extrai cada Issue da planilha e cria no GitHub.
list = FIND "issues.xlsx"
index = 1
DO WHILE index <38
row = list[index]
page = GET HTML "https://github.com/GeneralBots/BotServer/issues/new"
SET page, "#issue_title", row.title
SET page, "#issue_body", row.body
CLICK page, "#new_issue > div > div > div.Layout-main > div > div.timeline-comment.color-bg-default.hx_comment-box--tip > div > div.flex-items-center.flex-justify-end.d-none.d-md-flex.mx-2.mb-2.px-0 > button"
TALK "Issue '" + row.title + "' criado."
WAIT 5
index = index + 1
LOOP
EXIT
Using POST data
You can use POST passing a variable as the second param in the POST call. The example bellow shows how to call POST using an object that is returned from the Excel file.
Given the Excel file with the following contents and saved to the standard .gbdialog folder:
tokenId | token | comment |
---|---|---|
29187 | AAMkAGEzMWIxMmI5 | Prod1 |
98739 | jZWYtNGQ3My1iNmM | Prod2 |
The Word bellow will invoke POST call by using line contents as object attributes:
obj = FIND "dados.xlsx", "tokenId=29187"
POST "https://server/query", obj
' obj here is {tokenId: 29187, token: "AAMkAGEzMWIxMmI5", comment: "Prod1"}
- OAuth2 is being implemented and no modification to previous calls will be necessary as this configuration will be an administrative conversation to get the token setup.
Generate a password for the person
talk "Let's generate a very dificult to guess password for the new bot:"
generate a password
talk "Your password is *" + password + "*. Keep it on a safe place only acessible to you."
Get the list of cloud subscriptions
hear one of subscriptions with email, password into subscriptionId
talk "The subscription selected was: " + subscriptionId
# Simple and Advances examples.
Here’s a single markdown document containing the 20 sample programs in General Bots BASIC, each with a modern and engaging approach:
20 very simple samples of BASIC
# General Bots BASIC Sample Programs
## 1. Welcome Message
```basic
HEAR name AS NAME
TALK "Hey " + name + ", welcome to our awesome service! 🎉"
2. Simple Password Generator
GENERATE A PASSWORD
TALK "Your new password is: " + password
3. Remind User to Take a Break
WAIT 3600
TALK "You've been working for an hour! Remember to take a break and stretch! 💪"
4. Get User's Favorite Fruit
HEAR fruit AS "Apple", "Banana", "Cherry"
TALK "Nice choice! " + fruit + " is a great fruit! 🍓"
5. Send a Calendar Invite
HEAR email AS EMAIL
HEAR date AS DATE
TALK "Sending a calendar invite for " + date + " to " + email
SEND MAIL email, "Calendar Invite", "You are invited to an event on " + date
6. Generate and Send QR Code
HEAR url AS "https://example.com"
file = QRCODE url
SEND FILE file
TALK "Here is your QR code for the URL: " + url
7. Weather Update
GET "https://api.weatherapi.com/v1/current.json?key=YOUR_API_KEY&q=YOUR_LOCATION"
data = result.current
TALK "The current temperature is " + data.temp_c + "°C with " + data.condition.text
8. Todo List Reminder
HEAR task AS STRING
TALK "Got it! I'll remind you about: " + task
9. Send Motivational Quote
quotes = ["Keep going!", "You got this!", "Believe in yourself!"]
index = RANDOM(0, 2)
TALK quotes[index]
10. Capture and Send Screenshot
OPEN "https://example.com"
file = SCREENSHOT "body"
SEND FILE file
TALK "Here's a screenshot of the page."
11. Daily Affirmation
HEAR user AS NAME
TALK "Good morning " + user + "! Remember, today is going to be amazing! 🌟"
12. Send a Joke
jokes = ["Why don’t scientists trust atoms? Because they make up everything!", "Why did the scarecrow win an award? Because he was outstanding in his field!"]
index = RANDOM(0, 1)
TALK jokes[index]
13. User Poll
HEAR choice AS "Option 1", "Option 2", "Option 3"
TALK "You selected " + choice + ". Thanks for your input! 🗳️"
14. Image Caption Extraction
SEE CAPTION OF "https://example.com/image.jpg" AS caption
TALK "The caption of the image is: " + caption
15. Send Reminder Email
HEAR email AS EMAIL
HEAR reminder AS STRING
SEND MAIL email, "Reminder", "Just a friendly reminder: " + reminder
16. Capture Text from Image
SEE TEXT OF "https://example.com/image-with-text.jpg" AS text
TALK "The text from the image is: " + text
17. Add a Note
HEAR note AS STRING
ADD NOTE note
TALK "Note added: " + note
18. Generate Dynamic Chart
data = [5, 15, 25]
labels = "Red;Green;Blue"
img = CHART "bar", data, labels
SEND FILE img
TALK "Here’s your dynamic chart!"
19. Create and Send PDF Report
data = FIND "data.xlsx", "A1:B10"
pdf = data AS PDF
SEND FILE pdf
TALK "Here's your report in PDF format."
20. Interactive Game
TALK "Guess a number between 1 and 10."
HEAR guess AS INTEGER
IF guess == 7
TALK "Congratulations! You guessed the right number! 🎉"
ELSE
TALK "Oops! Try again next time!"
Here’s a more complex set of 20 advanced General Bots BASIC programs that integrate web services, web automation, file handling, and dynamic interactions. These samples are designed to showcase the full potential of General Bots BASIC for advanced users.
# Advanced General Bots BASIC Sample Programs
## 1. **Retrieve and Save Web Data to Excel**
```basic
GET "https://api.example.com/data"
data = result.data
SAVE "data.xlsx", "A1:A" + UBOUND(data), data
TALK "Data retrieved and saved to data.xlsx successfully!"
2. Automated Web Form Submission
OPEN "https://example.com/form"
SET page, "#name", "John Doe"
SET page, "#email", "john.doe@example.com"
SET page, "#message", "This is a test message."
CLICK page, "#submit"
TALK "Form submitted successfully!"
3. Generate and Save Dynamic Report as PDF
data = FIND "report_data.xlsx", "A1:C10"
pdf = data AS PDF
SAVE pdf AS "report.pdf"
TALK "Dynamic report generated and saved as report.pdf!"
4. Create and Upload Image from Data
data = [10, 20, 30, 40]
labels = "Q1;Q2;Q3;Q4"
img = CHART "bar", data, labels
UPLOAD img
TALK "Chart image generated and uploaded!"
5. Automate GitHub Issue Creation from Spreadsheet
list = FIND "issues.xlsx"
index = 1
DO WHILE index <= UBOUND(list)
row = list[index]
page = GET HTML "https://github.com/GeneralBots/BotServer/issues/new"
SET page, "#issue_title", row.title
SET page, "#issue_body", row.body
CLICK page, "#new_issue > div > div > div.Layout-main > div > div.timeline-comment.color-bg-default.hx_comment-box--tip > div > div.flex-items-center.flex-justify-end.d-none.d-md-flex.mx-2.mb-2.px-0 > button"
TALK "Issue '" + row.title + "' created."
WAIT 5
index = index + 1
LOOP
6. Extract and Save Web Page Content
OPEN "https://example.com/page"
content = GET page, "body"
SAVE "page_content.txt", content
TALK "Page content saved as page_content.txt!"
7. Interactive Poll Results Analysis
HEAR poll_data AS FILE
data = LOAD poll_data
analysis = SELECT question, COUNT(*) AS responses FROM data GROUP BY question
SAVE "poll_analysis.xlsx", "A1:C" + UBOUND(analysis), analysis
TALK "Poll results analyzed and saved to poll_analysis.xlsx!"
8. Send User-Specific Notifications
list = FIND "users.xlsx", "Notify=Y"
index = 1
DO WHILE index <= UBOUND(list)
row = list[index]
SEND MAIL row.email, "Notification", "Hello " + row.name + ", you have a new notification!"
index = index + 1
LOOP
TALK "Notifications sent to all users."
9. Automate Data Entry into Web Application
OPEN "https://example.com/data-entry"
SET page, "#field1", "Value1"
SET page, "#field2", "Value2"
SET page, "#field3", "Value3"
CLICK page, "#submit"
TALK "Data entry completed successfully!"
10. Generate and Save QR Codes for Multiple URLs
urls = ["https://example1.com", "https://example2.com", "https://example3.com"]
index = 1
DO WHILE index <= UBOUND(urls)
file = QRCODE urls[index]
SAVE file AS "qrcode_" + index + ".png"
index = index + 1
LOOP
TALK "QR codes generated and saved!"
11. Automate Google Calendar Event Creation
OPEN "https://calendar.google.com/calendar/u/0/r?tab=mc&pli=1"
HEAR event_date AS DATE
HEAR event_details AS STRING
SET "#title", "New Event"
SET "#details", event_details
SET "#date", event_date
CLICK "#save"
TALK "Event created on Google Calendar for " + event_date
12. Send Customized Reports to a List of Recipients
data = FIND "reports.xlsx"
index = 1
DO WHILE index <= UBOUND(data)
row = data[index]
report = TEMPLATE "report_template.docx" WITH row
SEND MAIL row.email, "Your Report", report
index = index + 1
LOOP
TALK "Reports sent to all recipients."
13. Create and Save Dynamic Chart with User Input
HEAR user_data AS "10,20,30,40"
data = SPLIT(user_data, ",")
img = CHART "line", data
SAVE img AS "dynamic_chart.png"
TALK "Dynamic chart created and saved as dynamic_chart.png!"
14. Extract and Save Image Metadata
SEE TEXT OF "https://example.com/image.jpg" AS metadata
SAVE "image_metadata.txt", metadata
TALK "Image metadata extracted and saved as image_metadata.txt!"
15. Automate Form Filling Based on Data from Excel
data = FIND "form_data.xlsx", "A1:C1"
OPEN "https://example.com/form"
SET page, "#name", data[0].name
SET page, "#email", data[0].email
SET page, "#message", data[0].message
CLICK page, "#submit"
TALK "Form filled and submitted based on Excel data!"
16. Generate PDF from Dynamic SQL Query Results
data = FIND "database.xlsx", "A1:C100"
query = SELECT name, age, city FROM data WHERE age > 30
pdf = query AS PDF
SAVE pdf AS "filtered_data_report.pdf"
TALK "PDF report generated and saved!"
17. Capture and Save Web Page Screenshot with Timestamp
timestamp = FORMAT NOW(), "YYYY-MM-DD_HH-MM-SS"
OPEN "https://example.com"
file = SCREENSHOT "body"
SAVE file AS "screenshot_" + timestamp + ".png"
TALK "Screenshot captured and saved with timestamp!"
18. Handle and Save User-Uploaded Files
HEAR user_file AS FILE
SAVE user_file AS "uploads/user_file_" + FORMAT NOW(), "YYYY-MM-DD_HH-MM-SS" + ".pdf"
TALK "File uploaded and saved successfully!"
19. Extract Data from Web Page and Save to Excel
OPEN "https://example.com/data-page"
data = GET page, "#data-table"
SAVE "web_data.xlsx", "A1:A" + UBOUND(data), data
TALK "Data extracted from web page and saved to web_data.xlsx!"
20. Perform Complex Data Analysis and Save Results
data = FIND "complex_data.xlsx", "A1:D100"
analysis = SELECT category, SUM(amount) AS total FROM data GROUP BY category
SAVE "data_analysis.xlsx", "A1:B" + UBOUND(analysis), analysis
TALK "Data analysis completed and saved to data_analysis.xlsx!"
These advanced samples illustrate a range of functionalities that can be implemented with General Bots BASIC, from data manipulation and web automation to dynamic content generation and complex file handling.