mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			147 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			147 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
 | 
						|
<script type="text/x-red" data-template-name="pusher in">
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-channel"><i class="fa fa-random"></i> Channel</label>
 | 
						|
     <input type="text" id="node-input-channel" placeholder="channel">
 | 
						|
  </div>
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-eventname"><i class="fa fa-tasks"></i> Event</label>
 | 
						|
     <input type="text" id="node-input-eventname" placeholder="event name">
 | 
						|
  </div>
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-pusherappkeysub"><i class="fa fa-lock"></i> App Key</label>
 | 
						|
     <input type="text" id="node-input-pusherappkeysub" placeholder="key">
 | 
						|
  </div>
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-cluster"><i class="fa fa-server"></i> Cluster</label>
 | 
						|
     <select type="text" id="node-input-cluster">
 | 
						|
        <option value="mt1">N. Virginia (US - default)</option>
 | 
						|
        <option value="us2">Ohio (US)</option>
 | 
						|
        <option value="us3">Oregon (US)</option>
 | 
						|
        <option value="eu">Ireland (Europe)</option>
 | 
						|
        <option value="ap1">Singapore (Asia)</option>
 | 
						|
        <option value="ap2">Mumbai (India)</option>
 | 
						|
        <option value="ap3">Tokyo (Asia)</option>
 | 
						|
        <option value="ap4">Sydney (Australia)</option>
 | 
						|
        <option value="sa1">São Paulo (Brazil)</option>
 | 
						|
     </select>
 | 
						|
  </div>
 | 
						|
  <div class="form-row">
 | 
						|
    <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
 | 
						|
    <input type="text" id="node-input-name" placeholder="Name">
 | 
						|
  </div>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/x-red" data-help-name="pusher in">
 | 
						|
    <p>Pusher input mode. Use this node to subscribe to a Pusher channel/event.</p>
 | 
						|
    <p>You need a valid Pusher App key.</p>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
    RED.nodes.registerType('pusher in',{
 | 
						|
        category: 'mobile-input',
 | 
						|
        color:"#A9D0F5",
 | 
						|
        defaults: {
 | 
						|
            name: {value:""},
 | 
						|
            channel: {value:"", required:true},
 | 
						|
            cluster: {value:"mt1"},
 | 
						|
            eventname: {value:"", required:true}
 | 
						|
        },
 | 
						|
        credentials: {
 | 
						|
            pusherappkeysub: {type:"text"}
 | 
						|
        },
 | 
						|
        inputs:0,
 | 
						|
        outputs:1,
 | 
						|
        icon: "pusher.png",
 | 
						|
        label: function() {
 | 
						|
            return this.name||"pusher";
 | 
						|
        },
 | 
						|
        labelStyle: function() {
 | 
						|
            return this.name?"node_label_italic":"";
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 | 
						|
 | 
						|
 | 
						|
<script type="text/x-red" data-template-name="pusher out">
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-channel"><i class="fa fa-random"></i> Channel</label>
 | 
						|
     <input type="text" id="node-input-channel" placeholder="my_channel">
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-eventname"><i class="fa fa-tasks"></i> Event</label>
 | 
						|
     <input type="text" id="node-input-eventname" placeholder="test_event_name">
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-pusherappid"><i class="fa fa-tag"></i> App ID</label>
 | 
						|
     <input type="text" id="node-input-pusherappid" placeholder="app_id">
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-pusherappkey"><i class="fa fa-lock"></i> App Key</label>
 | 
						|
     <input type="text" id="node-input-pusherappkey" placeholder="key">
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-pusherappsecret"><i class="fa fa-asterisk"></i> App Secret</label>
 | 
						|
     <input type="password" id="node-input-pusherappsecret" placeholder="secret">
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div class="form-row">
 | 
						|
     <label for="node-input-cluster"><i class="fa fa-server"></i> Cluster</label>
 | 
						|
     <select type="text" id="node-input-cluster">
 | 
						|
        <option value="mt1">N. Virginia (US - default)</option>
 | 
						|
        <option value="us2">Ohio (US)</option>
 | 
						|
        <option value="us3">Oregon (US)</option>
 | 
						|
        <option value="eu">Ireland (Europe)</option>
 | 
						|
        <option value="ap1">Singapore (Asia)</option>
 | 
						|
        <option value="ap2">Mumbai (India)</option>
 | 
						|
        <option value="ap3">Tokyo (Asia)</option>
 | 
						|
        <option value="ap4">Sydney (Australia)</option>
 | 
						|
        <option value="sa1">São Paulo (Brazil)</option>
 | 
						|
     </select>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div class="form-row">
 | 
						|
    <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
 | 
						|
    <input type="text" id="node-input-name" placeholder="Name">
 | 
						|
  </div>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/x-red" data-help-name="pusher out">
 | 
						|
    <p>Pusher output node for sending messages to a specific channel/event.</p>
 | 
						|
    <p>You need an App key, secret and ID of a Pusher app.</p>
 | 
						|
    <p>The node will send the <code>msg.payload</code> of the incoming message.</p>
 | 
						|
    <p>If you leave the eventname blank you can set it using <code>msg.topic</code>.</p>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
    RED.nodes.registerType('pusher out',{
 | 
						|
        category: 'mobile-output',
 | 
						|
        color:"#A9D0F5",
 | 
						|
        defaults: {
 | 
						|
            name: {value:""},
 | 
						|
            channel: {value:"", required:true},
 | 
						|
            cluster: {value:"mt1"},
 | 
						|
            eventname: {value:""}
 | 
						|
        },
 | 
						|
        credentials: {
 | 
						|
            pusherappid: {type:"text"},
 | 
						|
            pusherappkey: {type:"text"},
 | 
						|
            pusherappsecret: {type:"password"}
 | 
						|
        },
 | 
						|
        inputs:1,
 | 
						|
        outputs:0,
 | 
						|
        icon: "pusher.png",
 | 
						|
        align: "right",
 | 
						|
        label: function() {
 | 
						|
            return this.name||"pusher";
 | 
						|
        },
 | 
						|
        labelStyle: function() {
 | 
						|
            return this.name?"node_label_italic":"";
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 |