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

pub(super) fn add_at_map_for_id(
    actions: &mut Vec<CodeActionOrCommand>,
    params: &lsp_types::CodeActionParams,
    schema: &str,
    model: ModelWalker<'_>,
) {
    let pk = match model.primary_key() {
        Some(pk) => pk,
        None => return,
    };

    if pk.fields().len() < 1 {
        return;
    }

    let field = match pk.fields().next() {
        Some(field) => field,
        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,
        r#"MongoDB model IDs must have an @map("_id") annotation."#,
    ) {
        Some(value) => value,
        None => return,
    };

    let formatted_attribute = super::format_field_attribute(r#"@map("_id")"#);

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

    let action = CodeAction {
        title: r#"Add @map("_id")"#.to_owned(),
        kind: Some(CodeActionKind::QUICKFIX),
        edit: Some(edit),
        diagnostics: Some(diagnostics),
        ..Default::default()
    };

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

pub(super) fn add_native_for_auto_id(
    actions: &mut Vec<CodeActionOrCommand>,
    params: &lsp_types::CodeActionParams,
    schema: &str,
    model: ModelWalker<'_>,
    source: &Datasource,
) {
    let pk = match model.primary_key() {
        Some(pk) => pk,
        None => return,
    };

    if pk.fields().len() < 1 {
        return;
    }

    let field = match pk.fields().next() {
        Some(field) => field,
        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,
        r#"MongoDB `@default(auto())` fields must have `ObjectId` native type."#,
    ) {
        Some(value) => value,
        None => return,
    };

    let formatted_attribute = super::format_field_attribute(format!("@{}.ObjectId", source.name).as_str());

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

    let action = CodeAction {
        title: r#"Add @db.ObjectId"#.to_owned(),
        kind: Some(CodeActionKind::QUICKFIX),
        edit: Some(edit),
        diagnostics: Some(diagnostics),
        ..Default::default()
    };

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