3
3
import * as cp from "child_process" ;
4
4
import { EventEmitter } from "events" ;
5
5
import * as vscode from "vscode" ;
6
- import { leetcodeChannel } from "./leetCodeChannel" ;
7
6
import { UserStatus } from "./shared" ;
8
7
import { leetCodeBinaryPath } from "./shared" ;
9
8
import { executeCommand } from "./utils/cpUtils" ;
10
9
import { DialogType , promptForOpenOutputChannel } from "./utils/uiUtils" ;
11
10
12
11
export interface ILeetCodeManager extends EventEmitter {
13
- getLoginStatus ( ) : void ;
12
+ getLoginStatus ( channel : vscode . OutputChannel ) : void ;
14
13
getStatus ( ) : UserStatus ;
15
14
getUser ( ) : string | undefined ;
16
- signIn ( ) : void ;
17
- signOut ( ) : void ;
15
+ signIn ( channel : vscode . OutputChannel ) : void ;
16
+ signOut ( channel : vscode . OutputChannel ) : void ;
18
17
}
19
18
20
19
class LeetCodeManager extends EventEmitter implements ILeetCodeManager {
@@ -27,9 +26,9 @@ class LeetCodeManager extends EventEmitter implements ILeetCodeManager {
27
26
this . userStatus = UserStatus . SignedOut ;
28
27
}
29
28
30
- public async getLoginStatus ( ) : Promise < void > {
29
+ public async getLoginStatus ( channel : vscode . OutputChannel ) : Promise < void > {
31
30
try {
32
- const result = await executeCommand ( "node" , [ leetCodeBinaryPath , "user" ] ) ;
31
+ const result = await executeCommand ( channel , "node" , [ leetCodeBinaryPath , "user" ] ) ;
33
32
this . currentUser = result . slice ( "You are now login as" . length ) . trim ( ) ;
34
33
this . userStatus = UserStatus . SignedIn ;
35
34
} catch ( error ) {
@@ -40,18 +39,18 @@ class LeetCodeManager extends EventEmitter implements ILeetCodeManager {
40
39
}
41
40
}
42
41
43
- public async signIn ( ) : Promise < void > {
42
+ public async signIn ( channel : vscode . OutputChannel ) : Promise < void > {
44
43
try {
45
44
const userName : string | undefined = await new Promise ( async ( resolve : ( res : string | undefined ) => void , reject : ( e : Error ) => void ) : Promise < void > => {
46
45
let result : string = "" ;
47
46
const childProc : cp . ChildProcess = cp . spawn ( "node" , [ leetCodeBinaryPath , "user" , "-l" ] ) ;
48
47
childProc . stdout . on ( "data" , ( data : string | Buffer ) => {
49
48
data = data . toString ( ) ;
50
49
result = result . concat ( data ) ;
51
- leetcodeChannel . append ( data ) ;
50
+ channel . append ( data ) ;
52
51
} ) ;
53
52
54
- childProc . stderr . on ( "data" , ( data : string | Buffer ) => leetcodeChannel . append ( data . toString ( ) ) ) ;
53
+ childProc . stderr . on ( "data" , ( data : string | Buffer ) => channel . append ( data . toString ( ) ) ) ;
55
54
56
55
childProc . on ( "error" , reject ) ;
57
56
const name : string | undefined = await vscode . window . showInputBox ( {
@@ -90,20 +89,20 @@ class LeetCodeManager extends EventEmitter implements ILeetCodeManager {
90
89
this . emit ( "statusChanged" ) ;
91
90
}
92
91
} catch ( error ) {
93
- promptForOpenOutputChannel ( "Failed to sign in. Please open the output channel for details" , DialogType . error ) ;
92
+ promptForOpenOutputChannel ( "Failed to sign in. Please open the output channel for details" , DialogType . error , channel ) ;
94
93
}
95
94
96
95
}
97
96
98
- public async signOut ( ) : Promise < void > {
97
+ public async signOut ( channel : vscode . OutputChannel ) : Promise < void > {
99
98
try {
100
- await executeCommand ( "node" , [ leetCodeBinaryPath , "user" , "-L" ] ) ;
99
+ await executeCommand ( channel , "node" , [ leetCodeBinaryPath , "user" , "-L" ] ) ;
101
100
vscode . window . showInformationMessage ( "Successfully signed out." ) ;
102
101
this . currentUser = undefined ;
103
102
this . userStatus = UserStatus . SignedOut ;
104
103
this . emit ( "statusChanged" ) ;
105
104
} catch ( error ) {
106
- promptForOpenOutputChannel ( "Failed to sign out. Please open the output channel for details" , DialogType . error ) ;
105
+ promptForOpenOutputChannel ( "Failed to sign out. Please open the output channel for details" , DialogType . error , channel ) ;
107
106
}
108
107
}
109
108
0 commit comments