-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from saucepleez/development-branch
taskt v3.3.0.0
- Loading branch information
Showing
28 changed files
with
1,693 additions
and
85 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,109 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
using System.Xml.Serialization; | ||
using taskt.UI.CustomControls; | ||
using taskt.UI.Forms; | ||
using RestSharp; | ||
using System.Data; | ||
using System.Drawing; | ||
|
||
namespace taskt.Core.Automation.Commands | ||
{ | ||
|
||
[Serializable] | ||
[Attributes.ClassAttributes.Group("Remote Commands")] | ||
[Attributes.ClassAttributes.Description("This command allows you to execute automation against another taskt Client.")] | ||
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to automate against a taskt instance that enables Local Listener.")] | ||
[Attributes.ClassAttributes.ImplementationDescription("This command uses Core.Server.LocalTCPListener")] | ||
public class RemoteAPICommand : ScriptCommand | ||
{ | ||
[XmlAttribute] | ||
[Attributes.PropertyAttributes.PropertyDescription("Please enter the IP:Port (ex. 192.168.2.200:19312)")] | ||
[Attributes.PropertyAttributes.PropertyUIHelper(Attributes.PropertyAttributes.PropertyUIHelper.UIAdditionalHelperType.ShowVariableHelper)] | ||
[Attributes.PropertyAttributes.InputSpecification("Define any IP endpoint which is enabled for local listening.")] | ||
[Attributes.PropertyAttributes.SampleUsage("**https://example.com** or **{vMyUrl}**")] | ||
[Attributes.PropertyAttributes.Remarks("")] | ||
public string v_BaseURL { get; set; } | ||
|
||
[XmlAttribute] | ||
[Attributes.PropertyAttributes.PropertyDescription("Select Parameter Type")] | ||
[Attributes.PropertyAttributes.PropertyUIHelper(Attributes.PropertyAttributes.PropertyUIHelper.UIAdditionalHelperType.ShowVariableHelper)] | ||
[Attributes.PropertyAttributes.PropertyUISelectionOption("Get Engine Status")] | ||
[Attributes.PropertyAttributes.PropertyUISelectionOption("Restart taskt")] | ||
[Attributes.PropertyAttributes.InputSpecification("Select the necessary API Method")] | ||
[Attributes.PropertyAttributes.Remarks("")] | ||
public string v_ParameterType { get; set; } | ||
|
||
[XmlAttribute] | ||
[Attributes.PropertyAttributes.PropertyDescription("Request Timeout (ms)")] | ||
[Attributes.PropertyAttributes.PropertyUIHelper(Attributes.PropertyAttributes.PropertyUIHelper.UIAdditionalHelperType.ShowVariableHelper)] | ||
[Attributes.PropertyAttributes.InputSpecification("Enter the length of time to wait before the request times out ")] | ||
[Attributes.PropertyAttributes.Remarks("")] | ||
public string v_RequestTimeout { get; set; } | ||
|
||
[XmlAttribute] | ||
[Attributes.PropertyAttributes.PropertyDescription("Please select the variable to receive the response")] | ||
[Attributes.PropertyAttributes.PropertyUIHelper(Attributes.PropertyAttributes.PropertyUIHelper.UIAdditionalHelperType.ShowVariableHelper)] | ||
[Attributes.PropertyAttributes.InputSpecification("Select or provide a variable from the variable list")] | ||
[Attributes.PropertyAttributes.SampleUsage("**vSomeVariable**")] | ||
[Attributes.PropertyAttributes.Remarks("If you have enabled the setting **Create Missing Variables at Runtime** then you are not required to pre-define your variables, however, it is highly recommended.")] | ||
public string v_userVariableName { get; set; } | ||
|
||
public RemoteAPICommand() | ||
{ | ||
this.CommandName = "RemoteAPICommand"; | ||
this.SelectionName = "Remote API"; | ||
this.CommandEnabled = true; | ||
this.CustomRendering = true; | ||
this.v_RequestTimeout = "5000"; | ||
} | ||
|
||
public override void RunCommand(object sender) | ||
{ | ||
|
||
try | ||
{ | ||
var server = v_BaseURL.ConvertToUserVariable(sender); | ||
var paramType = v_ParameterType.ConvertToUserVariable(sender); | ||
var timeout = v_RequestTimeout.ConvertToUserVariable(sender); | ||
|
||
var response = Server.LocalTCPListener.SendAutomationTask(server, paramType, timeout); | ||
|
||
response.StoreInUserVariable(sender, v_userVariableName); | ||
|
||
} | ||
catch (Exception ex) | ||
{ | ||
throw ex; | ||
} | ||
|
||
} | ||
public override List<Control> Render(frmCommandEditor editor) | ||
{ | ||
base.Render(editor); | ||
RenderedControls.AddRange(CommandControls.CreateDefaultInputGroupFor("v_BaseURL", this, editor)); | ||
RenderedControls.AddRange(CommandControls.CreateDefaultDropdownGroupFor("v_ParameterType", this, editor)); | ||
RenderedControls.AddRange(CommandControls.CreateDefaultInputGroupFor("v_RequestTimeout", this, editor)); | ||
|
||
RenderedControls.Add(CommandControls.CreateDefaultLabelFor("v_userVariableName", this)); | ||
var VariableNameControl = CommandControls.CreateStandardComboboxFor("v_userVariableName", this).AddVariableNames(editor); | ||
RenderedControls.AddRange(CommandControls.CreateUIHelpersFor("v_userVariableName", this, new Control[] { VariableNameControl }, editor)); | ||
RenderedControls.Add(VariableNameControl); | ||
|
||
return RenderedControls; | ||
|
||
} | ||
|
||
public override string GetDisplayValue() | ||
{ | ||
return base.GetDisplayValue() + $" [{v_ParameterType} on {v_BaseURL}]"; | ||
} | ||
|
||
} | ||
|
||
} | ||
|
Oops, something went wrong.