3ec5be3f51
This file was never truly necessary and has never actually been used in the history of Tailscale's open source releases. A Brief History of AUTHORS files --- The AUTHORS file was a pattern developed at Google, originally for Chromium, then adopted by Go and a bunch of other projects. The problem was that Chromium originally had a copyright line only recognizing Google as the copyright holder. Because Google (and most open source projects) do not require copyright assignemnt for contributions, each contributor maintains their copyright. Some large corporate contributors then tried to add their own name to the copyright line in the LICENSE file or in file headers. This quickly becomes unwieldy, and puts a tremendous burden on anyone building on top of Chromium, since the license requires that they keep all copyright lines intact. The compromise was to create an AUTHORS file that would list all of the copyright holders. The LICENSE file and source file headers would then include that list by reference, listing the copyright holder as "The Chromium Authors". This also become cumbersome to simply keep the file up to date with a high rate of new contributors. Plus it's not always obvious who the copyright holder is. Sometimes it is the individual making the contribution, but many times it may be their employer. There is no way for the proejct maintainer to know. Eventually, Google changed their policy to no longer recommend trying to keep the AUTHORS file up to date proactively, and instead to only add to it when requested: https://opensource.google/docs/releasing/authors. They are also clear that: > Adding contributors to the AUTHORS file is entirely within the > project's discretion and has no implications for copyright ownership. It was primarily added to appease a small number of large contributors that insisted that they be recognized as copyright holders (which was entirely their right to do). But it's not truly necessary, and not even the most accurate way of identifying contributors and/or copyright holders. In practice, we've never added anyone to our AUTHORS file. It only lists Tailscale, so it's not really serving any purpose. It also causes confusion because Tailscalars put the "Tailscale Inc & AUTHORS" header in other open source repos which don't actually have an AUTHORS file, so it's ambiguous what that means. Instead, we just acknowledge that the contributors to Tailscale (whoever they are) are copyright holders for their individual contributions. We also have the benefit of using the DCO (developercertificate.org) which provides some additional certification of their right to make the contribution. The source file changes were purely mechanical with: git ls-files | xargs sed -i -e 's/\(Tailscale Inc &\) AUTHORS/\1 contributors/g' Updates #cleanup Change-Id: Ia101a4a3005adb9118051b3416f5a64a4a45987d Signed-off-by: Will Norris <will@tailscale.com>
585 lines
14 KiB
TypeScript
585 lines
14 KiB
TypeScript
// Copyright (c) Tailscale Inc & contributors
|
||
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
||
import cx from "classnames"
|
||
import React, { useCallback, useEffect, useMemo, useRef, useState } from "react"
|
||
import { useAPI } from "src/api"
|
||
import Check from "src/assets/icons/check.svg?react"
|
||
import ChevronDown from "src/assets/icons/chevron-down.svg?react"
|
||
import useExitNodes, {
|
||
noExitNode,
|
||
runAsExitNode,
|
||
trimDNSSuffix,
|
||
} from "src/hooks/exit-nodes"
|
||
import { ExitNode, NodeData } from "src/types"
|
||
import Popover from "src/ui/popover"
|
||
import SearchInput from "src/ui/search-input"
|
||
import { useSWRConfig } from "swr"
|
||
|
||
export default function ExitNodeSelector({
|
||
className,
|
||
node,
|
||
disabled,
|
||
}: {
|
||
className?: string
|
||
node: NodeData
|
||
disabled?: boolean
|
||
}) {
|
||
const api = useAPI()
|
||
const [open, setOpen] = useState<boolean>(false)
|
||
const [selected, setSelected] = useState<ExitNode>(toSelectedExitNode(node))
|
||
const [pending, setPending] = useState<boolean>(false)
|
||
const { mutate } = useSWRConfig() // allows for global mutation
|
||
useEffect(() => setSelected(toSelectedExitNode(node)), [node])
|
||
useEffect(() => {
|
||
setPending(
|
||
node.AdvertisingExitNode && node.AdvertisingExitNodeApproved === false
|
||
)
|
||
}, [node])
|
||
|
||
const handleSelect = useCallback(
|
||
(n: ExitNode) => {
|
||
setOpen(false)
|
||
if (n.ID === selected.ID) {
|
||
return // no update
|
||
}
|
||
// Eager clear of pending state to avoid UI oddities
|
||
if (n.ID !== runAsExitNode.ID) {
|
||
setPending(false)
|
||
}
|
||
api({ action: "update-exit-node", data: n })
|
||
|
||
// refresh data after short timeout to pick up any pending approval updates
|
||
setTimeout(() => {
|
||
mutate("/data")
|
||
}, 1000)
|
||
},
|
||
[api, mutate, selected.ID]
|
||
)
|
||
|
||
const [
|
||
none, // not using exit nodes
|
||
advertising, // advertising as exit node
|
||
using, // using another exit node
|
||
offline, // selected exit node node is offline
|
||
] = useMemo(
|
||
() => [
|
||
selected.ID === noExitNode.ID,
|
||
selected.ID === runAsExitNode.ID,
|
||
selected.ID !== noExitNode.ID && selected.ID !== runAsExitNode.ID,
|
||
!selected.Online,
|
||
],
|
||
[selected.ID, selected.Online]
|
||
)
|
||
|
||
return (
|
||
<div
|
||
className={cx(
|
||
"rounded-md",
|
||
{
|
||
"bg-red-600": offline,
|
||
"bg-yellow-400": pending,
|
||
},
|
||
className
|
||
)}
|
||
>
|
||
<div
|
||
className={cx("p-1.5 rounded-md border flex items-stretch gap-1.5", {
|
||
"border-gray-200": none,
|
||
"bg-yellow-300 border-yellow-300": advertising && !offline,
|
||
"bg-blue-500 border-blue-500": using && !offline,
|
||
"bg-red-500 border-red-500": offline,
|
||
})}
|
||
>
|
||
<Popover
|
||
open={disabled ? false : open}
|
||
onOpenChange={setOpen}
|
||
className="overflow-hidden"
|
||
side="bottom"
|
||
sideOffset={0}
|
||
align="start"
|
||
content={
|
||
<ExitNodeSelectorInner
|
||
node={node}
|
||
selected={selected}
|
||
onSelect={handleSelect}
|
||
/>
|
||
}
|
||
asChild
|
||
>
|
||
<button
|
||
className={cx("flex-1 px-2 py-1.5 rounded-[1px]", {
|
||
"bg-white": none,
|
||
"hover:bg-gray-100": none && !disabled,
|
||
"bg-yellow-300": advertising && !offline,
|
||
"hover:bg-yellow-200": advertising && !offline && !disabled,
|
||
"bg-blue-500": using && !offline,
|
||
"hover:bg-blue-400": using && !offline && !disabled,
|
||
"bg-red-500": offline,
|
||
"hover:bg-red-400": offline && !disabled,
|
||
})}
|
||
onClick={() => setOpen(!open)}
|
||
disabled={disabled}
|
||
>
|
||
<p
|
||
className={cx(
|
||
"text-gray-500 text-xs text-left font-medium uppercase tracking-wide mb-1",
|
||
{ "opacity-70 text-white": advertising || using }
|
||
)}
|
||
>
|
||
Exit node{offline && " offline"}
|
||
</p>
|
||
<div className="flex items-center">
|
||
<p
|
||
className={cx("text-gray-800", {
|
||
"text-white": advertising || using,
|
||
})}
|
||
>
|
||
{selected.Location && (
|
||
<>
|
||
<CountryFlag code={selected.Location.CountryCode} />{" "}
|
||
</>
|
||
)}
|
||
{selected === runAsExitNode
|
||
? "Running as exit node"
|
||
: selected.Name}
|
||
</p>
|
||
{!disabled && (
|
||
<ChevronDown
|
||
className={cx("ml-1", {
|
||
"stroke-gray-800": none,
|
||
"stroke-white": advertising || using,
|
||
})}
|
||
/>
|
||
)}
|
||
</div>
|
||
</button>
|
||
</Popover>
|
||
{!disabled && (advertising || using) && (
|
||
<button
|
||
className={cx("px-3 py-2 rounded-sm text-white", {
|
||
"hover:bg-yellow-200": advertising && !offline,
|
||
"hover:bg-blue-400": using && !offline,
|
||
"hover:bg-red-400": offline,
|
||
})}
|
||
onClick={(e) => {
|
||
e.preventDefault()
|
||
e.stopPropagation()
|
||
handleSelect(noExitNode)
|
||
}}
|
||
>
|
||
Disable
|
||
</button>
|
||
)}
|
||
</div>
|
||
{offline && (
|
||
<p className="text-white p-3">
|
||
The selected exit node is currently offline. Your internet traffic is
|
||
blocked until you disable the exit node or select a different one.
|
||
</p>
|
||
)}
|
||
{pending && (
|
||
<p className="text-white p-3">
|
||
Pending approval to run as exit node. This device won’t be usable as
|
||
an exit node until then.
|
||
</p>
|
||
)}
|
||
</div>
|
||
)
|
||
}
|
||
|
||
function toSelectedExitNode(data: NodeData): ExitNode {
|
||
if (data.AdvertisingExitNode) {
|
||
return runAsExitNode
|
||
}
|
||
if (data.UsingExitNode) {
|
||
// TODO(sonia): also use online status
|
||
const node = { ...data.UsingExitNode }
|
||
if (node.Location) {
|
||
// For mullvad nodes, use location as name.
|
||
node.Name = `${node.Location.Country}: ${node.Location.City}`
|
||
} else {
|
||
// Otherwise use node name w/o DNS suffix.
|
||
node.Name = trimDNSSuffix(node.Name, data.TailnetName)
|
||
}
|
||
return node
|
||
}
|
||
return noExitNode
|
||
}
|
||
|
||
function ExitNodeSelectorInner({
|
||
node,
|
||
selected,
|
||
onSelect,
|
||
}: {
|
||
node: NodeData
|
||
selected: ExitNode
|
||
onSelect: (node: ExitNode) => void
|
||
}) {
|
||
const [filter, setFilter] = useState<string>("")
|
||
const { data: exitNodes } = useExitNodes(node, filter)
|
||
const listRef = useRef<HTMLDivElement>(null)
|
||
|
||
const hasNodes = useMemo(
|
||
() => exitNodes.find((n) => n.nodes.length > 0),
|
||
[exitNodes]
|
||
)
|
||
|
||
return (
|
||
<div className="w-[var(--radix-popover-trigger-width)]">
|
||
<SearchInput
|
||
name="exit-node-search"
|
||
className="px-2"
|
||
inputClassName="w-full py-3 !h-auto border-none rounded-b-none !ring-0"
|
||
autoFocus
|
||
autoCorrect="off"
|
||
autoComplete="off"
|
||
autoCapitalize="off"
|
||
placeholder="Search exit nodes…"
|
||
value={filter}
|
||
onChange={(e) => {
|
||
// Jump list to top when search value changes.
|
||
listRef.current?.scrollTo(0, 0)
|
||
setFilter(e.target.value)
|
||
}}
|
||
/>
|
||
{/* TODO(sonia): use loading spinner when loading useExitNodes */}
|
||
<div
|
||
ref={listRef}
|
||
className="pt-1 border-t border-gray-200 max-h-60 overflow-y-scroll"
|
||
>
|
||
{hasNodes ? (
|
||
exitNodes.map(
|
||
(group) =>
|
||
group.nodes.length > 0 && (
|
||
<div
|
||
key={group.id}
|
||
className="pb-1 mb-1 border-b last:border-b-0 border-gray-200 last:mb-0"
|
||
>
|
||
{group.name && (
|
||
<div className="px-4 py-2 text-gray-500 text-xs font-medium uppercase tracking-wide">
|
||
{group.name}
|
||
</div>
|
||
)}
|
||
{group.nodes.map((n) => (
|
||
<ExitNodeSelectorItem
|
||
key={`${n.ID}-${n.Name}`}
|
||
node={n}
|
||
onSelect={() => onSelect(n)}
|
||
isSelected={selected.ID === n.ID}
|
||
/>
|
||
))}
|
||
</div>
|
||
)
|
||
)
|
||
) : (
|
||
<div className="text-center truncate text-gray-500 p-5">
|
||
{filter
|
||
? `No exit nodes matching “${filter}”`
|
||
: "No exit nodes available"}
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
)
|
||
}
|
||
|
||
function ExitNodeSelectorItem({
|
||
node,
|
||
isSelected,
|
||
onSelect,
|
||
}: {
|
||
node: ExitNode
|
||
isSelected: boolean
|
||
onSelect: () => void
|
||
}) {
|
||
return (
|
||
<button
|
||
key={node.ID}
|
||
className={cx(
|
||
"w-full px-4 py-2 flex justify-between items-center cursor-pointer hover:bg-gray-100",
|
||
{
|
||
"text-gray-400 cursor-not-allowed": !node.Online,
|
||
}
|
||
)}
|
||
onClick={onSelect}
|
||
disabled={!node.Online}
|
||
>
|
||
<div className="w-full">
|
||
{node.Location && (
|
||
<>
|
||
<CountryFlag code={node.Location.CountryCode} />{" "}
|
||
</>
|
||
)}
|
||
<span className="leading-snug">{node.Name}</span>
|
||
</div>
|
||
{node.Online || <span className="leading-snug">Offline</span>}
|
||
{isSelected && <Check className="ml-1" />}
|
||
</button>
|
||
)
|
||
}
|
||
|
||
function CountryFlag({ code }: { code: string }) {
|
||
return (
|
||
<>{countryFlags[code.toLowerCase()]}</> || (
|
||
<span className="font-medium text-gray-500 text-xs">
|
||
{code.toUpperCase()}
|
||
</span>
|
||
)
|
||
)
|
||
}
|
||
|
||
const countryFlags: { [countryCode: string]: string } = {
|
||
ad: "🇦🇩",
|
||
ae: "🇦🇪",
|
||
af: "🇦🇫",
|
||
ag: "🇦🇬",
|
||
ai: "🇦🇮",
|
||
al: "🇦🇱",
|
||
am: "🇦🇲",
|
||
ao: "🇦🇴",
|
||
aq: "🇦🇶",
|
||
ar: "🇦🇷",
|
||
as: "🇦🇸",
|
||
at: "🇦🇹",
|
||
au: "🇦🇺",
|
||
aw: "🇦🇼",
|
||
ax: "🇦🇽",
|
||
az: "🇦🇿",
|
||
ba: "🇧🇦",
|
||
bb: "🇧🇧",
|
||
bd: "🇧🇩",
|
||
be: "🇧🇪",
|
||
bf: "🇧🇫",
|
||
bg: "🇧🇬",
|
||
bh: "🇧🇭",
|
||
bi: "🇧🇮",
|
||
bj: "🇧🇯",
|
||
bl: "🇧🇱",
|
||
bm: "🇧🇲",
|
||
bn: "🇧🇳",
|
||
bo: "🇧🇴",
|
||
bq: "🇧🇶",
|
||
br: "🇧🇷",
|
||
bs: "🇧🇸",
|
||
bt: "🇧🇹",
|
||
bv: "🇧🇻",
|
||
bw: "🇧🇼",
|
||
by: "🇧🇾",
|
||
bz: "🇧🇿",
|
||
ca: "🇨🇦",
|
||
cc: "🇨🇨",
|
||
cd: "🇨🇩",
|
||
cf: "🇨🇫",
|
||
cg: "🇨🇬",
|
||
ch: "🇨🇭",
|
||
ci: "🇨🇮",
|
||
ck: "🇨🇰",
|
||
cl: "🇨🇱",
|
||
cm: "🇨🇲",
|
||
cn: "🇨🇳",
|
||
co: "🇨🇴",
|
||
cr: "🇨🇷",
|
||
cu: "🇨🇺",
|
||
cv: "🇨🇻",
|
||
cw: "🇨🇼",
|
||
cx: "🇨🇽",
|
||
cy: "🇨🇾",
|
||
cz: "🇨🇿",
|
||
de: "🇩🇪",
|
||
dj: "🇩🇯",
|
||
dk: "🇩🇰",
|
||
dm: "🇩🇲",
|
||
do: "🇩🇴",
|
||
dz: "🇩🇿",
|
||
ec: "🇪🇨",
|
||
ee: "🇪🇪",
|
||
eg: "🇪🇬",
|
||
eh: "🇪🇭",
|
||
er: "🇪🇷",
|
||
es: "🇪🇸",
|
||
et: "🇪🇹",
|
||
eu: "🇪🇺",
|
||
fi: "🇫🇮",
|
||
fj: "🇫🇯",
|
||
fk: "🇫🇰",
|
||
fm: "🇫🇲",
|
||
fo: "🇫🇴",
|
||
fr: "🇫🇷",
|
||
ga: "🇬🇦",
|
||
gb: "🇬🇧",
|
||
gd: "🇬🇩",
|
||
ge: "🇬🇪",
|
||
gf: "🇬🇫",
|
||
gg: "🇬🇬",
|
||
gh: "🇬🇭",
|
||
gi: "🇬🇮",
|
||
gl: "🇬🇱",
|
||
gm: "🇬🇲",
|
||
gn: "🇬🇳",
|
||
gp: "🇬🇵",
|
||
gq: "🇬🇶",
|
||
gr: "🇬🇷",
|
||
gs: "🇬🇸",
|
||
gt: "🇬🇹",
|
||
gu: "🇬🇺",
|
||
gw: "🇬🇼",
|
||
gy: "🇬🇾",
|
||
hk: "🇭🇰",
|
||
hm: "🇭🇲",
|
||
hn: "🇭🇳",
|
||
hr: "🇭🇷",
|
||
ht: "🇭🇹",
|
||
hu: "🇭🇺",
|
||
id: "🇮🇩",
|
||
ie: "🇮🇪",
|
||
il: "🇮🇱",
|
||
im: "🇮🇲",
|
||
in: "🇮🇳",
|
||
io: "🇮🇴",
|
||
iq: "🇮🇶",
|
||
ir: "🇮🇷",
|
||
is: "🇮🇸",
|
||
it: "🇮🇹",
|
||
je: "🇯🇪",
|
||
jm: "🇯🇲",
|
||
jo: "🇯🇴",
|
||
jp: "🇯🇵",
|
||
ke: "🇰🇪",
|
||
kg: "🇰🇬",
|
||
kh: "🇰🇭",
|
||
ki: "🇰🇮",
|
||
km: "🇰🇲",
|
||
kn: "🇰🇳",
|
||
kp: "🇰🇵",
|
||
kr: "🇰🇷",
|
||
kw: "🇰🇼",
|
||
ky: "🇰🇾",
|
||
kz: "🇰🇿",
|
||
la: "🇱🇦",
|
||
lb: "🇱🇧",
|
||
lc: "🇱🇨",
|
||
li: "🇱🇮",
|
||
lk: "🇱🇰",
|
||
lr: "🇱🇷",
|
||
ls: "🇱🇸",
|
||
lt: "🇱🇹",
|
||
lu: "🇱🇺",
|
||
lv: "🇱🇻",
|
||
ly: "🇱🇾",
|
||
ma: "🇲🇦",
|
||
mc: "🇲🇨",
|
||
md: "🇲🇩",
|
||
me: "🇲🇪",
|
||
mf: "🇲🇫",
|
||
mg: "🇲🇬",
|
||
mh: "🇲🇭",
|
||
mk: "🇲🇰",
|
||
ml: "🇲🇱",
|
||
mm: "🇲🇲",
|
||
mn: "🇲🇳",
|
||
mo: "🇲🇴",
|
||
mp: "🇲🇵",
|
||
mq: "🇲🇶",
|
||
mr: "🇲🇷",
|
||
ms: "🇲🇸",
|
||
mt: "🇲🇹",
|
||
mu: "🇲🇺",
|
||
mv: "🇲🇻",
|
||
mw: "🇲🇼",
|
||
mx: "🇲🇽",
|
||
my: "🇲🇾",
|
||
mz: "🇲🇿",
|
||
na: "🇳🇦",
|
||
nc: "🇳🇨",
|
||
ne: "🇳🇪",
|
||
nf: "🇳🇫",
|
||
ng: "🇳🇬",
|
||
ni: "🇳🇮",
|
||
nl: "🇳🇱",
|
||
no: "🇳🇴",
|
||
np: "🇳🇵",
|
||
nr: "🇳🇷",
|
||
nu: "🇳🇺",
|
||
nz: "🇳🇿",
|
||
om: "🇴🇲",
|
||
pa: "🇵🇦",
|
||
pe: "🇵🇪",
|
||
pf: "🇵🇫",
|
||
pg: "🇵🇬",
|
||
ph: "🇵🇭",
|
||
pk: "🇵🇰",
|
||
pl: "🇵🇱",
|
||
pm: "🇵🇲",
|
||
pn: "🇵🇳",
|
||
pr: "🇵🇷",
|
||
ps: "🇵🇸",
|
||
pt: "🇵🇹",
|
||
pw: "🇵🇼",
|
||
py: "🇵🇾",
|
||
qa: "🇶🇦",
|
||
re: "🇷🇪",
|
||
ro: "🇷🇴",
|
||
rs: "🇷🇸",
|
||
ru: "🇷🇺",
|
||
rw: "🇷🇼",
|
||
sa: "🇸🇦",
|
||
sb: "🇸🇧",
|
||
sc: "🇸🇨",
|
||
sd: "🇸🇩",
|
||
se: "🇸🇪",
|
||
sg: "🇸🇬",
|
||
sh: "🇸🇭",
|
||
si: "🇸🇮",
|
||
sj: "🇸🇯",
|
||
sk: "🇸🇰",
|
||
sl: "🇸🇱",
|
||
sm: "🇸🇲",
|
||
sn: "🇸🇳",
|
||
so: "🇸🇴",
|
||
sr: "🇸🇷",
|
||
ss: "🇸🇸",
|
||
st: "🇸🇹",
|
||
sv: "🇸🇻",
|
||
sx: "🇸🇽",
|
||
sy: "🇸🇾",
|
||
sz: "🇸🇿",
|
||
tc: "🇹🇨",
|
||
td: "🇹🇩",
|
||
tf: "🇹🇫",
|
||
tg: "🇹🇬",
|
||
th: "🇹🇭",
|
||
tj: "🇹🇯",
|
||
tk: "🇹🇰",
|
||
tl: "🇹🇱",
|
||
tm: "🇹🇲",
|
||
tn: "🇹🇳",
|
||
to: "🇹🇴",
|
||
tr: "🇹🇷",
|
||
tt: "🇹🇹",
|
||
tv: "🇹🇻",
|
||
tw: "🇹🇼",
|
||
tz: "🇹🇿",
|
||
ua: "🇺🇦",
|
||
ug: "🇺🇬",
|
||
um: "🇺🇲",
|
||
us: "🇺🇸",
|
||
uy: "🇺🇾",
|
||
uz: "🇺🇿",
|
||
va: "🇻🇦",
|
||
vc: "🇻🇨",
|
||
ve: "🇻🇪",
|
||
vg: "🇻🇬",
|
||
vi: "🇻🇮",
|
||
vn: "🇻🇳",
|
||
vu: "🇻🇺",
|
||
wf: "🇼🇫",
|
||
ws: "🇼🇸",
|
||
xk: "🇽🇰",
|
||
ye: "🇾🇪",
|
||
yt: "🇾🇹",
|
||
za: "🇿🇦",
|
||
zm: "🇿🇲",
|
||
zw: "🇿🇼",
|
||
}
|