-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support User: Add in-progress version of support user.
- Loading branch information
Showing
8 changed files
with
253 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Support User | ||
============= | ||
This component is used to provide user support. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/** | ||
* External dependencies | ||
*/ | ||
import React from 'react'; | ||
import classNames from 'classnames'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import observe from 'lib/mixins/data-observe'; | ||
import User from 'lib/user'; | ||
import userSettings from 'lib/user-settings'; | ||
import Dialog from 'components/dialog'; | ||
import KeyboardShortcuts from 'lib/keyboard-shortcuts'; | ||
|
||
module.exports = React.createClass( { | ||
displayName: 'SupportUser', | ||
|
||
mixins: [ observe( 'userSettings' ), React.addons.LinkedStateMixin ], | ||
|
||
componentDidMount: function() { | ||
KeyboardShortcuts.on( 'open-support-user', this.toggleShowDialog ); | ||
}, | ||
|
||
componentWillUnmount: function() { | ||
KeyboardShortcuts.off( 'open-support-user', this.toggleShowDialog ); | ||
}, | ||
|
||
getInitialState: function() { | ||
return { | ||
supportUser: null, | ||
isSupportUser: false, | ||
showDialog: false | ||
}; | ||
}, | ||
|
||
isEnabled: function() { | ||
if ( ! userSettings.hasSettings() ) { | ||
userSettings.fetchSettings(); | ||
return false; | ||
} | ||
return ! userSettings.getSetting( 'user_login_can_be_changed' ); | ||
}, | ||
|
||
toggleShowDialog: function() { | ||
if ( this.isEnabled() ) { | ||
this.setState( { showDialog: ! this.state.showDialog } ); | ||
} | ||
}, | ||
|
||
closeDialog: function() { | ||
}, | ||
|
||
onChangeUser: function( e ) { | ||
e.preventDefault(); | ||
|
||
if ( this.state.supportUser && this.state.supportPassword ) { | ||
let user = new User(); | ||
user.clear(); | ||
user.changeUser( this.state.supportUser, this.state.supportPassword ); | ||
this.setState( { isSupportUser: true } ); | ||
this.setState( { supportPassword: null } ); | ||
} | ||
|
||
this.setState( { showDialog: false } ); | ||
}, | ||
|
||
onRestoreUser: function( e ) { | ||
if ( this.state.isSupportUser && this.state.restoreUser ) { | ||
let user = new User(); | ||
user.clear().fetch(); | ||
this.setState( { | ||
supportUser: null, | ||
supportPassword: null, | ||
isSupportUser: false, | ||
showDialog: false | ||
} ); | ||
window.location.reload.bind( window.location ); | ||
} | ||
}, | ||
|
||
render: function() { | ||
if ( this.state.isSupportUser ) { | ||
return ( | ||
<Dialog additionalClassNames="support-user" isVisible={ this.state.showDialog } onClose={ this.closeDialog }> | ||
<div className="restore-user"> | ||
<form onSubmit={ this.onRestoreUser }> | ||
<button type="submit" className="button"> | ||
Restore User | ||
</button> | ||
</form> | ||
</div> | ||
</Dialog> | ||
); | ||
} else { | ||
return ( | ||
<Dialog additionalClassNames="support-user" isVisible={ this.state.showDialog } onClose={ this.closeDialog }> | ||
<div className="support-user"> | ||
<form onSubmit={ this.onChangeUser }> | ||
<label> | ||
Username | ||
<input | ||
type="text" | ||
name="supportUser" | ||
id="supportUser" | ||
valueLink={ this.linkState( 'supportUser' ) } | ||
/> | ||
</label> | ||
<label> | ||
Support Password | ||
<input | ||
type="password" | ||
name="supportPassword" | ||
id="supportPassword" | ||
valueLink={ this.linkState( 'supportPassword' ) } | ||
/> | ||
</label> | ||
<button type="submit" className="button"> | ||
Change to Support User | ||
</button> | ||
</form> | ||
</div> | ||
</Dialog> | ||
); } | ||
} | ||
} ); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
export default function wrapWithSupport( wpcom ) { | ||
let supportUser = ''; | ||
let supportToken = ''; | ||
|
||
/** | ||
* Request parameters are as follows: | ||
* - param (required) A string or object that contains the path | ||
* - query (optional) An object that expands the response object | ||
* - body (required*) Required by POST and PUT, but not by GET and DEL | ||
* - fn (required) A callback function to handle the returned result | ||
* - ...rest (optional) Some queries have additional parameters after | ||
* callback function | ||
* | ||
* Return the index of the query parameter, or if one does not exist, | ||
* return false. | ||
*/ | ||
const getQueryIndex = function( req, args ) { | ||
let fnIndex, queryIndex; | ||
|
||
// Find the index of the callback in the arguments | ||
fnIndex = args.findIndex( function( e ) { | ||
return 'function' === typeof e; | ||
} ); | ||
|
||
// Set queryIndex based on the request type and fnIndex | ||
if ( req === 'post' || req === 'put' ) { | ||
queryIndex = ( 3 === fnIndex ) ? 1 : false; | ||
} else { | ||
queryIndex = ( 2 === fnIndex ) ? 1 : false; | ||
} | ||
return queryIndex; | ||
} | ||
|
||
/** | ||
* Add the supportUser and supportToken to the query. | ||
*/ | ||
const addSupportData = function( query ) { | ||
return Object.assign( {}, query, { | ||
support_user: supportUser, | ||
_support_token: supportToken | ||
} ); | ||
} | ||
|
||
/** | ||
* Mutate the query parameter of the request by adding values for | ||
* support_user and _support_token to the query parameter. | ||
*/ | ||
const extendRequest = function( req, args ) { | ||
if ( ! supportUser || ! supportToken ) { | ||
return args; | ||
} | ||
|
||
let queryIndex = getQueryIndex( req, args ); | ||
if ( queryIndex ) { | ||
args[ queryIndex ] = addSupportData( args[ queryIndex ] ); | ||
} else { | ||
args.splice( 1, 0, addSupportData( {} ) ); | ||
} | ||
return args; | ||
} | ||
|
||
const del = wpcom.req.del.bind( wpcom.req ); | ||
const get = wpcom.req.get.bind( wpcom.req ); | ||
const post = wpcom.req.post.bind( wpcom.req ); | ||
const put = wpcom.req.put.bind( wpcom.req ); | ||
|
||
return Object.assign( wpcom, { | ||
changeUser: function( username, password, fn ) { | ||
var args = { | ||
apiVersion: '1.1', | ||
path: '/internal/support/' + username + '/grant' | ||
}; | ||
|
||
return wpcom.req.post( args, { password: password }, function( error, response ) { | ||
if ( ! error ) { | ||
supportUser = response.username; | ||
supportToken = response.token; | ||
} | ||
|
||
fn( error, response ); | ||
} ); | ||
}, | ||
restoreUser: function() { | ||
supportUser = ''; | ||
supportToken = ''; | ||
}, | ||
req: { | ||
del: function( ...args ) { | ||
return del.apply( wpcom, extendRequest( 'del', args ) ); | ||
}, | ||
get: function( ...args ) { | ||
return get.apply( wpcom, extendRequest( 'get', args ) ); | ||
}, | ||
post: function( ...args ) { | ||
return post.apply( wpcom, extendRequest( 'post', args ) ); | ||
}, | ||
put: function( ...args ) { | ||
return put.apply( wpcom, extendRequest( 'put', args ) ); | ||
} | ||
} | ||
} ); | ||
}; |