make use of verification buttons
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
parent
2a07ec8e21
commit
06265fe770
|
@ -196,15 +196,21 @@ class AccountManager {
|
|||
|
||||
// keep old verification status if we don't have a new one
|
||||
if(!isset($newData[self::PROPERTY_TWITTER]['verified'])) {
|
||||
$newData[self::PROPERTY_TWITTER]['verified'] = isset($oldData[self::PROPERTY_TWITTER]['verified']) ? $oldData[self::PROPERTY_TWITTER]['verified'] : self::NOT_VERIFIED;
|
||||
// keep old verification status if value didn't changed and an old value exists
|
||||
$keepOldStatus = $newData[self::PROPERTY_TWITTER]['value'] === $oldData[self::PROPERTY_TWITTER]['value'] && isset($oldData[self::PROPERTY_TWITTER]['verified']);
|
||||
$newData[self::PROPERTY_TWITTER]['verified'] = $keepOldStatus ? $oldData[self::PROPERTY_TWITTER]['verified'] : self::NOT_VERIFIED;
|
||||
}
|
||||
|
||||
if(!isset($newData[self::PROPERTY_WEBSITE]['verified'])) {
|
||||
$newData[self::PROPERTY_WEBSITE]['verified'] = isset($oldData[self::PROPERTY_WEBSITE]['verified']) ? $oldData[self::PROPERTY_WEBSITE]['verified'] : self::NOT_VERIFIED;
|
||||
// keep old verification status if value didn't changed and an old value exists
|
||||
$keepOldStatus = $newData[self::PROPERTY_WEBSITE]['value'] === $oldData[self::PROPERTY_WEBSITE]['value'] && isset($oldData[self::PROPERTY_WEBSITE]['verified']);
|
||||
$newData[self::PROPERTY_WEBSITE]['verified'] = $keepOldStatus ? $oldData[self::PROPERTY_WEBSITE]['verified'] : self::NOT_VERIFIED;
|
||||
}
|
||||
|
||||
if(!isset($newData[self::PROPERTY_EMAIL]['verified'])) {
|
||||
$newData[self::PROPERTY_EMAIL]['verified'] = isset($oldData[self::PROPERTY_WEBSITE]['verified']) ? $oldData[self::PROPERTY_EMAIL]['verified'] : self::VERIFICATION_IN_PROGRESS;
|
||||
// keep old verification status if value didn't changed and an old value exists
|
||||
$keepOldStatus = $newData[self::PROPERTY_EMAIL]['value'] === $oldData[self::PROPERTY_EMAIL]['value'] && isset($oldData[self::PROPERTY_EMAIL]['verified']);
|
||||
$newData[self::PROPERTY_EMAIL]['verified'] = $keepOldStatus ? $oldData[self::PROPERTY_EMAIL]['verified'] : self::VERIFICATION_IN_PROGRESS;
|
||||
}
|
||||
|
||||
// reset verification status if a value from a previously verified data was changed
|
||||
|
|
|
@ -144,7 +144,7 @@ input#openid, input#webdav { width:20em; }
|
|||
padding-top: 10px;
|
||||
}
|
||||
|
||||
#personal-settings-container .verify:hover {
|
||||
#personal-settings-container .verify-action {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
|
@ -208,15 +208,16 @@ $(document).ready(function () {
|
|||
dialog.style.display = "block";
|
||||
};
|
||||
|
||||
$(".verify").click(function () {
|
||||
var account = $(this).attr('id');
|
||||
|
||||
// Add: make call to get content for verify dialog
|
||||
$(".verify-action").click(function () {
|
||||
var account = $(this);
|
||||
var accountId = $(this).attr('id');
|
||||
|
||||
$.ajax(
|
||||
OC.generateUrl('/settings/users/{account}/verify', {account: account}),
|
||||
OC.generateUrl('/settings/users/{account}/verify', {account: accountId}),
|
||||
{method: 'GET'}
|
||||
).done(function(data) {
|
||||
account.attr('title', 'Verifying...');
|
||||
account.attr('src', OC.imagePath('core', 'actions/verifying.svg'));
|
||||
showVerifyDialog(data.msg, data.code);
|
||||
});
|
||||
|
||||
|
|
|
@ -111,18 +111,19 @@
|
|||
<label for="email"><?php p($l->t('Email')); ?></label>
|
||||
<span class="icon-password"/>
|
||||
</h2>
|
||||
<span class="verify" id="verify-email"><?php
|
||||
<span class="verify">
|
||||
<img id="verify-email" <?php
|
||||
switch($_['emailVerification']) {
|
||||
case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS:
|
||||
p('verification in progress');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verifying.svg') . '" title="Verifying..."');
|
||||
break;
|
||||
case \OC\Accounts\AccountManager::VERIFIED:
|
||||
p('verified');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verified.svg') . '" title="Verified"');
|
||||
break;
|
||||
default:
|
||||
p('click to verify');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verify.svg') . '" title="Verify"');
|
||||
}
|
||||
?>
|
||||
?>>
|
||||
</span>
|
||||
<input type="email" name="email" id="email" value="<?php p($_['email']); ?>"
|
||||
<?php if(!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?>
|
||||
|
@ -176,19 +177,19 @@
|
|||
<label for="website"><?php p($l->t('Website')); ?></label>
|
||||
<span class="icon-password"/>
|
||||
</h2>
|
||||
<span class="verify" id="verify-website">
|
||||
<?php
|
||||
<span class="verify">
|
||||
<img id="verify-website" <?php
|
||||
switch($_['websiteVerification']) {
|
||||
case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS:
|
||||
p('verification in progress');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verifying.svg') . '" title="Verifying..."');
|
||||
break;
|
||||
case \OC\Accounts\AccountManager::VERIFIED:
|
||||
p('verified');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verified.svg') . '" title="Verified"');
|
||||
break;
|
||||
default:
|
||||
p('click to verify');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verify.svg') . '" title="Verify" class="verify-action"');
|
||||
}
|
||||
?>
|
||||
?>>
|
||||
</span>
|
||||
<input type="text" name="website" id="website" value="<?php p($_['website']); ?>"
|
||||
placeholder="<?php p($l->t('Your website')); ?>"
|
||||
|
@ -203,20 +204,19 @@
|
|||
<label for="twitter"><?php p($l->t('Twitter')); ?></label>
|
||||
<span class="icon-password"/>
|
||||
</h2>
|
||||
<span class="verify" id="verify-twitter">
|
||||
<?php
|
||||
<span class="verify">
|
||||
<img id="verify-twitter" <?php
|
||||
switch($_['twitterVerification']) {
|
||||
case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS:
|
||||
p('verification in progress');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verifying.svg') . '" title="Verifying..."');
|
||||
break;
|
||||
case \OC\Accounts\AccountManager::VERIFIED:
|
||||
p('verified');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verified.svg') . '" title="Verified"');
|
||||
break;
|
||||
default:
|
||||
p('click to verify');
|
||||
print_unescaped('src="' . image_path('core', 'actions/verify.svg') . '" title="Verify" class="verify-action"');
|
||||
}
|
||||
?>
|
||||
</span>
|
||||
?>>
|
||||
<input type="text" name="twitter" id="twitter" value="<?php p($_['twitter']); ?>"
|
||||
placeholder="<?php p($l->t('Your Twitter handle')); ?>"
|
||||
autocomplete="on" autocapitalize="none" autocorrect="off" />
|
||||
|
|
Loading…
Reference in New Issue