Merge remote-tracking branch 'upstream/clearnet' into webrtc-calls

pull/1969/head
Audric Ackermann 4 years ago
commit 87e7cc5ebf
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -2,7 +2,7 @@
"name": "session-desktop", "name": "session-desktop",
"productName": "Session", "productName": "Session",
"description": "Private messaging from your desktop", "description": "Private messaging from your desktop",
"version": "1.7.2", "version": "1.7.3",
"license": "GPL-3.0", "license": "GPL-3.0",
"author": { "author": {
"name": "Loki Project", "name": "Loki Project",

@ -1099,7 +1099,8 @@ input {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin: $session-margin-sm; margin: $session-margin-sm;
align-items: flex-start; align-items: center;
min-width: 10vw;
position: relative; position: relative;
.onion__node { .onion__node {
@ -1126,6 +1127,7 @@ input {
} }
.onion__node__country { .onion__node__country {
margin: $session-margin-sm; margin: $session-margin-sm;
min-width: 150px;
} }
.onion__growing-icon { .onion__growing-icon {

@ -17,7 +17,6 @@ interface Props {
} }
const SUPPORTED_PROTOCOLS = /^(http|https):/i; const SUPPORTED_PROTOCOLS = /^(http|https):/i;
const HAS_AT = /@/;
export class Linkify extends React.Component<Props> { export class Linkify extends React.Component<Props> {
public static defaultProps: Partial<Props> = { public static defaultProps: Partial<Props> = {
@ -49,7 +48,8 @@ export class Linkify extends React.Component<Props> {
} }
const { url, text: originalText } = match; const { url, text: originalText } = match;
if (SUPPORTED_PROTOCOLS.test(url) && !isLinkSneaky(url) && !HAS_AT.test(url)) { const isLink = SUPPORTED_PROTOCOLS.test(url) && !isLinkSneaky(url);
if (isLink) {
results.push( results.push(
<a key={count++} href={url} onClick={this.handleClick}> <a key={count++} href={url} onClick={this.handleClick}>
{originalText} {originalText}

@ -18,6 +18,8 @@ import { Flex } from '../basic/Flex';
import { SessionIcon, SessionIconButton } from '../session/icon'; import { SessionIcon, SessionIconButton } from '../session/icon';
import { SessionSpinner } from '../session/SessionSpinner'; import { SessionSpinner } from '../session/SessionSpinner';
import { SessionWrapperModal } from '../session/SessionWrapperModal'; import { SessionWrapperModal } from '../session/SessionWrapperModal';
// tslint:disable-next-line: no-submodule-imports
import useHover from 'react-use/lib/useHover';
export type StatusLightType = { export type StatusLightType = {
glowStartDelay: number; glowStartDelay: number;
@ -25,6 +27,25 @@ export type StatusLightType = {
color?: string; color?: string;
}; };
const OnionCountryDisplay = ({
index,
labelText,
snodeIp,
}: {
snodeIp?: string;
labelText: string;
index: number;
}) => {
const element = (hovered: boolean) => (
<div className="onion__node__country" key={`country-${index}`}>
{hovered && snodeIp ? snodeIp : labelText}
</div>
);
const [hoverable] = useHover(element);
return hoverable;
};
const OnionPathModalInner = () => { const OnionPathModalInner = () => {
const onionPath = useSelector(getFirstOnionPath); const onionPath = useSelector(getFirstOnionPath);
const isOnline = useSelector(getIsOnline); const isOnline = useSelector(getIsOnline);
@ -68,14 +89,12 @@ const OnionPathModalInner = () => {
{nodes.map((snode: Snode | any, index: number) => { {nodes.map((snode: Snode | any, index: number) => {
let labelText = snode.label let labelText = snode.label
? snode.label ? snode.label
: `${countryLookup.byIso(ip2country(snode.ip))?.country} [${snode.ip}]`; : `${countryLookup.byIso(ip2country(snode.ip))?.country}`;
if (!labelText) { if (!labelText) {
labelText = window.i18n('unknownCountry'); labelText = window.i18n('unknownCountry');
} }
return labelText ? ( return labelText ? (
<div className="onion__node__country" key={`country-${index}`}> <OnionCountryDisplay index={index} labelText={labelText} snodeIp={snode.ip} />
{labelText}
</div>
) : null; ) : null;
})} })}
</Flex> </Flex>

@ -19,6 +19,7 @@ export const SessionMessagesList = (props: {
scrollToQuoteMessage: (options: QuoteClickOptions) => Promise<void>; scrollToQuoteMessage: (options: QuoteClickOptions) => Promise<void>;
}) => { }) => {
const messagesProps = useSelector(getSortedMessagesTypesOfSelectedConversation); const messagesProps = useSelector(getSortedMessagesTypesOfSelectedConversation);
return ( return (
<> <>
{messagesProps.map(messageProps => { {messagesProps.map(messageProps => {

@ -616,6 +616,12 @@ export const forceNetworkDeletion = async (): Promise<Array<string> | null> => {
snodeToMakeRequestTo.pubkey_ed25519 snodeToMakeRequestTo.pubkey_ed25519
)} due to error: ${reason}: ${statusCode}` )} due to error: ${reason}: ${statusCode}`
); );
// if we tried to make the delete on a snode not in our swarm, just trigger a pRetry error so the outer block here finds new snodes to make the request to.
if (statusCode === 421) {
throw new pRetry.AbortError(
'421 error on network delete_all. Retrying with a new snode'
);
}
} else { } else {
window?.log?.warn( window?.log?.warn(
`Could not delete data from ${ed25519Str( `Could not delete data from ${ed25519Str(

@ -37,6 +37,8 @@ export interface SnodeResponse {
} }
export const NEXT_NODE_NOT_FOUND_PREFIX = 'Next node not found: '; export const NEXT_NODE_NOT_FOUND_PREFIX = 'Next node not found: ';
export const ERROR_421_HANDLED_RETRY_REQUEST =
'421 handled. Retry this request with a new targetNode';
export const CLOCK_OUT_OF_SYNC_MESSAGE_ERROR = export const CLOCK_OUT_OF_SYNC_MESSAGE_ERROR =
'Your clock is out of sync with the network. Check your clock.'; 'Your clock is out of sync with the network. Check your clock.';
@ -494,9 +496,6 @@ export async function processOnionResponse({
} }
} }
export const ERROR_421_HANDLED_RETRY_REQUEST =
'421 handled. Retry this request with a new targetNode';
export const snodeHttpsAgent = new https.Agent({ export const snodeHttpsAgent = new https.Agent({
rejectUnauthorized: false, rejectUnauthorized: false,
}); });
@ -543,7 +542,7 @@ async function handle421InvalidSwarm({
// the snode gave us the new swarm. Save it for the next retry // the snode gave us the new swarm. Save it for the next retry
window?.log?.warn( window?.log?.warn(
'Wrong swarm, now looking at snodes', 'Wrong swarm, now looking at snodes',
parsedBody.snodes.map((s: any) => s.pubkey_ed25519) parsedBody.snodes.map((s: any) => ed25519Str(s.pubkey_ed25519))
); );
await updateSwarmFor(associatedWith, parsedBody.snodes); await updateSwarmFor(associatedWith, parsedBody.snodes);

@ -287,6 +287,7 @@ export class SwarmPolling {
{ {
minTimeout: 100, minTimeout: 100,
retries: 1, retries: 1,
onFailedAttempt: e => { onFailedAttempt: e => {
window?.log?.warn( window?.log?.warn(
`retrieveNextMessages attempt #${e.attemptNumber} failed. ${e.retriesLeft} retries left... ${e.name}` `retrieveNextMessages attempt #${e.attemptNumber} failed. ${e.retriesLeft} retries left... ${e.name}`

Loading…
Cancel
Save