mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-02 07:33:07 +02:00
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import get from 'lodash/get';
|
|
import AuthMode from './AuthMode';
|
|
import AwsV4Auth from './AwsV4Auth';
|
|
import BearerAuth from './BearerAuth';
|
|
import BasicAuth from './BasicAuth';
|
|
import DigestAuth from './DigestAuth';
|
|
import StyledWrapper from './StyledWrapper';
|
|
import { humanizeRequestAuthMode } from 'utils/collections/index';
|
|
|
|
const Auth = ({ item, collection }) => {
|
|
const authMode = item.draft ? get(item, 'draft.request.auth.mode') : get(item, 'request.auth.mode');
|
|
|
|
const collectionRoot = get(collection, 'root', {});
|
|
const collectionAuth = get(collectionRoot, 'request.auth');
|
|
|
|
const getAuthView = () => {
|
|
switch (authMode) {
|
|
case 'awsv4': {
|
|
return <AwsV4Auth collection={collection} item={item} />;
|
|
}
|
|
case 'basic': {
|
|
return <BasicAuth collection={collection} item={item} />;
|
|
}
|
|
case 'bearer': {
|
|
return <BearerAuth collection={collection} item={item} />;
|
|
}
|
|
case 'digest': {
|
|
return <DigestAuth collection={collection} item={item} />;
|
|
}
|
|
case 'inherit': {
|
|
return (
|
|
<div className="flex flex-row w-full mt-2 gap-4">
|
|
<div>Auth inherited from the Collection: </div>
|
|
<div className="inherit-mode-text">{humanizeRequestAuthMode(collectionAuth?.mode)}</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<StyledWrapper className="w-full mt-1">
|
|
<div className="flex flex-grow justify-start items-center">
|
|
<AuthMode item={item} collection={collection} />
|
|
</div>
|
|
{getAuthView()}
|
|
</StyledWrapper>
|
|
);
|
|
};
|
|
export default Auth;
|