50 lines
1.4 KiB
Go

package analyzer
import (
"config-lsp/common"
commonparser "config-lsp/common/parser"
"strings"
protocol "github.com/tliron/glsp/protocol_3_16"
)
func analyzeQuotesAreValid(
ctx *analyzerContext,
) {
for _, info := range ctx.document.Config.GetAllOptions() {
checkIsUsingDoubleQuotes(ctx, info.Option.Key.Value, info.Option.Key.LocationRange)
checkIsUsingDoubleQuotes(ctx, info.Option.OptionValue.Value, info.Option.OptionValue.LocationRange)
checkQuotesAreClosed(ctx, info.Option.Key.Value, info.Option.Key.LocationRange)
checkQuotesAreClosed(ctx, info.Option.OptionValue.Value, info.Option.OptionValue.LocationRange)
}
}
func checkIsUsingDoubleQuotes(
ctx *analyzerContext,
value commonparser.ParsedString,
valueRange common.LocationRange,
) {
if strings.HasPrefix(value.Raw, "'") && strings.HasSuffix(value.Raw, "'") {
ctx.diagnostics = append(ctx.diagnostics, protocol.Diagnostic{
Range: valueRange.ToLSPRange(),
Message: "ssh_config does not support single quotes. Use double quotes (\") instead.",
Severity: &common.SeverityError,
})
}
}
func checkQuotesAreClosed(
ctx *analyzerContext,
value commonparser.ParsedString,
valueRange common.LocationRange,
) {
if strings.Count(value.Raw, "\"")%2 != 0 {
ctx.diagnostics = append(ctx.diagnostics, protocol.Diagnostic{
Range: valueRange.ToLSPRange(),
Message: "There are unclosed quotes here. Make sure all quotes are closed.",
Severity: &common.SeverityError,
})
}
}