All files / pages security-settings.tsx

44.73% Statements 17/38
18.91% Branches 7/37
16.66% Functions 1/6
44.73% Lines 17/38

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 2621x 1x 1x 1x 1x       1x       1x 1x 1x       1x   1x 1x                                         3x 3x     3x         3x                                                                                                                                                                                                                                                                                                                                                                 1x                                                                  
import PropTypes from 'prop-types'
import Heading from '../components/Heading'
import PageLink from '../components/PageLink'
import en from '../locales/en'
import fr from '../locales/fr'
import {
  getSecuritySettingsContent,
  SecuritySettingsContent,
} from '../graphql/mappers/security-settings'
import {
  AuthModalsContent,
  getAuthModalsContent,
} from '../graphql/mappers/auth-modals'
import { getLogger } from '../logging/log-util'
import { AuthIsDisabled, ValidateSession } from '../lib/auth'
import {
  deleteAllCookiesWithPrefix,
  extendExpiryTime,
} from '../lib/cookie-utils'
 
import ErrorPage from '../components/ErrorPage'
import Button from '../components/Button'
import { GetServerSidePropsContext } from 'next'
interface SecurtitySettingsProps {
  locale: string | undefined
  content: {
    err?: '500' | '404' | '503'
    heading: string
    subHeading: string
    securityQuestions: {
      linkTitle: { link: string | undefined; text: string }
      subTitle: string
    }
    lookingFor: { title: string; subText: string[]; link: string }
  }
  bannerContent?: { err?: '500' | '404' | '503' }
  popupContent?: { err?: '500' | '404' | '503' }
  popupContentNA?: { err?: '500' | '404' | '503' }
  authModals?: { err?: '500' | '404' | '503' }
  aaPrefix: string
}
 
export default function SecuritySettings(props: SecurtitySettingsProps) {
  const t = props.locale === 'en' ? en : fr
 
  const errorCode =
    props.content.err ||
    props.bannerContent?.err ||
    props.popupContent?.err ||
    props.popupContentNA?.err ||
    props.authModals?.err
  Iif (errorCode !== undefined) {
    return (
      <ErrorPage
        lang={props.locale !== undefined ? props.locale : 'en'}
        errType={errorCode}
        isAuth={false}
        homePageLink={
          props.locale === 'en' ? 'en/my-dashboard' : 'fr/mon-tableau-de-bord'
        }
        accountPageLink={
          props.locale === 'en'
            ? 'https://srv136.services.gc.ca/sc/msca-mdsc/portal-portail/pro/home-accueil?Lang=eng'
            : 'https://srv136.services.gc.ca/sc/msca-mdsc/portal-portail/pro/home-accueil?Lang=fra'
        }
      />
    )
  }
 
  return (
    <div id="securityContent" data-testid="securityContent-test">
      <Heading id="security-settings-heading" title={props.content.heading} />
      <p className="mb-8 mt-3 text-xl text-gray-darker">
        {props.content.subHeading}
      </p>
      <Button
        data-testid="securityQuestionsLink"
        href={props.content.securityQuestions.linkTitle.link}
        id="securityQuestionsLink"
        style="link"
        text={props.content.securityQuestions.linkTitle.text}
        className="w-fit pl-0 pr-0 font-body text-20px underline"
        refPageAA={props.aaPrefix}
      ></Button>
 
      <p className="mb-8 text-xl text-gray-darker">
        {props.content.securityQuestions.subTitle}
      </p>
      <PageLink
        lookingForText={props.content.lookingFor.title}
        accessText={props.content.lookingFor.subText[0]}
        linkText={props.content.lookingFor.subText[1]}
        href={props.content.lookingFor.link}
        dataCy="access-profile-page-link"
        buttonHref={t.url_dashboard}
        buttonId="back-to-dashboard-button"
        buttonLinkText={t.backToDashboard}
        refPageAA={props.aaPrefix}
        dashId={t.id_dashboard}
      ></PageLink>
    </div>
  )
}
 
export async function getServerSideProps({
  locale,
  req,
  res,
}: {
  locale: GetServerSidePropsContext['locale']
  req: GetServerSidePropsContext['req']
  res: GetServerSidePropsContext['res']
}) {
  const authDisabled = AuthIsDisabled() ? true : false
  Iif (!authDisabled) {
    const sessionValid = await ValidateSession(
      req.cookies,
      process.env.CLIENT_ID as string,
    )
    if (!sessionValid) {
      deleteAllCookiesWithPrefix(
        req,
        res,
        process.env.AUTH_COOKIE_PREFIX as string,
      )
 
      return {
        redirect: {
          destination: `/${locale}/auth/login`,
          permanent: false,
        },
      }
    } else {
      extendExpiryTime(
        req,
        res,
        process.env.AUTH_COOKIE_PREFIX + 'sessionId',
        Number(process.env.SESSION_MAX_AGE as string),
      )
    }
  }
  //The below sets the minimum logging level to error and surpresses everything below that
  const logger = getLogger('security-settings')
  logger.level = 'error'
 
  const content = await getSecuritySettingsContent().catch(
    (error): SecuritySettingsContent => {
      logger.error(error)
      return { err: '500' }
    },
  )
 
  const authModals = await getAuthModalsContent().catch(
    (error): AuthModalsContent => {
      logger.error(error)
      return { err: '500' }
    },
  )
 
  /* istanbul ignore next */
  const langToggleLink =
    locale === 'en' ? '/fr/parametres-securite' : '/en/security-settings'
 
  const breadCrumbItems =
    locale === 'en'
      ? content.en?.breadcrumb?.map(({ link, text }) => {
          return { text, link: '/' + locale + '/' + link }
        })
      : content.fr?.breadcrumb?.map(({ link, text }) => {
          return { text, link: '/' + locale + '/' + link }
        })
 
  /* Place-holder Meta Data Props */
  const meta = {
    data_en: {
      title: 'Security settings - My Service Canada Account',
      desc: 'English',
      author: 'Service Canada',
      keywords: '',
      service: 'ESDC-EDSC_MSCA-MSDC-SCH',
      creator: 'Employment and Social Development Canada',
      accessRights: '1',
    },
    data_fr: {
      title: 'Paramètres de sécurité - Mon dossier Service Canada',
      desc: 'Français',
      author: 'Service Canada',
      keywords: '',
      service: 'ESDC-EDSC_MSCA-MSDC-SCH',
      creator: 'Emploi et Développement social Canada',
      accessRights: '1',
    },
  }
 
  return {
    props: {
      locale,
      langToggleLink,
      content:
        content.err !== undefined
          ? content
          : locale === 'en'
            ? content.en
            : content.fr,
      meta,
      breadCrumbItems,
      aaPrefix:
        content.err !== undefined
          ? ''
          : `ESDC-EDSC_MSCA-MSDC-SCH:${content.en?.heading}`,
      aaMenuPrefix:
        content.err !== undefined ? '' : `ESDC-EDSC_MSCA-MSDC-SCH:Nav Menu`,
      popupStaySignedIn:
        authModals.err !== undefined
          ? authModals
          : locale === 'en'
            ? authModals.mappedPopupStaySignedIn?.en
            : authModals.mappedPopupStaySignedIn?.fr,
      popupYouHaveBeenSignedout:
        authModals.err !== undefined
          ? authModals
          : locale === 'en'
            ? authModals.mappedPopupSignedOut?.en
            : authModals.mappedPopupSignedOut?.fr,
    },
  }
}
 
SecuritySettings.propTypes = {
  /**
   * current locale in the address
   */
  locale: PropTypes.string,
 
  /*
   * Language link toggle text
   */
  langToggleLink: PropTypes.string,
 
  /*
   * Content Tags
   */
 
  content: PropTypes.object,
 
  /*
   * Meta Tags
   */
 
  meta: PropTypes.object,
 
  /*
   * BreadCrumb Items
   */
  breadCrumbItems: PropTypes.arrayOf(
    PropTypes.shape({
      text: PropTypes.string.isRequired,
      link: PropTypes.string.isRequired,
    }),
  ),
}