-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandlers.go
More file actions
347 lines (289 loc) · 8.57 KB
/
handlers.go
File metadata and controls
347 lines (289 loc) · 8.57 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
package main
import (
"context"
"fmt"
"log/slog"
"os"
"path/filepath"
"sync"
"github.com/fsnotify/fsnotify"
"github.com/tliron/glsp"
protocol "github.com/tliron/glsp/protocol_3_16"
)
// Server holds the language server state
type Server struct {
mu sync.RWMutex
scanner *Scanner
documents *DocumentStore
config *Config
cache *Cache
cancel context.CancelFunc
}
// getScanner returns the current scanner (thread-safe)
func (s *Server) getScanner() *Scanner {
s.mu.RLock()
defer s.mu.RUnlock()
return s.scanner
}
// setScanner replaces the current scanner (thread-safe)
func (s *Server) setScanner(scanner *Scanner) {
s.mu.Lock()
defer s.mu.Unlock()
s.scanner = scanner
}
// DocumentStore tracks open documents and their diagnostics
type DocumentStore struct {
mu sync.RWMutex
documents map[protocol.DocumentUri]*Document
}
// Document represents an open file
type Document struct {
URI protocol.DocumentUri
Version int32
Content string
Diagnostics []protocol.Diagnostic
Findings []Finding // Store findings for hover support
}
// NewDocumentStore creates a new document store
func NewDocumentStore() *DocumentStore {
return &DocumentStore{
documents: make(map[protocol.DocumentUri]*Document),
}
}
// Set stores or updates a document
func (ds *DocumentStore) Set(uri protocol.DocumentUri, version int32, content string) {
ds.mu.Lock()
defer ds.mu.Unlock()
ds.documents[uri] = &Document{
URI: uri,
Version: version,
Content: content,
}
}
// Get retrieves a snapshot of a document (returns by value for thread safety)
func (ds *DocumentStore) Get(uri protocol.DocumentUri) (Document, bool) {
ds.mu.RLock()
defer ds.mu.RUnlock()
doc, ok := ds.documents[uri]
if !ok {
return Document{}, false
}
return *doc, ok
}
// SetDiagnostics atomically updates diagnostics and findings for a document
func (ds *DocumentStore) SetDiagnostics(uri protocol.DocumentUri, diagnostics []protocol.Diagnostic, findings []Finding) {
ds.mu.Lock()
defer ds.mu.Unlock()
if doc, ok := ds.documents[uri]; ok {
doc.Diagnostics = diagnostics
doc.Findings = findings
}
}
// Delete removes a document
func (ds *DocumentStore) Delete(uri protocol.DocumentUri) {
ds.mu.Lock()
defer ds.mu.Unlock()
delete(ds.documents, uri)
}
// Global server instance
var globalServer *Server
func SetupServer(rootPath string) error {
// Cancel previous watchers if re-initializing
if globalServer != nil && globalServer.cancel != nil {
globalServer.cancel()
}
cache := NewCache()
ctx, cancel := context.WithCancel(context.Background())
// Check for .gitleaksignore file
ignoreFilePath := findIgnoreFile(rootPath)
cfg, err := NewConfig(rootPath, func() {
slog.Info("reloading configuration, clearing cache")
if globalServer != nil {
if globalServer.config != nil {
// Recreate scanner with ignore file on reload
ignoreFile := findIgnoreFile(rootPath)
newScanner := NewScannerWithIgnore(globalServer.config.GetConfig(), ignoreFile)
globalServer.setScanner(newScanner)
}
// Clear cache on config reload
globalServer.cache.Clear()
}
})
if err != nil {
cancel()
return err
}
scanner := NewScannerWithIgnore(cfg.GetConfig(), ignoreFilePath)
globalServer = &Server{
scanner: scanner,
documents: NewDocumentStore(),
config: cfg,
cache: cache,
cancel: cancel,
}
// Start watching config file
go func() {
if err := cfg.Watch(ctx); err != nil {
slog.Error("failed to watch config", "error", err)
}
}()
// Start watching ignore file if it exists
if ignoreFilePath != "" {
go watchIgnoreFile(ctx, rootPath, ignoreFilePath)
}
return nil
}
// findIgnoreFile looks for .gitleaksignore in workspace root
func findIgnoreFile(rootPath string) string {
if rootPath == "" {
return ""
}
ignoreFile := filepath.Join(rootPath, ".gitleaksignore")
if _, err := os.Stat(ignoreFile); err == nil {
return ignoreFile
}
return ""
}
// watchIgnoreFile watches .gitleaksignore for changes
func watchIgnoreFile(ctx context.Context, rootPath, ignoreFilePath string) {
watcher, err := fsnotify.NewWatcher()
if err != nil {
slog.Error("failed to create ignore file watcher", "error", err)
return
}
defer watcher.Close()
// Watch the directory containing the ignore file
dir := filepath.Dir(ignoreFilePath)
if err := watcher.Add(dir); err != nil {
slog.Error("failed to watch directory for ignore file", "error", err)
return
}
slog.Info("watching .gitleaksignore for changes", "path", ignoreFilePath)
for {
select {
case <-ctx.Done():
return
case event, ok := <-watcher.Events:
if !ok {
return
}
// Check if it's the ignore file that changed
if filepath.Base(event.Name) == ".gitleaksignore" {
if event.Op&(fsnotify.Write|fsnotify.Create) != 0 {
slog.Info("reloading .gitleaksignore")
if globalServer != nil && globalServer.config != nil {
ignoreFile := findIgnoreFile(rootPath)
newScanner := NewScannerWithIgnore(globalServer.config.GetConfig(), ignoreFile)
globalServer.setScanner(newScanner)
globalServer.cache.Clear()
}
}
}
case err, ok := <-watcher.Errors:
if !ok {
return
}
slog.Error("ignore file watcher error", "error", err)
}
}
}
func textDocumentDidOpen(context *glsp.Context, params *protocol.DidOpenTextDocumentParams) error {
uri := params.TextDocument.URI
content := params.TextDocument.Text
version := params.TextDocument.Version
slog.Debug("document opened", "uri", uri)
// Store document
globalServer.documents.Set(uri, version, content)
// Scan and publish diagnostics
return scanAndPublish(context, uri, content)
}
func textDocumentDidChange(context *glsp.Context, params *protocol.DidChangeTextDocumentParams) error {
uri := params.TextDocument.URI
// We use Full sync, so there's only one change with the full content
if len(params.ContentChanges) == 0 {
return nil
}
var content string
switch change := params.ContentChanges[0].(type) {
case protocol.TextDocumentContentChangeEvent:
content = change.Text
case protocol.TextDocumentContentChangeEventWhole:
content = change.Text
default:
slog.Error("unexpected content change type", "type", fmt.Sprintf("%T", params.ContentChanges[0]))
return nil
}
version := params.TextDocument.Version
slog.Debug("document changed", "uri", uri)
// Update document
globalServer.documents.Set(uri, version, content)
// Scan on change to provide immediate feedback
return scanAndPublish(context, uri, content)
}
func textDocumentDidSave(context *glsp.Context, params *protocol.DidSaveTextDocumentParams) error {
uri := params.TextDocument.URI
slog.Debug("document saved", "uri", uri)
// Get content
var content string
if params.Text != nil {
content = *params.Text
} else {
// Fallback to stored content
doc, ok := globalServer.documents.Get(uri)
if !ok {
slog.Warn("document not found in store", "uri", uri)
return nil
}
content = doc.Content
}
// Scan and publish diagnostics
return scanAndPublish(context, uri, content)
}
func textDocumentDidClose(context *glsp.Context, params *protocol.DidCloseTextDocumentParams) error {
uri := params.TextDocument.URI
slog.Debug("document closed", "uri", uri)
// Remove document from store
globalServer.documents.Delete(uri)
// Clear diagnostics
context.Notify(protocol.ServerTextDocumentPublishDiagnostics, protocol.PublishDiagnosticsParams{
URI: uri,
Diagnostics: []protocol.Diagnostic{},
})
return nil
}
// scanAndPublish scans content and publishes diagnostics
func scanAndPublish(glspContext *glsp.Context, uri protocol.DocumentUri, content string) error {
var findings []Finding
var err error
cacheHit := false
// Check cache first
if cached, ok := globalServer.cache.Get(content); ok {
findings = cached
cacheHit = true
} else {
// Scan for secrets using filesystem path for correct fingerprints
ctx := context.Background()
filename := uriToPath(uri)
findings, err = globalServer.getScanner().ScanContent(ctx, filename, content)
if err != nil {
slog.Error("scan failed", "uri", uri, "error", err)
return err
}
// Store in cache
globalServer.cache.Put(content, findings)
}
// Convert to diagnostics
diagnostics := FindingsToDiagnostics(findings)
// Store findings with diagnostics atomically for hover support
globalServer.documents.SetDiagnostics(uri, diagnostics, findings)
slog.Debug("scan complete",
"uri", uri,
"findings", len(findings),
"cacheHit", cacheHit)
// Publish diagnostics
glspContext.Notify(protocol.ServerTextDocumentPublishDiagnostics, protocol.PublishDiagnosticsParams{
URI: uri,
Diagnostics: diagnostics,
})
return nil
}