-
Notifications
You must be signed in to change notification settings - Fork 3
/
addressAlias.ts
106 lines (88 loc) · 3.02 KB
/
addressAlias.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/**
*
* Copyright 2019 Grégory Saive for NEM (github.com/nemtech)
*
* Licensed 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.
*/
import chalk from 'chalk';
import {command, ExpectedError, metadata, option} from 'clime';
import {
UInt64,
Account,
Address,
MosaicId,
NetworkType,
NamespaceHttp,
NamespaceId
} from 'nem2-sdk';
import {from as observableFrom, Observable, merge} from 'rxjs';
import {combineLatest, catchError} from 'rxjs/operators';
import {OptionsResolver} from '../../options-resolver';
import {BaseCommand, BaseOptions} from '../../base-command';
export class CommandOptions extends BaseOptions {
@option({
flag: 'u',
description: 'Endpoint URL (Ex.: "http://localhost:3000")',
})
peerUrl: string;
@option({
flag: 'n',
description: 'Namespace Name',
})
namespaceName: string;
}
@command({
description: 'Read address alias',
})
export default class extends BaseCommand {
constructor() {
super();
}
@metadata
async execute(options: CommandOptions) {
let peerUrl;
let namespaceName;
try {
peerUrl = OptionsResolver(options,
'peerUrl',
() => { return ''; },
'Enter a peerUrl: (Ex.: http://localhost:3000)');
namespaceName = OptionsResolver(options,
'namespaceName',
() => { return ''; },
'Enter a namespaceName: (Ex.: evias)');
if (!namespaceName.length) {
throw new Error("Namespace name is obligatory");
}
} catch (err) {
console.log(options);
throw new ExpectedError('Enter a valid input');
}
if (peerUrl.length) {
this.endpointUrl = peerUrl;
}
const namespaceHttp = new NamespaceHttp(this.endpointUrl);
let text = '';
text += chalk.green('Peer:\t') + chalk.bold(this.endpointUrl) + '\n';
text += '-'.repeat(20) + '\n\n';
const namespaceId = new NamespaceId(namespaceName);
const observer = namespaceHttp.getLinkedAddress(namespaceId).subscribe((apiResponses) => {
let address = apiResponses as Address;
text += 'Namespace:\t' + chalk.bold(namespaceId.fullName)+ '\n';
text += 'NamespaceId:\t' + chalk.bold(namespaceId.toHex())+ '\n';
text += 'MosaicId:\t' + chalk.bold(address.plain()) + '\n';
console.log(text);
},
err => console.log("API Message: ", err));
}
}