7
7
import com .intellij .openapi .components .ServiceManager ;
8
8
import com .intellij .openapi .diagnostic .Logger ;
9
9
import com .intellij .util .containers .ContainerUtil ;
10
- import org .kohsuke .github .GHGist ;
11
- import org .kohsuke .github .GitHub ;
12
- import org .kohsuke .github .GitHubBuilder ;
13
- import org .kohsuke .github .PagedIterable ;
10
+ import org .kohsuke .github .*;
14
11
15
12
import java .io .IOException ;
16
13
import java .util .ArrayList ;
24
21
public class GistSnippetService {
25
22
private static final Logger logger = Logger .getInstance (GistSnippetService .class );
26
23
24
+ private final GithubHelper githubHelper = new GithubHelper ();
25
+
27
26
// cache in memory, can be collected
28
27
private Map <String , List <String >> scopeCache = ContainerUtil .createConcurrentSoftValueMap ();
29
28
private Map <String , GHGist > gistCache = ContainerUtil .createConcurrentSoftValueMap ();
@@ -43,12 +42,13 @@ public List<GHGist> queryOwnGist(String token, boolean forced) {
43
42
AtomicReference <List <GHGist >> result = new AtomicReference <>();
44
43
List <String > idList = scopeCache .computeIfAbsent (key , (k ) -> {
45
44
try {
46
- GitHub github = new GitHubBuilder (). withOAuthToken (token ). build ( );
45
+ GitHub github = githubHelper . getClient (token );
47
46
PagedIterable <GHGist > pagedResult = github .listGists ();
48
47
List <GHGist > ghGists = pagedResult .toList ();
49
48
result .set (ghGists );
50
49
return putIntoCache (ghGists );
51
50
} catch (IOException e ) {
51
+ githubHelper .logError ();
52
52
logger .info ("Failed to query own gists, error: " + e .getMessage ());
53
53
throw new GistException (e );
54
54
}
@@ -103,7 +103,7 @@ public List<GHGist> queryStarredGist(String token, boolean forced) {
103
103
List <String > cacheList = scopeCache .computeIfAbsent (key , (k ) -> {
104
104
try {
105
105
// TODO starred gists
106
- GitHub github = new GitHubBuilder (). withOAuthToken (token ). build ( );
106
+ GitHub github = githubHelper . getClient (token );
107
107
PagedIterable <GHGist > pagedResult = github .listStarredGists ();
108
108
List <GHGist > gistList = pagedResult .toList ();
109
109
result .set (gistList );
@@ -126,7 +126,7 @@ public List<GHGist> queryPublicGists(String keyword) {
126
126
/**
127
127
* @param token
128
128
* @param gistId
129
- * @param forced true to load file content from remote server
129
+ * @param forced true to load file content from remote server
130
130
* @return
131
131
*/
132
132
public GHGist getGistDetail (String token , String gistId , boolean forced ) {
@@ -136,9 +136,10 @@ public GHGist getGistDetail(String token, String gistId, boolean forced) {
136
136
137
137
return gistCache .computeIfAbsent (gistId , (k ) -> {
138
138
try {
139
- GitHub github = new GitHubBuilder (). withOAuthToken (token ). build ( );
139
+ GitHub github = githubHelper . getClient (token );
140
140
return github .getGist (gistId );
141
141
} catch (IOException e ) {
142
+ githubHelper .logError ();
142
143
logger .info ("Failed to get gist detail, error: " + e .getMessage ());
143
144
throw new GistException (e );
144
145
}
@@ -148,7 +149,7 @@ public GHGist getGistDetail(String token, String gistId, boolean forced) {
148
149
public void deleteGist (String token , List <String > gistIds ) {
149
150
try {
150
151
for (String gistId : gistIds ) {
151
- GitHub github = new GitHubBuilder (). withOAuthToken (token ). build ( );
152
+ GitHub github = githubHelper . getClient (token );
152
153
github .deleteGist (gistId );
153
154
gistCache .remove (gistId );
154
155
}
@@ -158,8 +159,9 @@ public void deleteGist(String token, List<String> gistIds) {
158
159
cacheList .removeAll (gistIds );
159
160
}
160
161
} catch (IOException e ) {
162
+ githubHelper .logError ();
161
163
logger .info ("Failed to delete gist, error: " + e .getMessage ());
162
164
throw new GistException (e );
163
165
}
164
166
}
165
- }
167
+ }
0 commit comments