mago-analyzer 1.47.1

A PHP static analyzer that can detect type errors in PHP code, and provide suggestions for fixing them.
Documentation
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
use mago_allocator::Arena;
use mago_word::Word;
use mago_word::word;

use mago_codex::metadata::CodebaseMetadata;
use mago_codex::visibility::Visibility;
use mago_php_version::feature::Feature;
use mago_reporting::Annotation;
use mago_reporting::Issue;
use mago_span::Span;

use crate::code::IssueCode;
use crate::context::Context;
use crate::context::block::BlockContext;
use crate::resolver::property::DeclaredProperty;
use crate::resolver::property::DeclaredPropertyKind;
use crate::resolver::property::resolve_declared_property;
use mago_bytes::BytesDisplay;

/// Checks if a method is visible from the current scope and reports a detailed
/// error if it is not.
///
/// # Arguments
///
/// * `context` - The global analysis context.
/// * `calling_class` - The class the access occurs in, or `None` for the global scope.
/// * `fqcn` - The fully-qualified class name on which the method is being called.
/// * `method_name` - The method name.
/// * `access_span` - The span of the entire method call/access expression (e.g., `$obj->method()`).
/// * `method_name_span` - The span of just the method name identifier (e.g., `method`).
///
/// # Returns
///
/// `true` if the method is visible, `false` otherwise. An error is reported to the
/// context buffer if the method is not visible.
pub fn check_method_visibility<A>(
    context: &mut Context<'_, '_, A>,
    calling_class: Option<Word>,
    fqcn: &[u8],
    method_name: &[u8],
    access_span: Span,
    member_span: Option<Span>,
) -> bool
where
    A: Arena,
{
    let declaring_class = context.codebase.get_declaring_method_class(fqcn, method_name).unwrap_or_else(|| word(fqcn));

    let Some(method_metadata) = context.codebase.get_declaring_method(fqcn, method_name) else {
        return true;
    };

    // Get the effective visibility, checking trait alias visibility overrides
    let Some(visibility) = context.codebase.get_method_visibility(fqcn, method_name) else {
        return true;
    };

    if visibility == Visibility::Public {
        return true;
    }

    let is_visible = is_visible_from_scope(context.codebase, visibility, declaring_class.as_bytes(), calling_class);
    if !is_visible {
        let declaring_class_name = context
            .codebase
            .get_class_like(declaring_class.as_bytes())
            .map_or_else(|| declaring_class, |metadata| metadata.original_name);

        let issue_title =
            format!("Cannot access {} method `{}::{}`.", visibility, declaring_class_name, BytesDisplay(method_name));
        let help_text = format!(
            "Change the visibility of method `{}` to `public`, or call it from an allowed scope.",
            BytesDisplay(method_name)
        );

        report_visibility_issue(
            context,
            calling_class,
            IssueCode::InvalidMethodAccess,
            issue_title,
            visibility,
            access_span,
            member_span,
            Some(method_metadata.span),
            help_text,
        );
    }

    is_visible
}

/// Determines whether a method is visible from the current scope
///
/// Returns `true` when the method is visible (or when visibility cannot be determined), and
/// `false` only when the method definitively exists but is inaccessible from the current scope.
pub fn is_method_visible<'ctx, A>(
    context: &Context<'ctx, '_, A>,
    block_context: &BlockContext<'ctx>,
    fqcn: &[u8],
    method_name: &[u8],
) -> bool
where
    A: Arena,
{
    let declaring_class = context.codebase.get_declaring_method_class(fqcn, method_name).unwrap_or_else(|| word(fqcn));

    if context.codebase.get_declaring_method(fqcn, method_name).is_none() {
        return true;
    }

    let Some(visibility) = context.codebase.get_method_visibility(fqcn, method_name) else {
        return true;
    };

    if visibility == Visibility::Public {
        return true;
    }

    is_visible_from_scope(
        context.codebase,
        visibility,
        declaring_class.as_bytes(),
        block_context.scope.get_class_like_name(),
    )
}

/// Checks if a static property (`Class::$prop`) is readable from the current scope and
/// reports a detailed error if it is not.  Magic `@property*` annotations never apply to
/// static access, so this entry point resolves annotation-blind; instance accesses go through
/// [`check_resolved_property_read_visibility`] with a resolution from
/// [`resolve_declared_property`] instead.
pub fn check_static_property_read_visibility<'ctx, A>(
    context: &mut Context<'ctx, '_, A>,
    block_context: &BlockContext<'ctx>,
    fqcn: &[u8],
    property_name: &[u8],
    access_span: Span,
    member_span: Option<Span>,
) -> bool
where
    A: Arena,
{
    let property_name = word(property_name);

    let Some(class_metadata) = context.codebase.get_class_like(fqcn) else {
        return true;
    };

    let Some(resolution) = resolve_declared_property(
        context.codebase,
        class_metadata,
        property_name,
        false, // `instance_access`: this entry point serves `Class::$prop` resolution
        block_context.scope.get_class_like_name(),
    ) else {
        return true;
    };

    check_resolved_property_read_visibility(context, block_context, &resolution, access_span, member_span)
}

/// Checks if a property access already resolved by [`resolve_declared_property`] is readable
/// from the current scope and reports a detailed error if it is not.
pub(crate) fn check_resolved_property_read_visibility<'ctx, A>(
    context: &mut Context<'ctx, '_, A>,
    block_context: &BlockContext<'ctx>,
    resolution: &DeclaredProperty<'_>,
    access_span: Span,
    member_span: Option<Span>,
) -> bool
where
    A: Arena,
{
    let DeclaredProperty { declaring_class: declaring_class_metadata, property: property_metadata, kind } = *resolution;
    let property_name = property_metadata.name.0;

    if matches!(kind, DeclaredPropertyKind::Magic) {
        if !property_metadata.flags.is_writeonly() {
            return true;
        }

        let class_name = &declaring_class_metadata.original_name;

        context.collector.report_with_code(
            IssueCode::InvalidPropertyRead,
            Issue::error(format!(
                "Cannot read from write-only property `{class_name}::{property_name}`."
            ))
            .with_annotation(
                Annotation::primary(member_span.unwrap_or(access_span))
                    .with_message("Attempt to read from a write-only property"),
            )
            .with_annotation(
                Annotation::secondary(declaring_class_metadata.name_span.unwrap_or(declaring_class_metadata.span))
                    .with_message(format!("Property is defined as write-only via a `@property-write` tag on class `{class_name}`")),
            )
            .with_note("Properties defined with `@property-write` are 'magic' properties that can be assigned to, but not read from.")
            .with_help("If this property should be readable, change its docblock definition from `@property-write` to `@property`."),
        );

        return false;
    }

    if !property_metadata.hooks.is_empty()
        && property_metadata.hooks.contains_key(&word(b"set"))
        && !property_metadata.hooks.contains_key(&word(b"get"))
        && property_metadata.flags.is_virtual_property()
    {
        let class_name = &declaring_class_metadata.original_name;

        context.collector.report_with_code(
            IssueCode::InvalidPropertyRead,
            Issue::error(format!(
                "Cannot read from write-only property `{class_name}::{property_name}` - property only has a set hook."
            ))
            .with_annotation(Annotation::primary(member_span.unwrap_or(access_span)).with_message("Read access here"))
            .with_annotation(
                Annotation::secondary(property_metadata.span.or(property_metadata.name_span).unwrap_or(access_span))
                    .with_message("Property defined here with only a set hook"),
            )
            .with_help("Add a get hook to make this property readable."),
        );

        return false;
    }

    let visibility = property_metadata.read_visibility;
    let is_visible = is_visible_from_scope(
        context.codebase,
        visibility,
        declaring_class_metadata.name.as_bytes(),
        block_context.scope.get_class_like_name(),
    );

    if !is_visible {
        let issue_title = format!(
            "Cannot read {} property `{}` from class `{}`.",
            visibility, property_name, declaring_class_metadata.original_name
        );

        let help_text =
            format!("Make the property `{property_name}` readable (e.g., `public`), or add a public getter method.");

        report_visibility_issue(
            context,
            block_context.scope.get_class_like_name(),
            IssueCode::InvalidPropertyRead,
            issue_title,
            visibility,
            access_span,
            member_span,
            property_metadata.span.or(property_metadata.name_span),
            help_text,
        );
    }

    is_visible
}

/// The write-access counterpart of [`check_resolved_property_read_visibility`].
pub(crate) fn check_resolved_property_write_visibility<'ctx, A>(
    context: &mut Context<'ctx, '_, A>,
    block_context: &BlockContext<'ctx>,
    resolution: &DeclaredProperty<'_>,
    access_span: Span,
    member_span: Option<Span>,
) -> bool
where
    A: Arena,
{
    let DeclaredProperty { declaring_class: declaring_class_metadata, property: property_metadata, kind } = *resolution;
    let property_name = property_metadata.name.0;

    if matches!(kind, DeclaredPropertyKind::Magic) {
        if property_metadata.flags.is_readonly() {
            let class_name = &declaring_class_metadata.original_name;
            context.collector.report_with_code(
                IssueCode::InvalidPropertyWrite,
                Issue::error(format!("Cannot write to documented read-only property `{class_name}::{property_name}`."))
                    .with_annotation(
                        Annotation::primary(member_span.unwrap_or(access_span)).with_message("This property is read-only"),
                    )
                    .with_help("Remove the assignment or change the property documentation to `@property` if writes are supported."),
            );
        }

        // Keep resolving the access so the resolver can independently report a
        // missing `__set()` implementation when applicable.
        return true;
    }

    if !property_metadata.hooks.is_empty()
        && property_metadata.hooks.contains_key(&word(b"get"))
        && !property_metadata.hooks.contains_key(&word(b"set"))
        && property_metadata.flags.is_virtual_property()
    {
        let class_name = &declaring_class_metadata.original_name;

        context.collector.report_with_code(
            IssueCode::InvalidPropertyWrite,
            Issue::error(format!(
                "Cannot write to read-only property `{class_name}::{property_name}` - property only has a get hook."
            ))
            .with_annotation(Annotation::primary(member_span.unwrap_or(access_span)).with_message("Write access here"))
            .with_annotation(
                Annotation::secondary(property_metadata.span.or(property_metadata.name_span).unwrap_or(access_span))
                    .with_message("Property defined here with only a get hook"),
            )
            .with_help("Add a set hook to make this property writable."),
        );

        return false;
    }

    let visibility = if property_metadata.flags.is_readonly() {
        if context.settings.version.is_supported(Feature::AsymmetricVisibility) {
            match property_metadata.write_visibility {
                Visibility::Public => Visibility::Protected,
                visibility => visibility,
            }
        } else {
            Visibility::Private
        }
    } else {
        property_metadata.write_visibility
    };

    let is_visible = is_visible_from_scope(
        context.codebase,
        visibility,
        declaring_class_metadata.name.as_bytes(),
        block_context.scope.get_class_like_name(),
    );
    if !is_visible {
        let issue_title = format!(
            "Cannot write to {} property `{}` on class `{}`.",
            visibility, property_name, declaring_class_metadata.original_name
        );

        let help_text = format!(
            "Make the property `{property_name}` writable (e.g., `public` or `public(set)`), or add a public setter method."
        );

        report_visibility_issue(
            context,
            block_context.scope.get_class_like_name(),
            IssueCode::InvalidPropertyWrite,
            issue_title,
            visibility,
            access_span,
            member_span,
            property_metadata.span.or(property_metadata.name_span),
            help_text,
        );
    }

    is_visible
}

pub(crate) fn is_visible_from_scope(
    codebase: &CodebaseMetadata,
    visibility: Visibility,
    declaring_class_id: &[u8],
    current_class_opt: Option<Word>,
) -> bool {
    match visibility {
        Visibility::Public => true,
        Visibility::Protected => {
            if let Some(current_class_id) = current_class_opt {
                current_class_id.as_bytes().eq_ignore_ascii_case(declaring_class_id)
                    || codebase.is_instance_of(current_class_id.as_bytes(), declaring_class_id)
                    || codebase.is_instance_of(declaring_class_id, current_class_id.as_bytes())
                    || is_visible_via_required_extends(codebase, current_class_id.as_bytes(), declaring_class_id)
            } else {
                false
            }
        }
        Visibility::Private => {
            if let Some(current_class_id) = current_class_opt {
                current_class_id.as_bytes().eq_ignore_ascii_case(declaring_class_id)
                    || codebase.class_uses_trait(current_class_id.as_bytes(), declaring_class_id)
                    || codebase.class_uses_trait(declaring_class_id, current_class_id.as_bytes())
            } else {
                false
            }
        }
    }
}

/// Checks if a protected member declared in `declaring_class_id` is accessible from
/// `current_class_id` via `@require-extends`. This handles the case where a trait has
/// `@require-extends BaseClass` and `BaseClass` uses another trait that declares the method.
fn is_visible_via_required_extends(
    codebase: &CodebaseMetadata,
    current_class_id: &[u8],
    declaring_class_id: &[u8],
) -> bool {
    let current_class_id_lc = mago_word::ascii_lowercase_word(current_class_id);

    let Some(current_metadata) = codebase.get_class_like(current_class_id_lc.as_bytes()) else {
        return false;
    };

    if current_metadata.require_extends.is_empty() {
        return false;
    }

    for required_class in current_metadata.require_extends.iter() {
        if codebase.is_instance_of(required_class.as_bytes(), declaring_class_id)
            || codebase.class_uses_trait(required_class.as_bytes(), declaring_class_id)
        {
            return true;
        }
    }

    false
}

fn report_visibility_issue<A>(
    context: &mut Context<'_, '_, A>,
    calling_class: Option<Word>,
    code: IssueCode,
    title: String,
    visibility: Visibility,
    access_span: Span,
    member_span: Option<Span>,
    definition_span: Option<Span>,
    help_text: String,
) where
    A: Arena,
{
    let current_scope_str = if let Some(current_class) = calling_class {
        format!("from within `{current_class}`")
    } else {
        "from the global scope".to_string()
    };

    let primary_annotation_span = member_span.unwrap_or(access_span);

    let mut issue = Issue::error(title)
        .with_annotation(
            Annotation::primary(primary_annotation_span)
                .with_message(format!("This member is {} and cannot be accessed here", visibility)),
        )
        .with_annotation(
            Annotation::secondary(access_span).with_message(format!("Invalid access occurs here, {current_scope_str}")),
        );

    if let Some(definition_span) = definition_span
        && definition_span != primary_annotation_span
    {
        issue = issue.with_annotation(
            Annotation::secondary(definition_span).with_message(format!("Member is defined as `{}` here", visibility)),
        );
    }

    issue = issue.with_help(help_text);

    context.collector.report_with_code(code, issue);
}