77 lines
2.9 KiB
Smarty
77 lines
2.9 KiB
Smarty
<h1><i class="fa fa-key"></i> Generic OAuth Authentication</h1>
|
|
<hr />
|
|
|
|
<form>
|
|
<div class="alert alert-warning">
|
|
<p>
|
|
Please refer to your OAuth provider's documentation for appropriate values. All fields are mandatory.
|
|
</p>
|
|
<br />
|
|
<select data-field="social:oauth:type" title="OAuth Strategy" class="form-control">
|
|
<option value="x">Disabled</option>
|
|
<option value="1">OAuth</option>
|
|
<option value="2">OAuth2</option>
|
|
</select>
|
|
<hr />
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="1" data-field="social:oauth:key" title="OAuth Key" class="form-control input-lg" placeholder="OAuth Key">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="1" data-field="social:oauth:secret" title="OAuth Secret" class="form-control" placeholder="OAuth Secret">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="1" data-field="social:oauth:reqTokenUrl" title="Token Request URL" class="form-control" placeholder="Token Request URL">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="1" data-field="social:oauth:accessTokenUrl" title="Access Token URL" class="form-control" placeholder="Access Token URL">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="1" data-field="social:oauth:authUrl" title="Authorization URL" class="form-control" placeholder="Authorization URL">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="2" data-field="social:oauth2:id" title="Client ID" class="form-control input-lg" placeholder="Client ID">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="2" data-field="social:oauth2:secret" title="Client Secret" class="form-control" placeholder="Client Secret">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="2" data-field="social:oauth2:authUrl" title="Authorization URL" class="form-control" placeholder="Authorization URL">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" data-strategy="2" data-field="social:oauth2:tokenUrl" title="Token URL" class="form-control" placeholder="Token URL">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="text" data-field="social:oauth:userProfileUrl" title="User Profile URL" class="form-control" placeholder="User Profile URL">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<button class="btn btn-lg btn-primary" id="save">Save</button>
|
|
|
|
<script>
|
|
require(['forum/admin/settings'], function(Settings) {
|
|
Settings.prepare(function() {
|
|
var OAuthType = $('[data-field="social:oauth:type"]').val();
|
|
toggleFields(OAuthType);
|
|
});
|
|
});
|
|
|
|
var toggleFields = function(value) {
|
|
if (value === '1') {
|
|
$('[data-strategy="2"]').hide();
|
|
$('[data-strategy="1"]').show();
|
|
} else if (value === '2') {
|
|
$('[data-strategy="1"]').hide();
|
|
$('[data-strategy="2"]').show();
|
|
} else {
|
|
$('[data-strategy]').hide();
|
|
}
|
|
}
|
|
|
|
toggleFields(false);
|
|
$('[data-field="social:oauth:type"]').on('change', function() {
|
|
toggleFields(this.value);
|
|
})
|
|
</script> |