lbry-desktop/ui/redux/actions/search.js

296 lines
8.8 KiB
JavaScript
Raw Normal View History

2020-07-27 22:04:12 +02:00
// @flow
import * as ACTIONS from 'constants/action_types';
import { doToast } from 'redux/actions/notifications';
import { selectShowMatureContent } from 'redux/selectors/settings';
import { selectClaimForUri, selectClaimIdForUri, selectClaimIsNsfwForUri } from 'redux/selectors/claims';
import { doResolveUris } from 'redux/actions/claims';
import { buildURI, isURIValid } from 'util/lbryURI';
import { batchActions } from 'util/batch-actions';
import { makeSelectSearchUrisForQuery, selectPersonalRecommendations, selectSearchValue } from 'redux/selectors/search';
import { selectUser } from 'redux/selectors/user';
2020-07-27 22:04:12 +02:00
import handleFetchResponse from 'util/handle-fetch';
import { getSearchQueryString } from 'util/query-params';
import { getRecommendationSearchOptions } from 'util/search';
import { SEARCH_SERVER_API, SEARCH_SERVER_API_ALT, RECSYS_FYP_ENDPOINT } from 'config';
import { SEARCH_OPTIONS } from 'constants/search';
import { X_LBRY_AUTH_TOKEN } from 'constants/token';
import { getAuthToken } from 'util/saved-passwords';
// ****************************************************************************
// FYP
// ****************************************************************************
// TODO: This should be part of `extras/recsys/recsys`, but due to the circular
// dependency problem with `extras`, I'm temporarily placing it. The recsys
// object should be moved into `ui`, but that change will require more testing.
console.assert(RECSYS_FYP_ENDPOINT, 'RECSYS_FYP_ENDPOINT not defined!');
const recsysFyp = {
fetchPersonalRecommendations: (userId: string) => {
return fetch(`${RECSYS_FYP_ENDPOINT}/${userId}/fyp`, { headers: { [X_LBRY_AUTH_TOKEN]: getAuthToken() } })
.then((response) => response.json())
.then((result) => result)
.catch((error) => {
console.log('FYP: fetch', { error, userId });
return {};
});
},
markPersonalRecommendations: (userId: string, gid: string) => {
return fetch(`${RECSYS_FYP_ENDPOINT}/${userId}/fyp/${gid}/mark`, {
method: 'POST',
headers: { [X_LBRY_AUTH_TOKEN]: getAuthToken() },
}).catch((error) => {
console.log('FYP: mark', { error, userId, gid });
return {};
});
},
ignoreRecommendation: (userId: string, gid: string, claimId: string) => {
return fetch(`${RECSYS_FYP_ENDPOINT}/${userId}/fyp/${gid}/c/${claimId}/ignore`, {
method: 'POST',
headers: { [X_LBRY_AUTH_TOKEN]: getAuthToken() },
})
.then((response) => response.json())
.then((result) => result)
.catch((error) => {
console.log('FYP: ignore', { error, userId, gid, claimId });
return {};
});
},
};
// ****************************************************************************
// ****************************************************************************
2020-07-27 22:04:12 +02:00
type Dispatch = (action: any) => any;
type GetState = () => { claims: any, search: SearchState, user: User };
2020-07-27 22:04:12 +02:00
type SearchOptions = {
size?: number,
from?: number,
related_to?: string,
nsfw?: boolean,
isBackgroundSearch?: boolean,
gid?: string, // for fyp only
uuid?: string, // for fyp only
2020-07-27 22:04:12 +02:00
};
2020-12-03 18:29:47 +01:00
let lighthouse = {
2021-07-29 19:19:12 +02:00
CONNECTION_STRING: SEARCH_SERVER_API,
user_id: '',
2020-12-03 18:29:47 +01:00
search: (queryString: string) => fetch(`${lighthouse.CONNECTION_STRING}?${queryString}`).then(handleFetchResponse),
searchRecommendations: (queryString: string) => {
if (lighthouse.user_id) {
return fetch(`${SEARCH_SERVER_API_ALT}?${queryString}${lighthouse.user_id}`).then(handleFetchResponse);
} else {
return fetch(`${SEARCH_SERVER_API_ALT}?${queryString}`).then(handleFetchResponse);
}
},
2020-07-27 22:04:12 +02:00
};
2020-12-03 18:29:47 +01:00
export const setSearchApi = (endpoint: string) => {
lighthouse.CONNECTION_STRING = endpoint.replace(/\/*$/, '/'); // exactly one slash at the end;
2020-07-27 22:04:12 +02:00
};
export const setSearchUserId = (userId: ?string) => {
lighthouse.user_id = userId ? `&user_id=${userId}` : '';
};
/**
* Processes a lighthouse-formatted search result to an array of uris.
* @param results
*/
const processLighthouseResults = (results: Array<any>) => {
const uris = [];
results.forEach((item) => {
if (item) {
const { name, claimId } = item;
const urlObj: LbryUrlObj = {};
if (name.startsWith('@')) {
urlObj.channelName = name;
urlObj.channelClaimId = claimId;
} else {
urlObj.streamName = name;
urlObj.streamClaimId = claimId;
}
const url = buildURI(urlObj);
if (isURIValid(url)) {
uris.push(url);
}
}
});
return uris;
};
2020-07-27 22:04:12 +02:00
export const doSearch = (rawQuery: string, searchOptions: SearchOptions) => (
dispatch: Dispatch,
getState: GetState
) => {
const query = rawQuery.replace(/^lbry:\/\//i, '').replace(/\//, ' ');
if (!query) {
dispatch({
type: ACTIONS.SEARCH_FAIL,
});
return;
}
const state = getState();
const queryWithOptions = getSearchQueryString(query, searchOptions);
2021-03-26 09:33:30 +01:00
const size = searchOptions.size;
2021-03-26 09:33:30 +01:00
const from = searchOptions.from;
2020-07-27 22:04:12 +02:00
// If we have already searched for something, we don't need to do anything
const urisForQuery = makeSelectSearchUrisForQuery(queryWithOptions)(state);
2020-07-27 22:04:12 +02:00
if (urisForQuery && !!urisForQuery.length) {
2021-03-26 09:33:30 +01:00
if (!size || !from || from + size < urisForQuery.length) {
return;
}
2020-07-27 22:04:12 +02:00
}
dispatch({
type: ACTIONS.SEARCH_START,
});
const cmd = searchOptions.hasOwnProperty(SEARCH_OPTIONS.RELATED_TO)
? lighthouse.searchRecommendations
: lighthouse.search;
cmd(queryWithOptions)
.then((data: { body: Array<{ name: string, claimId: string }>, poweredBy: string }) => {
const { body: result, poweredBy } = data;
const uris = processLighthouseResults(result);
2020-07-27 22:04:12 +02:00
const actions = [];
2020-08-12 19:02:19 +02:00
actions.push(doResolveUris(uris));
2020-07-27 22:04:12 +02:00
actions.push({
type: ACTIONS.SEARCH_SUCCESS,
data: {
query: queryWithOptions,
from: from,
2021-03-26 09:33:30 +01:00
size: size,
2020-07-27 22:04:12 +02:00
uris,
recsys: poweredBy,
2020-07-27 22:04:12 +02:00
},
});
2020-07-27 22:04:12 +02:00
dispatch(batchActions(...actions));
})
.catch(() => {
2020-07-27 22:04:12 +02:00
dispatch({
type: ACTIONS.SEARCH_FAIL,
});
});
};
export const doUpdateSearchOptions = (newOptions: SearchOptions, additionalOptions: SearchOptions) => (
dispatch: Dispatch,
getState: GetState
) => {
const state = getState();
const searchValue = selectSearchValue(state);
dispatch({
type: ACTIONS.UPDATE_SEARCH_OPTIONS,
data: newOptions,
});
if (searchValue) {
// After updating, perform a search with the new options
dispatch(doSearch(searchValue, additionalOptions));
}
};
2020-12-03 18:29:47 +01:00
2021-12-07 19:17:29 +01:00
export const doSetMentionSearchResults = (query: string, uris: Array<string>) => (dispatch: Dispatch) => {
dispatch({
2021-12-07 15:51:55 +01:00
type: ACTIONS.SET_MENTION_SEARCH_RESULTS,
2021-12-07 19:17:29 +01:00
data: { query, uris },
});
};
export const doFetchRecommendedContent = (uri: string, fyp: ?FypParam = null) => (
dispatch: Dispatch,
getState: GetState
) => {
const state = getState();
const claim = selectClaimForUri(state, uri);
const matureEnabled = selectShowMatureContent(state);
const claimIsMature = selectClaimIsNsfwForUri(state, uri);
if (claim && claim.value && claim.claim_id) {
const options: SearchOptions = getRecommendationSearchOptions(matureEnabled, claimIsMature, claim.claim_id);
if (fyp) {
options['gid'] = fyp.gid;
options['uuid'] = fyp.uuid;
}
const { title } = claim.value;
if (title && options) {
dispatch(doSearch(title, options));
}
}
};
export const doFetchPersonalRecommendations = () => (dispatch: Dispatch, getState: GetState) => {
const state = getState();
const user = selectUser(state);
if (!user || !user.id) {
dispatch({ type: ACTIONS.FYP_FETCH_FAILED });
return;
}
recsysFyp
.fetchPersonalRecommendations(user.id)
.then((data) => {
const { gid, recs } = data;
if (gid && recs) {
2022-03-16 03:57:26 +01:00
const uris = processLighthouseResults(recs);
dispatch(doResolveUris(uris));
dispatch({
type: ACTIONS.FYP_FETCH_SUCCESS,
2022-03-16 03:57:26 +01:00
data: { gid, uris },
});
} else {
dispatch({ type: ACTIONS.FYP_FETCH_FAILED });
}
})
.catch(() => {
dispatch({ type: ACTIONS.FYP_FETCH_FAILED });
});
};
export const doRemovePersonalRecommendation = (uri: string) => (dispatch: Dispatch, getState: GetState) => {
const state = getState();
const user = selectUser(state);
const personalRecommendations = selectPersonalRecommendations(state);
const claimId = selectClaimIdForUri(state, uri);
if (!user || !user.id || !personalRecommendations.gid || !claimId) {
return;
}
recsysFyp
.ignoreRecommendation(user.id, personalRecommendations.gid, claimId)
.then((res) => {
dispatch({ type: ACTIONS.FYP_HIDE_URI, data: { uri } });
dispatch(doToast({ message: __('Recommendation removed. Thanks for the feedback!') }));
})
.catch((err) => {
console.log('doRemovePersonalRecommendation:', err);
});
};
export { lighthouse, recsysFyp };