SDSM:Historical Changes: Difference between revisions

From SMUSwiki
Jump to navigation Jump to search
(Reformat the page)
(Reformat text)
Line 6: Line 6:
== Description ==
== Description ==


This part of the '''SDS Modernization (SDSM)''' document enumerates a
This part of the '''SDS Modernization (SDSM)''' document enumerates a not
not necessarily exhaustive list of historical changes or improvements
necessarily exhaustive list of historical changes or improvements that were
that were made to '''SDS''', made by Darren Duncan if by whom is not
made to '''SDS''', made by Darren Duncan if by whom is not otherwise
otherwise specified.
specified.


It exists to provide visibility into historical progress of the
It exists to provide visibility into historical progress of the '''SDS
'''SDS Modernization (SDSM)''' project about which this document otherwise
Modernization (SDSM)''' project about which this document otherwise mainly
mainly just describes the current state of '''SDS'''.
just describes the current state of '''SDS'''.


This list often but not always corresponds to the list of Git pull
This list often but not always corresponds to the list of Git pull requests
requests at https://git.smus.ca which most readers of this document are
at https://git.smus.ca which most readers of this document are not
not privileged to see directly.
privileged to see directly.


[[#top|RETURN]]
[[#top|RETURN]]
Line 30: Line 30:
<code>https://api-latest.smus.ca/User/Preferences</code> (preview).
<code>https://api-latest.smus.ca/User/Preferences</code> (preview).


'''Observed Behavior:''' In production, a non-graceful generic 500
'''Observed Behavior:''' In production, a non-graceful generic 500 internal
internal server error message was displayed rather than the expected
server error message was displayed rather than the expected User
User Preferences screen. In preview, the revealed underlying symptom was
Preferences screen. In preview, the revealed underlying symptom was that
that the code line in <code>PreferencesController</code> of
the code line in <code>PreferencesController</code> of
<code>$addresses = $user->guardian->addresses;</code> was dying with
<code>$addresses = $user->guardian->addresses;</code> was dying with <code>Attempt to read property addresses on null</code>. The problem occurred for user <code>darren.duncan</code> but not for other users.
<code>Attempt to read property addresses on null</code>. The problem
occurred for user <code>darren.duncan</code> but not for other users.


'''Expected Behavior:''' The User Preferences screen should always
'''Expected Behavior:''' The User Preferences screen should always display,
display, regardless of whether the user in question is a guardian or has
regardless of whether the user in question is a guardian or has guardians.
guardians. If some functionality of the screen is not applicable for
If some functionality of the screen is not applicable for users that aren't
users that aren't or don't have guardians, the screen should either hide
or don't have guardians, the screen should either hide that functionality
that functionality or explain why it doesn't apply or both.
or explain why it doesn't apply or both.


'''Applied Solution:''' The dying code line was replaced with code that
'''Applied Solution:''' The dying code line was replaced with code that
only tried to fetch and return an address list when it was valid to do
only tried to fetch and return an address list when it was valid to do so,
so, and it returned an empty list otherwise. As a result, the User
and it returned an empty list otherwise. As a result, the User Preferences
Preferences screen never failed to display under this scenario.
screen never failed to display under this scenario.


'''Caveat:''' While the User Preferences screen no longer fails to
'''Caveat:''' While the User Preferences screen no longer fails to display,
display, as of the completion of this fix, it still remained true that
as of the completion of this fix, it still remained true that the
the functionality to actually display the fetched address list in
functionality to actually display the fetched address list in question was
question was never implemented, and so for every user, the screen
never implemented, and so for every user, the screen carried the
carried the placeholder message <code>Shows address info</code> instead
placeholder message <code>Shows address info</code> instead of each
of each individual address.
individual address.


[[#top|RETURN]]
[[#top|RETURN]]

Revision as of 17:26, 9 May 2024


This document consists of multiple parts; for a directory to all of the parts, see SDSM:Index.

Description

This part of the SDS Modernization (SDSM) document enumerates a not necessarily exhaustive list of historical changes or improvements that were made to SDS, made by Darren Duncan if by whom is not otherwise specified.

It exists to provide visibility into historical progress of the SDS Modernization (SDSM) project about which this document otherwise mainly just describes the current state of SDS.

This list often but not always corresponds to the list of Git pull requests at https://git.smus.ca which most readers of this document are not privileged to see directly.

RETURN

SDS Laravel: Fixes to Broken Behavior

2024 Apr 18: User Preferences Screen Fails to Display

Context: User darren.duncan attempted to visit their User Preferences screen, example urls https://api.smus.ca/User/Preferences (production) and https://api-latest.smus.ca/User/Preferences (preview).

Observed Behavior: In production, a non-graceful generic 500 internal server error message was displayed rather than the expected User Preferences screen. In preview, the revealed underlying symptom was that the code line in PreferencesController of $addresses = $user->guardian->addresses; was dying with Attempt to read property addresses on null. The problem occurred for user darren.duncan but not for other users.

Expected Behavior: The User Preferences screen should always display, regardless of whether the user in question is a guardian or has guardians. If some functionality of the screen is not applicable for users that aren't or don't have guardians, the screen should either hide that functionality or explain why it doesn't apply or both.

Applied Solution: The dying code line was replaced with code that only tried to fetch and return an address list when it was valid to do so, and it returned an empty list otherwise. As a result, the User Preferences screen never failed to display under this scenario.

Caveat: While the User Preferences screen no longer fails to display, as of the completion of this fix, it still remained true that the functionality to actually display the fetched address list in question was never implemented, and so for every user, the screen carried the placeholder message Shows address info instead of each individual address.

RETURN