-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add example for simple token auth; Improve example for token supplier…
… auth; Clean code
- Loading branch information
Showing
5 changed files
with
113 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
const { exit } = require('process'); | ||
const Pulsar = require('..'); | ||
console.log("Starting consumer"); | ||
|
||
async function getToken() { | ||
console.log("Get token"); | ||
return "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJKb2UifQ.ipevRNuRP6HflG8cFKnmUPtypruRC4fb1DWtoLL62SY"; | ||
} | ||
|
||
(async () => { | ||
|
||
const auth = new Pulsar.AuthenticationToken({token: getToken}); | ||
|
||
// Create a client | ||
const client = new Pulsar.Client({ | ||
serviceUrl: 'pulsar://localhost:6650', | ||
authentication: auth, | ||
}); | ||
|
||
// Create a consumer | ||
const consumer = await client.subscribe({ | ||
topic: 'persistent://public/default/my-topic', | ||
subscription: 'sub1', | ||
subscriptionType: 'Shared', | ||
ackTimeoutMs: 10000, | ||
}); | ||
|
||
// Receive messages | ||
for (let i = 0; i < 10; i += 1) { | ||
const msg = await consumer.receive(); | ||
console.log(msg.getData().toString()); | ||
consumer.acknowledge(msg); | ||
} | ||
|
||
await consumer.close(); | ||
await client.close(); | ||
})(); |
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,53 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
const Pulsar = require('..'); | ||
|
||
async function getToken() { | ||
console.log("Get token"); | ||
return "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJKb2UifQ.ipevRNuRP6HflG8cFKnmUPtypruRC4fb1DWtoLL62SY"; | ||
} | ||
|
||
(async () => { | ||
const auth = new Pulsar.AuthenticationToken({token: getToken}); | ||
|
||
// Create a client | ||
const client = new Pulsar.Client({ | ||
serviceUrl: 'pulsar://localhost:6650', | ||
authentication: auth, | ||
}); | ||
|
||
// Create a producer | ||
const producer = await client.createProducer({ | ||
topic: 'persistent://public/default/my-topic', | ||
}); | ||
|
||
// Send messages | ||
for (let i = 0; i < 10; i += 1) { | ||
const msg = `my-message-${i}`; | ||
producer.send({ | ||
data: Buffer.from(msg), | ||
}); | ||
console.log(`Sent message: ${msg}`); | ||
} | ||
await producer.flush(); | ||
|
||
await producer.close(); | ||
await client.close(); | ||
})(); |
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