2021-09-04 09:33:59 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using CommandLine;
|
|
|
|
|
using RabbitMQ.Client;
|
2021-09-04 12:01:03 +00:00
|
|
|
|
using Tapeti.Cmd.ConsoleHelper;
|
2021-09-04 09:33:59 +00:00
|
|
|
|
using Tapeti.Cmd.Parser;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti.Cmd.Verbs
|
|
|
|
|
{
|
2021-09-04 12:02:35 +00:00
|
|
|
|
[Verb("bindqueue", HelpText = "Add a binding to an existing queue.")]
|
2021-09-04 09:33:59 +00:00
|
|
|
|
[ExecutableVerb(typeof(BindQueueVerb))]
|
|
|
|
|
public class BindQueueOptions : BaseConnectionOptions
|
|
|
|
|
{
|
|
|
|
|
[Option('q', "queue", Required = true, HelpText = "The name of the queue to add the binding(s) to.")]
|
|
|
|
|
public string QueueName { get; set; }
|
|
|
|
|
|
|
|
|
|
[Option('b', "bindings", Required = false, HelpText = "One or more bindings to add to the queue. Format: <exchange>:<routingKey>")]
|
|
|
|
|
public IEnumerable<string> Bindings { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class BindQueueVerb : IVerbExecuter
|
|
|
|
|
{
|
|
|
|
|
private readonly BindQueueOptions options;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BindQueueVerb(BindQueueOptions options)
|
|
|
|
|
{
|
|
|
|
|
this.options = options;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-09-04 12:01:03 +00:00
|
|
|
|
public void Execute(IConsole console)
|
2021-09-04 09:33:59 +00:00
|
|
|
|
{
|
2021-09-04 12:01:03 +00:00
|
|
|
|
var consoleWriter = console.GetPermanentWriter();
|
2021-09-04 09:33:59 +00:00
|
|
|
|
var bindings = BindingParser.Parse(options.Bindings);
|
|
|
|
|
|
|
|
|
|
var factory = new ConnectionFactory
|
|
|
|
|
{
|
|
|
|
|
HostName = options.Host,
|
|
|
|
|
Port = options.Port,
|
|
|
|
|
VirtualHost = options.VirtualHost,
|
|
|
|
|
UserName = options.Username,
|
|
|
|
|
Password = options.Password
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
using var connection = factory.CreateConnection();
|
|
|
|
|
using var channel = connection.CreateModel();
|
|
|
|
|
|
|
|
|
|
foreach (var (exchange, routingKey) in bindings)
|
|
|
|
|
channel.QueueBind(options.QueueName, exchange, routingKey);
|
|
|
|
|
|
2021-09-04 12:01:03 +00:00
|
|
|
|
consoleWriter.WriteLine($"{bindings.Length} binding{(bindings.Length != 1 ? "s" : "")} added to queue {options.QueueName}.");
|
2021-09-04 09:33:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|