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
use lsp_types::{CodeAction, CodeActionKind, CodeActionOrCommand, CodeActionParams};
use psl::{
    diagnostics::Span,
    parser_database::walkers::{EnumWalker, ModelWalker},
    schema_ast::ast::WithSpan,
    Configuration,
};

pub(super) fn add_schema_block_attribute_model(
    actions: &mut Vec<CodeActionOrCommand>,
    params: &CodeActionParams,
    schema: &str,
    config: &Configuration,
    model: ModelWalker<'_>,
) {
    let datasource = match config.datasources.first() {
        Some(ds) => ds,
        None => return,
    };

    if datasource.schemas_span.is_none() {
        return;
    }

    if model.schema_name().is_some() {
        return;
    }

    let span_diagnostics =
        match super::diagnostics_for_span(schema, &params.context.diagnostics, model.ast_model().span()) {
            Some(sd) => sd,
            None => return,
        };

    let diagnostics =
        match super::filter_diagnostics(span_diagnostics, "This model is missing an `@@schema` attribute.") {
            Some(value) => value,
            None => return,
        };

    let formatted_attribute = super::format_block_attribute(
        "schema()",
        model.indentation(),
        model.newline(),
        &model.ast_model().attributes,
    );

    let edit = super::create_text_edit(schema, formatted_attribute, true, model.ast_model().span(), params);

    let action = CodeAction {
        title: String::from("Add `@@schema` attribute"),
        kind: Some(CodeActionKind::QUICKFIX),
        edit: Some(edit),
        diagnostics: Some(diagnostics),
        ..Default::default()
    };

    actions.push(CodeActionOrCommand::CodeAction(action))
}

pub(super) fn add_schema_block_attribute_enum(
    actions: &mut Vec<CodeActionOrCommand>,
    params: &CodeActionParams,
    schema: &str,
    config: &Configuration,
    enumerator: EnumWalker<'_>,
) {
    let datasource = match config.datasources.first() {
        Some(ds) => ds,
        None => return,
    };

    if datasource.schemas_span.is_none() {
        return;
    }

    if enumerator.schema().is_some() {
        return;
    }

    let span_diagnostics =
        match super::diagnostics_for_span(schema, &params.context.diagnostics, enumerator.ast_enum().span()) {
            Some(sd) => sd,
            None => return,
        };

    let diagnostics = match super::filter_diagnostics(span_diagnostics, "This enum is missing an `@@schema` attribute.")
    {
        Some(value) => value,
        None => return,
    };

    let formatted_attribute = super::format_block_attribute(
        "schema()",
        enumerator.indentation(),
        enumerator.newline(),
        &enumerator.ast_enum().attributes,
    );

    let edit = super::create_text_edit(schema, formatted_attribute, true, enumerator.ast_enum().span(), params);

    let action = CodeAction {
        title: String::from("Add `@@schema` attribute"),
        kind: Some(CodeActionKind::QUICKFIX),
        edit: Some(edit),
        diagnostics: Some(diagnostics),
        ..Default::default()
    };

    actions.push(CodeActionOrCommand::CodeAction(action))
}

pub(super) fn add_schema_to_schemas(
    actions: &mut Vec<CodeActionOrCommand>,
    params: &CodeActionParams,
    schema: &str,
    config: &Configuration,
    model: ModelWalker<'_>,
) {
    let datasource = match config.datasources.first() {
        Some(ds) => ds,
        None => return,
    };

    let span_diagnostics =
        match super::diagnostics_for_span(schema, &params.context.diagnostics, model.ast_model().span()) {
            Some(sd) => sd,
            None => return,
        };

    let diagnostics = match super::filter_diagnostics(span_diagnostics, "This schema is not defined in the datasource.")
    {
        Some(value) => value,
        None => return,
    };

    let edit = match datasource.schemas_span {
        Some(span) => {
            let formatted_attribute = format!(r#"", "{}""#, model.schema_name().unwrap());
            super::create_text_edit(
                schema,
                formatted_attribute,
                true,
                // todo: update spans so that we can just append to the end of the _inside_ of the array. Instead of needing to re-append the `]` or taking the span end -1
                Span::new(span.start, span.end - 1),
                params,
            )
        }
        None => {
            let has_properties = datasource.provider_defined()
                || datasource.url_defined()
                || datasource.direct_url_defined()
                || datasource.shadow_url_defined()
                || datasource.relation_mode_defined()
                || datasource.schemas_defined();

            let formatted_attribute = super::format_block_property(
                "schemas",
                model.schema_name().unwrap(),
                model.indentation(),
                model.newline(),
                has_properties,
            );

            super::create_text_edit(schema, formatted_attribute, true, datasource.url_span, params)
        }
    };

    let action = CodeAction {
        title: String::from("Add schema to schemas"),
        kind: Some(CodeActionKind::QUICKFIX),
        edit: Some(edit),
        diagnostics: Some(diagnostics),
        ..Default::default()
    };

    actions.push(CodeActionOrCommand::CodeAction(action))
}