/* Copyright 2019 The Matrix.org Foundation C.I.C. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import url from 'url'; import React from 'react'; import PropTypes from 'prop-types'; import * as sdk from '../../../index'; import { _t, pickBestLanguage } from '../../../languageHandler'; import Matrix from 'matrix-js-sdk'; class TermsCheckbox extends React.PureComponent { static propTypes = { onChange: PropTypes.func.isRequired, url: PropTypes.string.isRequired, checked: PropTypes.bool.isRequired, } onChange = (ev) => { this.props.onChange(this.props.url, ev.target.checked); } render() { return ; } } export default class TermsDialog extends React.PureComponent { static propTypes = { /** * Array of [Service, policies] pairs, where policies is the response from the * /terms endpoint for that service */ policiesAndServicePairs: PropTypes.array.isRequired, /** * urls that the user has already agreed to */ agreedUrls: PropTypes.arrayOf(PropTypes.string), /** * Called with: * * success {bool} True if the user accepted any douments, false if cancelled * * agreedUrls {string[]} List of agreed URLs */ onFinished: PropTypes.func.isRequired, } constructor(props) { super(); this.state = { // url -> boolean agreedUrls: {}, }; for (const url of props.agreedUrls) { this.state.agreedUrls[url] = true; } } _onCancelClick = () => { this.props.onFinished(false); } _onNextClick = () => { this.props.onFinished(true, Object.keys(this.state.agreedUrls).filter((url) => this.state.agreedUrls[url])); } _nameForServiceType(serviceType, host) { switch (serviceType) { case Matrix.SERVICE_TYPES.IS: return
{_t("Identity Server")}
({host})
; case Matrix.SERVICE_TYPES.IM: return
{_t("Integration Manager")}
({host})
; } } _summaryForServiceType(serviceType) { switch (serviceType) { case Matrix.SERVICE_TYPES.IS: return
{_t("Find others by phone or email")}
{_t("Be found by phone or email")}
; case Matrix.SERVICE_TYPES.IM: return
{_t("Use bots, bridges, widgets and sticker packs")}
; } } _onTermsCheckboxChange = (url, checked) => { this.setState({ agreedUrls: Object.assign({}, this.state.agreedUrls, { [url]: checked }), }); } render() { const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); const DialogButtons = sdk.getComponent('views.elements.DialogButtons'); const rows = []; for (const policiesAndService of this.props.policiesAndServicePairs) { const parsedBaseUrl = url.parse(policiesAndService.service.baseUrl); const policyValues = Object.values(policiesAndService.policies); for (let i = 0; i < policyValues.length; ++i) { const termDoc = policyValues[i]; const termsLang = pickBestLanguage(Object.keys(termDoc).filter((k) => k !== 'version')); let serviceName; let summary; if (i === 0) { serviceName = this._nameForServiceType(policiesAndService.service.serviceType, parsedBaseUrl.host); summary = this._summaryForServiceType( policiesAndService.service.serviceType, ); } rows.push( {serviceName} {summary} {termDoc[termsLang].name} ); } } // if all the documents for at least one service have been checked, we can enable // the submit button let enableSubmit = false; for (const policiesAndService of this.props.policiesAndServicePairs) { let docsAgreedForService = 0; for (const terms of Object.values(policiesAndService.policies)) { let docAgreed = false; for (const lang of Object.keys(terms)) { if (lang === 'version') continue; if (this.state.agreedUrls[terms[lang].url]) { docAgreed = true; break; } } if (docAgreed) { ++docsAgreedForService; } } if (docsAgreedForService === Object.keys(policiesAndService.policies).length) { enableSubmit = true; break; } } return (

{_t("To continue you need to accept the terms of this service.")}

{rows}
{_t("Service")} {_t("Summary")} {_t("Document")} {_t("Accept")}
); } }