remove handling of rss related things completely

pull/1439/head
Audric Ackermann 4 years ago
parent 46dfb3489b
commit fd18345c5a
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -662,7 +662,7 @@
window window
.getConversationController() .getConversationController()
.getConversations() .getConversations()
.filter(convo => convo.isPublic() && !convo.isRss()) .filter(convo => convo.isPublic())
.forEach(convo => .forEach(convo =>
convo.trigger('ourAvatarChanged', { url, profileKey }) convo.trigger('ourAvatarChanged', { url, profileKey })
); );
@ -892,7 +892,6 @@
profileName: displayName, profileName: displayName,
pubkey: userPubKey, pubkey: userPubKey,
avatarPath, avatarPath,
isRss: conversation.isRss(),
onStartConversation: () => { onStartConversation: () => {
window.inboxStore.dispatch( window.inboxStore.dispatch(
window.actionsCreators.openConversationExternal(conversation.id) window.actionsCreators.openConversationExternal(conversation.id)

@ -59,7 +59,6 @@ export interface ConversationModel
isPublic: () => boolean; isPublic: () => boolean;
isClosedGroup: () => boolean; isClosedGroup: () => boolean;
isRss: () => boolean;
isBlocked: () => boolean; isBlocked: () => boolean;
isClosable: () => boolean; isClosable: () => boolean;
isAdmin: (id: string) => boolean; isAdmin: (id: string) => boolean;

@ -150,15 +150,10 @@
return !!(this.id && this.id.match(/^publicChat:/)); return !!(this.id && this.id.match(/^publicChat:/));
}, },
isClosedGroup() { isClosedGroup() {
return ( return this.get('type') === Message.GROUP && !this.isPublic();
this.get('type') === Message.GROUP && !this.isPublic() && !this.isRss()
);
}, },
isClosable() { isClosable() {
return !this.isRss() || this.get('closable'); return this.get('closable');
},
isRss() {
return !!(this.id && this.id.match(/^rss:/));
}, },
isBlocked() { isBlocked() {
if (!this.id || this.isMe()) { if (!this.id || this.isMe()) {
@ -180,7 +175,7 @@
return this.get('is_medium_group'); return this.get('is_medium_group');
}, },
async block() { async block() {
if (!this.id || this.isPublic() || this.isRss()) { if (!this.id || this.isPublic()) {
return; return;
} }
@ -192,7 +187,7 @@
await libsession.Utils.SyncMessageUtils.sendBlockedListSyncMessage(); await libsession.Utils.SyncMessageUtils.sendBlockedListSyncMessage();
}, },
async unblock() { async unblock() {
if (!this.id || this.isPublic() || this.isRss()) { if (!this.id || this.isPublic()) {
return; return;
} }
const promise = this.isPrivate() const promise = this.isPrivate()
@ -313,7 +308,7 @@
}, },
async updateProfileAvatar() { async updateProfileAvatar() {
if (this.isRss() || this.isPublic()) { if (this.isPublic()) {
return; return;
} }
@ -446,7 +441,6 @@
type: this.isPrivate() ? 'direct' : 'group', type: this.isPrivate() ? 'direct' : 'group',
isMe: this.isMe(), isMe: this.isMe(),
isPublic: this.isPublic(), isPublic: this.isPublic(),
isRss: this.isRss(),
isClosable: this.isClosable(), isClosable: this.isClosable(),
isTyping: typingKeys.length > 0, isTyping: typingKeys.length > 0,
lastUpdated: this.get('timestamp'), lastUpdated: this.get('timestamp'),
@ -465,7 +459,6 @@
lastMessage: { lastMessage: {
status: this.get('lastMessageStatus'), status: this.get('lastMessageStatus'),
text: this.get('lastMessage'), text: this.get('lastMessage'),
isRss: this.isRss(),
}, },
hasNickname: !!this.getNickname(), hasNickname: !!this.getNickname(),
isKickedFromGroup: !!this.get('isKickedFromGroup'), isKickedFromGroup: !!this.get('isKickedFromGroup'),
@ -940,9 +933,6 @@
if (!this.isPublic()) { if (!this.isPublic()) {
return; return;
} }
if (this.isRss()) {
return;
}
if (!this.get('profileSharing')) { if (!this.get('profileSharing')) {
return; return;
} }
@ -1304,17 +1294,6 @@
getNickname() { getNickname() {
return this.get('nickname'); return this.get('nickname');
}, },
getRssSettings() {
if (!this.isRss()) {
return null;
}
return {
RSS_FEED: this.get('rssFeed'),
CONVO_ID: this.id,
title: this.get('name'),
closeable: this.get('closable'),
};
},
// maybe "Backend" instead of "Source"? // maybe "Backend" instead of "Source"?
async setPublicSource(newServer, newChannelId) { async setPublicSource(newServer, newChannelId) {
if (!this.isPublic()) { if (!this.isPublic()) {

@ -87,7 +87,6 @@ export interface MessageRegularProps {
expirationTimestamp?: number; expirationTimestamp?: number;
convoId: string; convoId: string;
isPublic?: boolean; isPublic?: boolean;
isRss?: boolean;
selected: boolean; selected: boolean;
isKickedFromGroup: boolean; isKickedFromGroup: boolean;
// whether or not to show check boxes // whether or not to show check boxes

@ -579,7 +579,6 @@
expirationLength, expirationLength,
expirationTimestamp, expirationTimestamp,
isPublic, isPublic,
isRss: !!this.get('isRss'),
isKickedFromGroup: isKickedFromGroup:
conversation && conversation.get('isKickedFromGroup'), conversation && conversation.get('isKickedFromGroup'),
isAdmin, // if the sender is an admin (not us) isAdmin, // if the sender is an admin (not us)

@ -308,16 +308,6 @@
this.model.updateLastMessage(); this.model.updateLastMessage();
if (this.model.isRss()) {
$('.compose').hide();
$('.conversation-stack').removeClass('conversation-stack-no-border');
$('.conversation-stack').addClass('conversation-stack-border');
} else {
$('.compose').show();
$('.conversation-stack').removeClass('conversation-stack-border');
$('.conversation-stack').addClass('conversation-stack-no-border');
}
// We schedule our catch-up decrypt right after any in-progress fetch of // We schedule our catch-up decrypt right after any in-progress fetch of
// messages from the database, then ensure that the loading screen is only // messages from the database, then ensure that the loading screen is only
// dismissed when that is complete. // dismissed when that is complete.

@ -12,7 +12,6 @@
profileName, profileName,
avatarPath, avatarPath,
pubkey, pubkey,
isRss,
onOk, onOk,
onStartConversation, onStartConversation,
theme, theme,
@ -21,7 +20,6 @@
this.profileName = profileName; this.profileName = profileName;
this.pubkey = pubkey; this.pubkey = pubkey;
this.isRss = isRss;
this.avatarPath = avatarPath; this.avatarPath = avatarPath;
this.onOk = onOk; this.onOk = onOk;
this.onStartConversation = onStartConversation; this.onStartConversation = onStartConversation;
@ -40,7 +38,6 @@
onStartConversation: this.onStartConversation, onStartConversation: this.onStartConversation,
profileName: this.profileName, profileName: this.profileName,
pubkey: this.pubkey, pubkey: this.pubkey,
isRss: this.isRss,
avatarPath: this.avatarPath, avatarPath: this.avatarPath,
i18n, i18n,
theme: this.theme, theme: this.theme,

@ -33,7 +33,6 @@ export type ConversationListItemProps = {
avatarPath?: string; avatarPath?: string;
isMe: boolean; isMe: boolean;
isPublic?: boolean; isPublic?: boolean;
isRss?: boolean;
isClosable?: boolean; isClosable?: boolean;
primaryDevice?: string; primaryDevice?: string;
@ -46,7 +45,6 @@ export type ConversationListItemProps = {
lastMessage?: { lastMessage?: {
status: 'sending' | 'sent' | 'delivered' | 'read' | 'error'; status: 'sending' | 'sent' | 'delivered' | 'read' | 'error';
text: string; text: string;
isRss: boolean;
}; };
isBlocked?: boolean; isBlocked?: boolean;
@ -170,13 +168,7 @@ class ConversationListItem extends React.PureComponent<Props> {
if (!lastMessage && !isTyping) { if (!lastMessage && !isTyping) {
return null; return null;
} }
let text = lastMessage && lastMessage.text ? lastMessage.text : ''; const text = lastMessage && lastMessage.text ? lastMessage.text : '';
// if coming from Rss feed
if (lastMessage && lastMessage.isRss) {
// strip any HTML
text = text.replace(/<[^>]*>?/gm, '');
}
if (isEmpty(text)) { if (isEmpty(text)) {
return null; return null;

@ -12,7 +12,6 @@ import { DefaultTheme } from 'styled-components';
interface Props { interface Props {
i18n: any; i18n: any;
isRss: boolean;
profileName: string; profileName: string;
avatarPath: string; avatarPath: string;
pubkey: string; pubkey: string;
@ -37,7 +36,7 @@ export class UserDetailsDialog extends React.Component<Props, State> {
} }
public render() { public render() {
const { i18n, isRss } = this.props; const { i18n } = this.props;
return ( return (
<SessionModal <SessionModal
@ -52,14 +51,12 @@ export class UserDetailsDialog extends React.Component<Props, State> {
<SessionIdEditable editable={false} text={this.props.pubkey} /> <SessionIdEditable editable={false} text={this.props.pubkey} />
<div className="session-modal__button-group__center"> <div className="session-modal__button-group__center">
{!isRss && ( <SessionButton
<SessionButton text={i18n('startConversation')}
text={i18n('startConversation')} buttonType={SessionButtonType.Default}
buttonType={SessionButtonType.Default} buttonColor={SessionButtonColor.Primary}
buttonColor={SessionButtonColor.Primary} onClick={this.onClickStartConversation}
onClick={this.onClickStartConversation} />
/>
)}
</div> </div>
</SessionModal> </SessionModal>
); );

@ -42,7 +42,6 @@ interface Props {
isGroup: boolean; isGroup: boolean;
isPrivate: boolean; isPrivate: boolean;
isPublic: boolean; isPublic: boolean;
isRss: boolean;
isAdmin: boolean; isAdmin: boolean;
// We might not always have the full list of members, // We might not always have the full list of members,
@ -120,7 +119,6 @@ class ConversationHeaderInner extends React.Component<Props> {
profileName, profileName,
isGroup, isGroup,
isPublic, isPublic,
isRss,
members, members,
subscriberCount, subscriberCount,
isMe, isMe,
@ -138,7 +136,7 @@ class ConversationHeaderInner extends React.Component<Props> {
} }
const memberCount: number = (() => { const memberCount: number = (() => {
if (!isGroup || isRss) { if (!isGroup) {
return 0; return 0;
} }
@ -262,7 +260,7 @@ class ConversationHeaderInner extends React.Component<Props> {
</div> </div>
{!isKickedFromGroup && this.renderExpirationLength()} {!isKickedFromGroup && this.renderExpirationLength()}
{!this.props.isRss && !selectionMode && this.renderAvatar()} {!selectionMode && this.renderAvatar()}
<ConversationHeaderMenu {...this.getHeaderMenuProps(triggerId)} /> <ConversationHeaderMenu {...this.getHeaderMenuProps(triggerId)} />
</div> </div>

@ -10,7 +10,6 @@ const linkify = LinkifyIt();
interface Props { interface Props {
text: string; text: string;
isRss?: boolean;
/** Allows you to customize now non-links are rendered. Simplest is just a <span>. */ /** Allows you to customize now non-links are rendered. Simplest is just a <span>. */
renderNonLink?: RenderTextCallbackType; renderNonLink?: RenderTextCallbackType;
} }
@ -24,17 +23,10 @@ export class Linkify extends React.Component<Props> {
}; };
public render() { public render() {
const { text, renderNonLink, isRss } = this.props; const { text, renderNonLink } = this.props;
const results: Array<any> = []; const results: Array<any> = [];
let count = 1; let count = 1;
if (isRss && text.indexOf('</') !== -1) {
results.push(<SessionHtmlRenderer key={count++} html={text} tag="div" />);
// should already have links
return results;
}
const matchData = linkify.match(text) || []; const matchData = linkify.match(text) || [];
let last = 0; let last = 0;

@ -553,7 +553,6 @@ class MessageInner extends React.PureComponent<MessageRegularProps, State> {
bodyPending, bodyPending,
direction, direction,
status, status,
isRss,
conversationType, conversationType,
convoId, convoId,
multiSelectMode, multiSelectMode,
@ -581,7 +580,6 @@ class MessageInner extends React.PureComponent<MessageRegularProps, State> {
> >
<MessageBody <MessageBody
text={contents || ''} text={contents || ''}
isRss={isRss}
i18n={window.i18n} i18n={window.i18n}
bodyPending={bodyPending} bodyPending={bodyPending}
isGroup={conversationType === 'group'} isGroup={conversationType === 'group'}
@ -916,8 +914,8 @@ class MessageInner extends React.PureComponent<MessageRegularProps, State> {
private handleContextMenu(e: any) { private handleContextMenu(e: any) {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
const { isRss, multiSelectMode, isKickedFromGroup } = this.props; const { multiSelectMode, isKickedFromGroup } = this.props;
const enableContextMenu = !isRss && !multiSelectMode && !isKickedFromGroup; const enableContextMenu = !multiSelectMode && !isKickedFromGroup;
if (enableContextMenu) { if (enableContextMenu) {
// Don't forget to pass the id and the event and voila! // Don't forget to pass the id and the event and voila!

@ -10,7 +10,6 @@ import { LocalizerType, RenderTextCallbackType } from '../../types/Util';
interface Props { interface Props {
text: string; text: string;
isRss?: boolean;
bodyPending?: boolean; bodyPending?: boolean;
/** If set, all emoji will be the same size. Otherwise, just one emoji will be large. */ /** If set, all emoji will be the same size. Otherwise, just one emoji will be large. */
disableJumbomoji?: boolean; disableJumbomoji?: boolean;
@ -106,7 +105,6 @@ export class MessageBody extends React.Component<Props> {
bodyPending, bodyPending,
disableJumbomoji, disableJumbomoji,
disableLinks, disableLinks,
isRss,
i18n, i18n,
isGroup, isGroup,
convoId, convoId,
@ -141,7 +139,6 @@ export class MessageBody extends React.Component<Props> {
const bodyContents = this.addDownloading( const bodyContents = this.addDownloading(
<Linkify <Linkify
text={textWithPending} text={textWithPending}
isRss={isRss}
renderNonLink={({ key, text: nonLinkText }) => { renderNonLink={({ key, text: nonLinkText }) => {
return renderEmoji({ return renderEmoji({
i18n, i18n,
@ -159,7 +156,6 @@ export class MessageBody extends React.Component<Props> {
return this.addDownloading( return this.addDownloading(
<Linkify <Linkify
text={textWithPending} text={textWithPending}
isRss={isRss}
renderNonLink={({ key, text: nonLinkText }) => { renderNonLink={({ key, text: nonLinkText }) => {
return renderEmoji({ return renderEmoji({
i18n, i18n,

@ -424,7 +424,6 @@ export class SessionConversation extends React.Component<Props, State> {
isGroup: !conversation.isPrivate(), isGroup: !conversation.isPrivate(),
isPrivate: conversation.isPrivate(), isPrivate: conversation.isPrivate(),
isPublic: conversation.isPublic(), isPublic: conversation.isPublic(),
isRss: conversation.isRss(),
isAdmin: conversation.isAdmin(ourPrimary), isAdmin: conversation.isAdmin(ourPrimary),
members, members,
subscriberCount: conversation.get('subscriberCount'), subscriberCount: conversation.get('subscriberCount'),
@ -483,9 +482,7 @@ export class SessionConversation extends React.Component<Props, State> {
}, },
onAvatarClick: (pubkey: any) => { onAvatarClick: (pubkey: any) => {
if (!conversation.isRss()) { this.toggleRightPanel();
this.toggleRightPanel();
}
}, },
}; };
@ -548,7 +545,6 @@ export class SessionConversation extends React.Component<Props, State> {
isGroup: !conversation.isPrivate(), isGroup: !conversation.isPrivate(),
isPublic: conversation.isPublic(), isPublic: conversation.isPublic(),
isAdmin, isAdmin,
isRss: conversation.isRss(),
isBlocked: conversation.isBlocked(), isBlocked: conversation.isBlocked(),
timerOptions: window.Whisper.ExpirationTimerOptions.map((item: any) => ({ timerOptions: window.Whisper.ExpirationTimerOptions.map((item: any) => ({

@ -18,7 +18,6 @@ export type PropsConversationHeaderMenu = {
triggerId: string; triggerId: string;
isMe: boolean; isMe: boolean;
isPublic?: boolean; isPublic?: boolean;
isRss?: boolean;
isClosable?: boolean; isClosable?: boolean;
isKickedFromGroup?: boolean; isKickedFromGroup?: boolean;
left?: boolean; left?: boolean;
@ -47,7 +46,6 @@ export const ConversationHeaderMenu = (props: PropsConversationHeaderMenu) => {
isMe, isMe,
isClosable, isClosable,
isPublic, isPublic,
isRss,
isGroup, isGroup,
isKickedFromGroup, isKickedFromGroup,
isAdmin, isAdmin,
@ -73,7 +71,6 @@ export const ConversationHeaderMenu = (props: PropsConversationHeaderMenu) => {
<Menu id={triggerId} animation={animation.fade}> <Menu id={triggerId} animation={animation.fade}>
{getDisappearingMenuItem( {getDisappearingMenuItem(
isPublic, isPublic,
isRss,
isKickedFromGroup, isKickedFromGroup,
left, left,
isBlocked, isBlocked,
@ -90,7 +87,7 @@ export const ConversationHeaderMenu = (props: PropsConversationHeaderMenu) => {
window.i18n window.i18n
)} )}
{getCopyMenuItem(isPublic, isRss, isGroup, onCopyPublicKey, window.i18n)} {getCopyMenuItem(isPublic, isGroup, onCopyPublicKey, window.i18n)}
{getDeleteMessagesMenuItem(isPublic, onDeleteMessages, window.i18n)} {getDeleteMessagesMenuItem(isPublic, onDeleteMessages, window.i18n)}
{getAddModeratorsMenuItem( {getAddModeratorsMenuItem(
isAdmin, isAdmin,
@ -116,7 +113,6 @@ export const ConversationHeaderMenu = (props: PropsConversationHeaderMenu) => {
left, left,
isGroup, isGroup,
isPublic, isPublic,
isRss,
onLeaveGroup, onLeaveGroup,
window.i18n window.i18n
)} )}
@ -132,7 +128,6 @@ export const ConversationHeaderMenu = (props: PropsConversationHeaderMenu) => {
isClosable, isClosable,
isGroup, isGroup,
isPublic, isPublic,
isRss,
onDeleteContact, onDeleteContact,
window.i18n window.i18n
)} )}

@ -16,7 +16,6 @@ export type PropsContextConversationItem = {
type: 'group' | 'direct'; type: 'group' | 'direct';
isMe: boolean; isMe: boolean;
isPublic?: boolean; isPublic?: boolean;
isRss?: boolean;
isClosable?: boolean; isClosable?: boolean;
isBlocked?: boolean; isBlocked?: boolean;
hasNickname?: boolean; hasNickname?: boolean;
@ -41,7 +40,6 @@ export const ConversationListItemContextMenu = (
isBlocked, isBlocked,
isMe, isMe,
isClosable, isClosable,
isRss,
isPublic, isPublic,
hasNickname, hasNickname,
type, type,
@ -67,14 +65,13 @@ export const ConversationListItemContextMenu = (
onUnblockContact, onUnblockContact,
window.i18n window.i18n
)} )}
{/* {!isPublic && !isRss && !isMe ? ( {/* {!isPublic && !isMe ? (
<Item onClick={onChangeNickname}> <Item onClick={onChangeNickname}>
{i18n('changeNickname')} {i18n('changeNickname')}
</Item> </Item>
) : null} */} ) : null} */}
{getClearNicknameMenuItem( {getClearNicknameMenuItem(
isPublic, isPublic,
isRss,
isMe, isMe,
hasNickname, hasNickname,
onClearNickname, onClearNickname,
@ -82,7 +79,6 @@ export const ConversationListItemContextMenu = (
)} )}
{getCopyMenuItem( {getCopyMenuItem(
isPublic, isPublic,
isRss,
type === 'group', type === 'group',
onCopyPublicKey, onCopyPublicKey,
window.i18n window.i18n
@ -99,7 +95,6 @@ export const ConversationListItemContextMenu = (
isClosable, isClosable,
type === 'group', type === 'group',
isPublic, isPublic,
isRss,
onDeleteContact, onDeleteContact,
window.i18n window.i18n
)} )}
@ -108,7 +103,6 @@ export const ConversationListItemContextMenu = (
left, left,
type === 'group', type === 'group',
isPublic, isPublic,
isRss,
onLeaveGroup, onLeaveGroup,
window.i18n window.i18n
)} )}

@ -5,20 +5,15 @@ import { Item, Submenu } from 'react-contexify';
function showTimerOptions( function showTimerOptions(
isPublic: boolean, isPublic: boolean,
isRss: boolean,
isKickedFromGroup: boolean, isKickedFromGroup: boolean,
left: boolean, left: boolean,
isBlocked: boolean isBlocked: boolean
): boolean { ): boolean {
return !isPublic && !isRss && !left && !isKickedFromGroup && !isBlocked; return !isPublic && !left && !isKickedFromGroup && !isBlocked;
} }
function showMemberMenu( function showMemberMenu(isPublic: boolean, isGroup: boolean): boolean {
isPublic: boolean, return !isPublic && isGroup;
isRss: boolean,
isGroup: boolean
): boolean {
return !isPublic && !isRss && isGroup;
} }
function showBlock(isMe: boolean, isPrivate: boolean): boolean { function showBlock(isMe: boolean, isPrivate: boolean): boolean {
@ -27,33 +22,27 @@ function showBlock(isMe: boolean, isPrivate: boolean): boolean {
function showClearNickname( function showClearNickname(
isPublic: boolean, isPublic: boolean,
isRss: boolean,
isMe: boolean, isMe: boolean,
hasNickname: boolean hasNickname: boolean
): boolean { ): boolean {
return !isPublic && !isRss && !isMe && hasNickname; return !isPublic && !isMe && hasNickname;
} }
function showDeleteMessages(isPublic: boolean): boolean { function showDeleteMessages(isPublic: boolean): boolean {
return !isPublic; return !isPublic;
} }
function showCopyId( function showCopyId(isPublic: boolean, isGroup: boolean): boolean {
isPublic: boolean, return !isGroup;
isRss: boolean,
isGroup: boolean
): boolean {
return !isGroup && !isRss;
} }
function showDeleteContact( function showDeleteContact(
isMe: boolean, isMe: boolean,
isClosable: boolean, isClosable: boolean,
isGroup: boolean, isGroup: boolean,
isPublic: boolean, isPublic: boolean
isRss: boolean
): boolean { ): boolean {
return !isMe && isClosable && !!(!isGroup || isPublic || isRss); return !isMe && isClosable && !!(!isGroup || isPublic);
} }
function showAddModerators( function showAddModerators(
@ -82,10 +71,9 @@ function showLeaveGroup(
isKickedFromGroup: boolean, isKickedFromGroup: boolean,
left: boolean, left: boolean,
isGroup: boolean, isGroup: boolean,
isPublic: boolean, isPublic: boolean
isRss: boolean
): boolean { ): boolean {
return !isKickedFromGroup && !left && isGroup && !isPublic && !isRss; return !isKickedFromGroup && !left && isGroup && !isPublic;
} }
function showInviteContact(isGroup: boolean, isPublic: boolean): boolean { function showInviteContact(isGroup: boolean, isPublic: boolean): boolean {
@ -111,7 +99,6 @@ export function getDeleteContactMenuItem(
isClosable: boolean | undefined, isClosable: boolean | undefined,
isGroup: boolean | undefined, isGroup: boolean | undefined,
isPublic: boolean | undefined, isPublic: boolean | undefined,
isRss: boolean | undefined,
action: any, action: any,
i18n: LocalizerType i18n: LocalizerType
): JSX.Element | null { ): JSX.Element | null {
@ -120,8 +107,7 @@ export function getDeleteContactMenuItem(
Boolean(isMe), Boolean(isMe),
Boolean(isClosable), Boolean(isClosable),
Boolean(isGroup), Boolean(isGroup),
Boolean(isPublic), Boolean(isPublic)
Boolean(isRss)
) )
) { ) {
if (isPublic) { if (isPublic) {
@ -137,7 +123,6 @@ export function getLeaveGroupMenuItem(
left: boolean | undefined, left: boolean | undefined,
isGroup: boolean | undefined, isGroup: boolean | undefined,
isPublic: boolean | undefined, isPublic: boolean | undefined,
isRss: boolean | undefined,
action: any, action: any,
i18n: LocalizerType i18n: LocalizerType
): JSX.Element | null { ): JSX.Element | null {
@ -146,8 +131,7 @@ export function getLeaveGroupMenuItem(
Boolean(isKickedFromGroup), Boolean(isKickedFromGroup),
Boolean(left), Boolean(left),
Boolean(isGroup), Boolean(isGroup),
Boolean(isPublic), Boolean(isPublic)
Boolean(isRss)
) )
) { ) {
return <Item onClick={action}>{i18n('leaveGroup')}</Item>; return <Item onClick={action}>{i18n('leaveGroup')}</Item>;
@ -200,12 +184,11 @@ export function getAddModeratorsMenuItem(
export function getCopyMenuItem( export function getCopyMenuItem(
isPublic: boolean | undefined, isPublic: boolean | undefined,
isRss: boolean | undefined,
isGroup: boolean | undefined, isGroup: boolean | undefined,
action: any, action: any,
i18n: LocalizerType i18n: LocalizerType
): JSX.Element | null { ): JSX.Element | null {
if (showCopyId(Boolean(isPublic), Boolean(isRss), Boolean(isGroup))) { if (showCopyId(Boolean(isPublic), Boolean(isGroup))) {
const copyIdLabel = i18n('copySessionID'); const copyIdLabel = i18n('copySessionID');
return <Item onClick={action}>{copyIdLabel}</Item>; return <Item onClick={action}>{copyIdLabel}</Item>;
} }
@ -214,7 +197,6 @@ export function getCopyMenuItem(
export function getDisappearingMenuItem( export function getDisappearingMenuItem(
isPublic: boolean | undefined, isPublic: boolean | undefined,
isRss: boolean | undefined,
isKickedFromGroup: boolean | undefined, isKickedFromGroup: boolean | undefined,
left: boolean | undefined, left: boolean | undefined,
isBlocked: boolean | undefined, isBlocked: boolean | undefined,
@ -225,7 +207,6 @@ export function getDisappearingMenuItem(
if ( if (
showTimerOptions( showTimerOptions(
Boolean(isPublic), Boolean(isPublic),
Boolean(isRss),
Boolean(isKickedFromGroup), Boolean(isKickedFromGroup),
Boolean(left), Boolean(left),
Boolean(isBlocked) Boolean(isBlocked)
@ -260,12 +241,11 @@ export function isRtlBody(): boolean {
export function getShowMemberMenuItem( export function getShowMemberMenuItem(
isPublic: boolean | undefined, isPublic: boolean | undefined,
isRss: boolean | undefined,
isGroup: boolean | undefined, isGroup: boolean | undefined,
action: any, action: any,
i18n: LocalizerType i18n: LocalizerType
): JSX.Element | null { ): JSX.Element | null {
if (showMemberMenu(Boolean(isPublic), Boolean(isRss), Boolean(isGroup))) { if (showMemberMenu(Boolean(isPublic), Boolean(isGroup))) {
return <Item onClick={action}>{i18n('groupMembers')}</Item>; return <Item onClick={action}>{i18n('groupMembers')}</Item>;
} }
return null; return null;
@ -289,19 +269,13 @@ export function getBlockMenuItem(
export function getClearNicknameMenuItem( export function getClearNicknameMenuItem(
isPublic: boolean | undefined, isPublic: boolean | undefined,
isRss: boolean | undefined,
isMe: boolean | undefined, isMe: boolean | undefined,
hasNickname: boolean | undefined, hasNickname: boolean | undefined,
action: any, action: any,
i18n: LocalizerType i18n: LocalizerType
): JSX.Element | null { ): JSX.Element | null {
if ( if (
showClearNickname( showClearNickname(Boolean(isPublic), Boolean(isMe), Boolean(hasNickname))
Boolean(isPublic),
Boolean(isRss),
Boolean(isMe),
Boolean(hasNickname)
)
) { ) {
return <Item onClick={action}>{i18n('clearNickname')}</Item>; return <Item onClick={action}>{i18n('clearNickname')}</Item>;
} }

@ -450,7 +450,6 @@ interface MessageCreationData {
receivedAt: number; receivedAt: number;
sourceDevice: number; // always 1 isn't it? sourceDevice: number; // always 1 isn't it?
unidentifiedDeliveryReceived: any; // ??? unidentifiedDeliveryReceived: any; // ???
isRss: boolean;
source: boolean; source: boolean;
serverId: string; serverId: string;
message: any; message: any;
@ -469,7 +468,6 @@ export function initIncomingMessage(data: MessageCreationData): MessageModel {
receivedAt, receivedAt,
sourceDevice, sourceDevice,
unidentifiedDeliveryReceived, unidentifiedDeliveryReceived,
isRss,
source, source,
serverId, serverId,
message, message,
@ -498,7 +496,6 @@ export function initIncomingMessage(data: MessageCreationData): MessageModel {
direction: 'incoming', // + direction: 'incoming', // +
unread: 1, // + unread: 1, // +
isPublic, // + isPublic, // +
isRss, // +
}; };
return new window.Whisper.Message(messageData); return new window.Whisper.Message(messageData);
@ -624,10 +621,6 @@ export async function handleMessageEvent(event: MessageEvent): Promise<void> {
source = source || msg.get('source'); source = source || msg.get('source');
if (await isMessageDuplicate(data)) { if (await isMessageDuplicate(data)) {
// RSS expects duplicates, so squelch log
if (!source.match(/^rss:/)) {
window.log.warn('Received duplicate message', msg.idForLogging());
}
confirm(); confirm();
return; return;
} }

@ -127,7 +127,7 @@ export class ConversationController {
) )
); );
} }
if (!conversation.isPublic() && !conversation.isRss()) { if (!conversation.isPublic()) {
await Promise.all([ await Promise.all([
conversation.updateProfileAvatar(), conversation.updateProfileAvatar(),
// NOTE: we request snodes updating the cache, but ignore the result // NOTE: we request snodes updating the cache, but ignore the result

@ -77,9 +77,7 @@ export async function filterOpenGroupsConvos(
} }
// We only want to sync across open groups that we haven't left // We only want to sync across open groups that we haven't left
return conversations.filter( return conversations.filter(c => c.isPublic() && !c.get('left'));
c => c.isPublic() && !c.isRss() && !c.get('left')
);
} }
// Serialise as <Element0.length><Element0><Element1.length><Element1>... // Serialise as <Element0.length><Element0><Element1.length><Element1>...

@ -57,13 +57,11 @@ export type ConversationType = {
lastMessage?: { lastMessage?: {
status: 'error' | 'sending' | 'sent' | 'delivered' | 'read'; status: 'error' | 'sending' | 'sent' | 'delivered' | 'read';
text: string; text: string;
isRss: boolean;
}; };
phoneNumber: string; phoneNumber: string;
type: 'direct' | 'group'; type: 'direct' | 'group';
isMe: boolean; isMe: boolean;
isPublic?: boolean; isPublic?: boolean;
isRss?: boolean;
isClosable?: boolean; isClosable?: boolean;
lastUpdated: number; lastUpdated: number;
unreadCount: number; unreadCount: number;

@ -151,7 +151,6 @@ export const _getLeftPaneLists = (
conversation.lastMessage = { conversation.lastMessage = {
status: 'sending', status: 'sending',
text: '', text: '',
isRss: false,
}; };
} }

@ -2,9 +2,6 @@
import LokiAppDotNetServerAPI from '../../../../../js/modules/loki_app_dot_net_api'; import LokiAppDotNetServerAPI from '../../../../../js/modules/loki_app_dot_net_api';
const sampleFeed =
'<?xml version="1.0" encoding="windows-1252"?><rss version="2.0"><channel> <title>FeedForAll Sample Feed</title></channel></rss>';
const samplesGetMessages = { const samplesGetMessages = {
meta: { code: 200 }, meta: { code: 200 },
data: [ data: [
@ -77,18 +74,6 @@ class StubAppDotNetAPI extends LokiAppDotNetServerAPI {
) { ) {
const { method } = options; const { method } = options;
if (
endpoint === 'loki/v1/rss/messenger' ||
endpoint === 'loki/v1/rss/loki'
) {
return {
statusCode: 200,
response: {
data: sampleFeed,
},
};
}
if (endpoint === 'channels/1/messages') { if (endpoint === 'channels/1/messages') {
if (!method) { if (!method) {
return { return {

Loading…
Cancel
Save