| import { translate } from 'i18n-calypso'; | |
| import { | |
| HOSTING_SFTP_USERS_REQUEST, | |
| HOSTING_SFTP_USER_CREATE, | |
| HOSTING_SFTP_PASSWORD_RESET, | |
| } from 'calypso/state/action-types'; | |
| import { registerHandlers } from 'calypso/state/data-layer/handler-registry'; | |
| import { http } from 'calypso/state/data-layer/wpcom-http/actions'; | |
| import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils'; | |
| import { updateAtomicSftpUser, setAtomicSftpUsers } from 'calypso/state/hosting/actions'; | |
| import { errorNotice } from 'calypso/state/notices/actions'; | |
| const requestAtomicSftpUsers = ( action ) => { | |
| return http( | |
| { | |
| method: 'GET', | |
| path: `/sites/${ action.siteId }/hosting/ssh-users`, | |
| apiNamespace: 'wpcom/v2', | |
| }, | |
| action | |
| ); | |
| }; | |
| const createAtomicSftpUser = ( action ) => { | |
| return http( | |
| { | |
| method: 'POST', | |
| path: `/sites/${ action.siteId }/hosting/ssh-user`, | |
| apiNamespace: 'wpcom/v2', | |
| body: {}, | |
| }, | |
| action | |
| ); | |
| }; | |
| const resetAtomicSftpPassword = ( action ) => { | |
| return http( | |
| { | |
| method: 'POST', | |
| path: `/sites/${ action.siteId }/hosting/ssh-user/${ action.sshUsername }/reset-password`, | |
| apiNamespace: 'wpcom/v2', | |
| body: {}, | |
| }, | |
| action | |
| ); | |
| }; | |
| const setSftpUsers = ( { siteId }, userList ) => { | |
| return setAtomicSftpUsers( siteId, userList ); | |
| }; | |
| const updateSftpUser = ( action, userList ) => updateAtomicSftpUser( action.siteId, userList ); | |
| const displaySftpUserError = ( { siteId } ) => [ | |
| updateAtomicSftpUser( siteId, null ), | |
| errorNotice( | |
| translate( | |
| 'Sorry, we had a problem retrieving your sftp user details. Please refresh the page and try again.' | |
| ), | |
| { | |
| duration: 5000, | |
| } | |
| ), | |
| ]; | |
| const userToUserList = ( { username, password } ) => { | |
| return [ { username, password } ]; | |
| }; | |
| const usernameListToUsers = ( { users } ) => { | |
| return users.map( ( user ) => ( { | |
| username: user, | |
| } ) ); | |
| }; | |
| registerHandlers( 'state/data-layer/wpcom/sites/hosting/sftp-user.js', { | |
| [ HOSTING_SFTP_USERS_REQUEST ]: [ | |
| dispatchRequest( { | |
| fetch: requestAtomicSftpUsers, | |
| onSuccess: setSftpUsers, | |
| onError: displaySftpUserError, | |
| fromApi: usernameListToUsers, | |
| } ), | |
| ], | |
| [ HOSTING_SFTP_USER_CREATE ]: [ | |
| dispatchRequest( { | |
| fetch: createAtomicSftpUser, | |
| onSuccess: setSftpUsers, | |
| onError: displaySftpUserError, | |
| fromApi: userToUserList, | |
| } ), | |
| ], | |
| [ HOSTING_SFTP_PASSWORD_RESET ]: [ | |
| dispatchRequest( { | |
| fetch: resetAtomicSftpPassword, | |
| onSuccess: updateSftpUser, | |
| onError: displaySftpUserError, | |
| fromApi: userToUserList, | |
| } ), | |
| ], | |
| } ); | |