Arnaud Cogoluègnes
85636953a4
Use check_topic_access on publishing
...
check_resource_access used to be called with
the MQTT topic as resource name and kind = topic.
It makes more sense now to call check_topic_access
with the exchange as resource name, kind = topic,
and routing key in the context.
References rabbitmq/rabbitmq-server#505
2016-12-29 16:34:19 +01:00
Michael Klishin
cfcde1d143
Merge branch 'stable'
2016-12-20 00:50:04 +03:00
Michael Klishin
b6c6dc7769
Log in a more human readable format
2016-12-20 00:42:06 +03:00
Michael Klishin
1ab92e897c
Wording
2016-12-19 22:51:05 +03:00
Arnaud Cogoluègnes
e250fa048f
Use coercion module for integer-to-binary coercion
...
Fixes #111
2016-12-19 17:53:20 +01:00
Arnaud Cogoluègnes
87628f9f51
Use binary for port-to-vhost mapping key
...
Behaves better as a JSON document key than an integer.
Fixes #111
2016-12-19 17:36:18 +01:00
Arnaud Cogoluègnes
b8344cdc27
Map client connection vhost to a port
...
Fixes #111
2016-12-19 15:00:43 +01:00
Arnaud Cogoluègnes
d1c2474a89
Merge branch 'stable'
2016-12-16 10:59:10 +01:00
Arnaud Cogoluègnes
7e03af30fd
Introduce mqtt_default_vhosts global parameter
...
Fixes #73
2016-12-13 14:46:15 +01:00
Arnaud Cogoluègnes
8f9e8489c2
Optionally map user certificate to virtual host
...
Use a global runtime parameter to map the DN of the certificate
to a virtual host.
Fixes #73
2016-12-09 16:48:47 +01:00
Jean-Sébastien Pédron
8216cb12f1
Merge branch 'stable'
2016-12-07 15:48:04 +01:00
Arnaud Cogoluègnes
88820d02d9
Don't crash for clients without a last will
...
References #74
2016-12-07 11:21:47 +01:00
Arnaud Cogoluègnes
b1627afe81
Gracefully close connections to non-existent virtual hosts
...
Return CONNACK 4 code when the virtual host doesn't exist.
The MQTT description for this return code states "The data in
the user name or password is malformed", which not exactly
accurate but better than a pending or abruptly closed connection.
The server logs also a more meaningful message.
Fixes #100
2016-12-06 16:09:50 +01:00
Daniil Fedotov
f411a74e10
Test list_mqtt_connections command
2016-12-06 14:24:45 +00:00
Michael Klishin
76c0a415e5
Merge branch 'master' into rabbitmq-cli-121
2016-12-05 19:56:24 +03:00
Daniil Fedotov
a025592ae9
A CLI command to list mqtt connections
2016-12-05 14:58:19 +00:00
Michael Klishin
bc8e2541bd
Merge branch 'stable'
2016-12-05 14:27:40 +03:00
Michael Klishin
97aa1ef4ae
Destructure this right in function head
2016-12-05 14:25:15 +03:00
Arnaud Cogoluègnes
a7a0174a41
Retain last will message
...
Fixes #74
2016-12-05 11:05:30 +01:00
Michael Klishin
c510fef54a
Merge branch 'stable'
2016-09-02 02:07:46 +03:00
Michael Klishin
ee213084f8
Wording, naming
2016-09-02 01:33:34 +03:00
Daniil Fedotov
4b688b9e63
Make MQTT authentication correspond with docs. Added tests
2016-09-01 16:54:51 +01:00
Daniil Fedotov
2626696498
Formatting
2016-05-20 14:07:04 +01:00
Daniil Fedotov
fcdff84cca
Merge pull request #80 from tiagodeoliveira/unnecessary_user_login_check
...
Removing unnecessary check_user_login on process_login
2016-05-20 14:06:56 +01:00
Daniil Fedotov
f2b4d32693
Formatting
2016-05-20 14:04:10 +01:00
Tiago Oliveira
4e7d7abc17
Using internal user from amqp client
2016-05-18 10:11:50 -03:00
Tiago Oliveira
61c3f61b64
Removing unnecessary check_user_login that executes authentication method twice.
...
During the amqp_connection:start the check_user_login method is already executed, when it is called again it will call the user_login_authentication again, it makes the authentication to be executed twice in a role, and it raises a problem when using salted passwords.
2016-05-11 14:35:28 -03:00
Michael Klishin
84871d5e7f
Merge branch 'stable'
2016-04-22 22:36:02 +01:00
Daniil Fedotov
e72eb1acbf
Revert redundant nack
2016-04-22 12:32:01 +01:00
Daniil Fedotov
0cae4fc7fe
Set session_present flag
2016-04-22 12:28:08 +01:00
Michael Klishin
25538025df
Merge branch 'stable'
2016-03-04 14:45:33 +03:00
Michael Klishin
b12d16ef71
Use 0 for frame_max
...
Atoms break HTTP API clients in statically typed languages, e.g. Go
and Java
2016-03-04 13:58:59 +03:00
Michael Klishin
30ca7ce8c1
Set product to "MQTT client"
...
Not much more specific but a bit more suitable.
2016-03-04 13:35:53 +03:00
Michael Klishin
15d23e4474
Cosmetics
2016-03-04 13:34:53 +03:00
Loïc Hoguin
439d8521aa
Emit stats for management UI
2016-03-03 14:59:53 +01:00
Loïc Hoguin
738f263798
MQTT connections use exactly one channel
2016-03-03 14:59:53 +01:00
Loïc Hoguin
7b42c20b7e
Allow passing the adapter info on processor init
2016-03-03 14:59:53 +01:00
Daniil Fedotov
64f5911ec2
Downgrade publishes if QoS = 2 to QoS = 1
2016-01-12 18:02:37 +00:00
Michael Klishin
7f0f7a7e36
Cosmetics
2016-01-08 02:26:38 +03:00
Loïc Hoguin
1f1cb7ab9b
Make send method configurable and export useful functions
...
Needed for the new Web-MQTT plugin.
2016-01-08 02:26:32 +03:00
Michael Klishin
0172a028cf
Merge pull request #53 from rabbitmq/rabbit-mqtt-33
...
Make send method configurable and export useful functions
2016-01-07 15:25:50 -08:00
Michael Klishin
20d84119b8
Cosmetics
2016-01-08 02:25:26 +03:00
Loïc Hoguin
f3fe54f647
Make send method configurable and export useful functions
...
Needed for the new Web-MQTT plugin.
2016-01-07 16:19:01 +01:00
Michael Klishin
9ba1da7434
Update (c) info
2016-01-01 12:59:18 +03:00
Michael Klishin
624a7741cf
Merge branch 'colons-in-username' of https://github.com/lshift/rabbitmq-mqtt into lshift-colons-in-username
2015-11-28 20:42:22 +03:00
Michael Klishin
b84260c721
Fix the build and a bug
...
Make sure that authentication with username taken from TLS/x509
certificate succeeds; respect rabbitmq_mqtt.ssl_cert_login.
Due to a match clause ordering issue it wasn't the case.
2015-11-28 20:20:32 +03:00
ash
001f4a1a01
add option to ignore colons in usernames
2015-11-19 11:36:24 +00:00
Michael Klishin
c15812ac44
merge stable into master
2015-10-21 20:18:33 +03:00
Michael Klishin
0e3efda1ab
Merge branch 'stable'
2015-09-30 04:03:26 +08:00
Giuseppe Privitera
d26b6e1c91
set auto_delete=false for QoS1 subscriptions
2015-09-29 11:23:34 +01:00