|
|
import config from '@automattic/calypso-config'; |
|
|
import { translate } from 'i18n-calypso'; |
|
|
import { recordTracksEvent } from 'calypso/lib/analytics/tracks'; |
|
|
import { getLocaleSlug } from 'calypso/lib/i18n-utils'; |
|
|
import wpcom from 'calypso/lib/wp'; |
|
|
import { acceptedNotice } from 'calypso/my-sites/invites/utils'; |
|
|
import { |
|
|
INVITES_DELETE_REQUEST, |
|
|
INVITES_DELETE_REQUEST_FAILURE, |
|
|
INVITES_DELETE_REQUEST_SUCCESS, |
|
|
INVITES_REQUEST, |
|
|
INVITES_REQUEST_FAILURE, |
|
|
INVITES_REQUEST_SUCCESS, |
|
|
INVITES_VALIDATE_TOKEN, |
|
|
INVITES_VALIDATE_TOKEN_SUCCESS, |
|
|
INVITES_VALIDATE_TOKEN_FAILURE, |
|
|
INVITE_ACCEPTED, |
|
|
INVITES_SEND, |
|
|
INVITES_SEND_ERROR, |
|
|
INVITES_SEND_FAILURE, |
|
|
INVITES_SEND_SUCCESS, |
|
|
INVITE_RESEND_REQUEST, |
|
|
INVITE_RESEND_REQUEST_FAILURE, |
|
|
INVITE_RESEND_REQUEST_SUCCESS, |
|
|
} from 'calypso/state/action-types'; |
|
|
import { fetchCurrentUser } from 'calypso/state/current-user/actions'; |
|
|
import { getInviteForSite } from 'calypso/state/invites/selectors'; |
|
|
import { errorNotice, successNotice } from 'calypso/state/notices/actions'; |
|
|
import { receiveSite } from 'calypso/state/sites/actions'; |
|
|
|
|
|
import 'calypso/state/invites/init'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function requestSiteInvites( siteId ) { |
|
|
return async ( dispatch ) => { |
|
|
dispatch( { |
|
|
type: INVITES_REQUEST, |
|
|
siteId, |
|
|
} ); |
|
|
|
|
|
try { |
|
|
const { found, invites, links } = await wpcom.req.get( `/sites/${ siteId }/invites`, { |
|
|
status: 'all', |
|
|
number: 100, |
|
|
} ); |
|
|
|
|
|
dispatch( { |
|
|
type: INVITES_REQUEST_SUCCESS, |
|
|
siteId, |
|
|
found, |
|
|
invites, |
|
|
links, |
|
|
} ); |
|
|
} catch ( error ) { |
|
|
dispatch( { |
|
|
type: INVITES_REQUEST_FAILURE, |
|
|
siteId, |
|
|
error, |
|
|
} ); |
|
|
} |
|
|
}; |
|
|
} |
|
|
|
|
|
export function resendInvite( siteId, inviteId ) { |
|
|
return async ( dispatch ) => { |
|
|
dispatch( { |
|
|
type: INVITE_RESEND_REQUEST, |
|
|
siteId: siteId, |
|
|
inviteId: inviteId, |
|
|
} ); |
|
|
|
|
|
try { |
|
|
const data = await wpcom.req.post( `/sites/${ siteId }/invites/${ inviteId }/resend` ); |
|
|
dispatch( { |
|
|
type: INVITE_RESEND_REQUEST_SUCCESS, |
|
|
siteId, |
|
|
inviteId, |
|
|
data, |
|
|
} ); |
|
|
} catch ( error ) { |
|
|
dispatch( { |
|
|
type: INVITE_RESEND_REQUEST_FAILURE, |
|
|
siteId, |
|
|
inviteId, |
|
|
error, |
|
|
} ); |
|
|
dispatch( errorNotice( translate( 'Invitation failed to resend.' ) ) ); |
|
|
} |
|
|
}; |
|
|
} |
|
|
|
|
|
export function deleteInvite( siteId, inviteId ) { |
|
|
return deleteInvites( siteId, [ inviteId ] ); |
|
|
} |
|
|
|
|
|
const deleteInvitesFailureNotice = ( siteId, inviteIds ) => ( dispatch, getState ) => { |
|
|
for ( const inviteId of inviteIds ) { |
|
|
const invite = getInviteForSite( getState(), siteId, inviteId ); |
|
|
const invitee = ( invite.user.email || invite.user.login ) ?? ''; |
|
|
dispatch( |
|
|
errorNotice( |
|
|
invitee.length > 20 |
|
|
? translate( 'An error occurred while deleting the invite for %s….', { |
|
|
args: invitee.slice( 0, 20 ), |
|
|
} ) |
|
|
: translate( 'An error occurred while deleting the invite for %s.', { args: invitee } ) |
|
|
) |
|
|
); |
|
|
} |
|
|
}; |
|
|
|
|
|
export function deleteInvites( siteId, inviteIds ) { |
|
|
return async ( dispatch ) => { |
|
|
dispatch( { |
|
|
type: INVITES_DELETE_REQUEST, |
|
|
siteId: siteId, |
|
|
inviteIds: inviteIds, |
|
|
} ); |
|
|
|
|
|
try { |
|
|
const data = await wpcom.req.post( |
|
|
{ |
|
|
path: `/sites/${ siteId }/invites/delete`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
}, |
|
|
{ |
|
|
invite_ids: inviteIds, |
|
|
} |
|
|
); |
|
|
|
|
|
if ( data.deleted.length > 0 ) { |
|
|
dispatch( { |
|
|
type: INVITES_DELETE_REQUEST_SUCCESS, |
|
|
siteId, |
|
|
inviteIds: data.deleted, |
|
|
data, |
|
|
} ); |
|
|
dispatch( |
|
|
successNotice( |
|
|
translate( 'Invite deleted.', 'Invites deleted.', { count: inviteIds.length } ), |
|
|
{ |
|
|
displayOnNextPage: true, |
|
|
} |
|
|
) |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
if ( data.invalid.length > 0 ) { |
|
|
dispatch( { |
|
|
type: INVITES_DELETE_REQUEST_FAILURE, |
|
|
siteId, |
|
|
inviteIds: data.invalid, |
|
|
data, |
|
|
} ); |
|
|
dispatch( deleteInvitesFailureNotice( siteId, inviteIds ) ); |
|
|
} |
|
|
} catch ( error ) { |
|
|
dispatch( { |
|
|
type: INVITES_DELETE_REQUEST_FAILURE, |
|
|
siteId, |
|
|
inviteIds, |
|
|
error, |
|
|
} ); |
|
|
dispatch( deleteInvitesFailureNotice( siteId, inviteIds ) ); |
|
|
} |
|
|
}; |
|
|
} |
|
|
|
|
|
function inviteAccepted( invite ) { |
|
|
return { type: INVITE_ACCEPTED, invite }; |
|
|
} |
|
|
|
|
|
export function createAccount( userData, invite ) { |
|
|
return ( dispatch ) => { |
|
|
const result = wpcom.req.post( '/users/new', { |
|
|
...userData, |
|
|
validate: false, |
|
|
send_verification_email: userData.email !== invite.sentTo, |
|
|
locale: getLocaleSlug(), |
|
|
client_id: config( 'wpcom_signup_id' ), |
|
|
client_secret: config( 'wpcom_signup_key' ), |
|
|
} ); |
|
|
|
|
|
result |
|
|
.then( () => { |
|
|
recordTracksEvent( 'calypso_invite_account_created', { |
|
|
is_p2_site: invite.site?.is_wpforteams_site ?? false, |
|
|
inviter_blog_id: invite.site?.ID ?? false, |
|
|
} ); |
|
|
} ) |
|
|
.catch( ( error ) => { |
|
|
if ( error.message ) { |
|
|
dispatch( errorNotice( error.message ) ); |
|
|
} |
|
|
recordTracksEvent( 'calypso_invite_account_creation_failed', { error: error.error } ); |
|
|
} ); |
|
|
|
|
|
return result; |
|
|
}; |
|
|
} |
|
|
|
|
|
export function generateInviteLinks( siteId ) { |
|
|
return async ( dispatch ) => { |
|
|
await wpcom.req.post( { |
|
|
path: `/sites/${ siteId }/invites/links/generate`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
} ); |
|
|
dispatch( requestSiteInvites( siteId ) ); |
|
|
}; |
|
|
} |
|
|
|
|
|
export function disableInviteLinks( siteId ) { |
|
|
return async ( dispatch ) => { |
|
|
await wpcom.req.post( { |
|
|
path: `/sites/${ siteId }/invites/links/disable`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
} ); |
|
|
dispatch( requestSiteInvites( siteId ) ); |
|
|
}; |
|
|
} |
|
|
|
|
|
export function acceptInvite( invite, emailVerificationSecret ) { |
|
|
return async ( dispatch ) => { |
|
|
try { |
|
|
const data = await wpcom.req.get( |
|
|
`/sites/${ invite.site.ID }/invites/${ invite.inviteKey }/accept`, |
|
|
{ |
|
|
activate: invite.activationKey, |
|
|
email_verification_secret: emailVerificationSecret, |
|
|
include_domain_only: true, |
|
|
apiVersion: '1.3', |
|
|
} |
|
|
); |
|
|
|
|
|
if ( invite.role !== 'follower' && invite.role !== 'viewer' ) { |
|
|
dispatch( receiveSite( data.site ) ); |
|
|
await dispatch( fetchCurrentUser() ); |
|
|
} |
|
|
|
|
|
const acceptedNoticeResult = acceptedNotice( invite, true, true ); |
|
|
|
|
|
if ( ! invite.site.is_vip && ! invite.site.is_wpforteams_site ) { |
|
|
dispatch( successNotice( acceptedNoticeResult[ 0 ], acceptedNoticeResult[ 1 ] ) ); |
|
|
} |
|
|
|
|
|
recordTracksEvent( 'calypso_invite_accepted', { |
|
|
is_p2_site: invite.site.is_wpforteams_site ?? false, |
|
|
inviter_blog_id: invite.site.ID, |
|
|
} ); |
|
|
|
|
|
dispatch( inviteAccepted( invite ) ); |
|
|
return data; |
|
|
} catch ( error ) { |
|
|
if ( error.message ) { |
|
|
dispatch( errorNotice( error.message ) ); |
|
|
} |
|
|
recordTracksEvent( 'calypso_invite_accept_failed', { error: error.error } ); |
|
|
throw error; |
|
|
} |
|
|
}; |
|
|
} |
|
|
|
|
|
export function validateTokens( siteId, invitees, role ) { |
|
|
return async ( dispatch ) => { |
|
|
dispatch( { |
|
|
type: INVITES_VALIDATE_TOKEN, |
|
|
} ); |
|
|
|
|
|
try { |
|
|
const data = await wpcom.req.post( `/sites/${ siteId }/invites/validate`, { |
|
|
invitees, |
|
|
role, |
|
|
} ); |
|
|
|
|
|
dispatch( { |
|
|
type: INVITES_VALIDATE_TOKEN_SUCCESS, |
|
|
data, |
|
|
} ); |
|
|
recordTracksEvent( 'calypso_invite_create_validation_success' ); |
|
|
} catch ( e ) { |
|
|
dispatch( { |
|
|
type: INVITES_VALIDATE_TOKEN_FAILURE, |
|
|
} ); |
|
|
recordTracksEvent( 'calypso_invite_create_validation_failed' ); |
|
|
} |
|
|
}; |
|
|
} |
|
|
|
|
|
export function sendInvites( siteId, invitees, role, message, isExternal ) { |
|
|
return async ( dispatch ) => { |
|
|
dispatch( { |
|
|
type: INVITES_SEND, |
|
|
} ); |
|
|
|
|
|
try { |
|
|
const response = await wpcom.req.post( `/sites/${ siteId }/invites/new`, { |
|
|
invitees, |
|
|
role, |
|
|
message, |
|
|
is_external: isExternal, |
|
|
source: 'calypso', |
|
|
} ); |
|
|
const errorsCount = Object.keys( response.errors ).length; |
|
|
|
|
|
if ( errorsCount ) { |
|
|
dispatch( { |
|
|
type: INVITES_SEND_ERROR, |
|
|
errorType: errorsCount === invitees.length ? 'all' : 'partial', |
|
|
} ); |
|
|
recordTracksEvent( 'calypso_invite_send_failed' ); |
|
|
} else { |
|
|
dispatch( { |
|
|
type: INVITES_SEND_SUCCESS, |
|
|
} ); |
|
|
recordTracksEvent( 'calypso_invite_send_success', { role } ); |
|
|
} |
|
|
} catch ( e ) { |
|
|
dispatch( { |
|
|
type: INVITES_SEND_FAILURE, |
|
|
} ); |
|
|
recordTracksEvent( 'calypso_invite_send_failed' ); |
|
|
} |
|
|
}; |
|
|
} |
|
|
|