@cocalc/server
Version:
CoCalc server functionality: functions used by either the hub and the next.js server
52 lines (45 loc) • 1.88 kB
text/typescript
/*
* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.
* License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details
*/
import getPool from "@cocalc/database/pool";
import { Strategy } from "@cocalc/util/types/sso";
import { ssoDispayedName } from "@cocalc/util/auth";
/** Returns an array of public info about strategies.
* Cached a bit so safe to call a lot.
*/
export default async function getStrategies(): Promise<Strategy[]> {
const pool = getPool("long");
// entries in "conf" were used before the "info" col existed. this is only for backwards compatibility.
const { rows } = await pool.query(`
SELECT strategy,
COALESCE(info -> 'icon', conf -> 'icon') as icon,
COALESCE(info -> 'display', conf -> 'display') as display,
COALESCE(info -> 'public', conf -> 'public') as public,
COALESCE(info -> 'exclusive_domains', conf -> 'exclusive_domains') as exclusive_domains,
COALESCE(info -> 'do_not_hide', 'false'::JSONB) as do_not_hide
FROM passport_settings
WHERE strategy != 'site_conf'
AND COALESCE(info ->> 'disabled', conf ->> 'disabled', 'false') != 'true'`);
return rows.map((row) => {
const display = ssoDispayedName({
display: row.display,
name: row.strategy,
});
return {
name: row.strategy,
display,
icon: row.icon, // don't use row.strategy as a fallback icon, since that icon likely does not exist
backgroundColor: COLORS[row.strategy] ?? "",
public: row.public ?? true,
exclusiveDomains: row.exclusive_domains ?? [],
doNotHide: row.do_not_hide ?? false,
};
});
}
export const COLORS = {
github: "#000000",
facebook: "#428bca",
google: "#dc4857",
twitter: "#55acee",
} as const;