nextcloud/apps/updatenotification/src/components/root.vue

504 lines
16 KiB
Vue

<template>
<div id="updatenotification" class="followupsection">
<div class="update">
<template v-if="isNewVersionAvailable">
<p v-if="versionIsEol">
<span class="warning">
<span class="icon icon-error-white"></span>
{{ t('updatenotification', 'The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.') }}
</span>
</p>
<p>
<span v-html="newVersionAvailableString"></span><br>
<span v-if="!isListFetched" class="icon icon-loading-small"></span>
<span v-html="statusText"></span>
</p>
<template v-if="missingAppUpdates.length">
<h3 @click="toggleHideMissingUpdates">
{{ t('updatenotification', 'Apps missing updates') }}
<span v-if="!hideMissingUpdates" class="icon icon-triangle-n"></span>
<span v-if="hideMissingUpdates" class="icon icon-triangle-s"></span>
</h3>
<ul class="applist" v-if="!hideMissingUpdates">
<li v-for="app in missingAppUpdates"><a :href="'https://apps.nextcloud.com/apps/' + app.appId" :title="t('settings', 'View in store')">{{app.appName}} ↗</a></li>
</ul>
</template>
<template v-if="availableAppUpdates.length">
<h3 @click="toggleHideAvailableUpdates">
{{ t('updatenotification', 'Apps with available updates') }}
<span v-if="!hideAvailableUpdates" class="icon icon-triangle-n"></span>
<span v-if="hideAvailableUpdates" class="icon icon-triangle-s"></span>
</h3>
<ul class="applist">
<li v-for="app in availableAppUpdates" v-if="!hideAvailableUpdates"><a :href="'https://apps.nextcloud.com/apps/' + app.appId" :title="t('settings', 'View in store')">{{app.appName}} ↗</a></li>
</ul>
</template>
<div>
<a v-if="updaterEnabled" href="#" class="button primary" @click="clickUpdaterButton">{{ t('updatenotification', 'Open updater') }}</a>
<a v-if="downloadLink" :href="downloadLink" class="button" :class="{ hidden: !updaterEnabled }">{{ t('updatenotification', 'Download now') }}</a>
<div class="whatsNew" v-if="whatsNew">
<div class="toggleWhatsNew">
<a class="button" v-click-outside="hideMenu" @click="toggleMenu">{{ t('updatenotification', 'What\'s new?') }}</a>
<div class="popovermenu" :class="{ 'menu-center': true, open: openedWhatsNew }">
<popover-menu :menu="whatsNew" />
</div>
</div>
</div>
</div>
</template>
<template v-else-if="!isUpdateChecked">{{ t('updatenotification', 'The update check is not yet finished. Please refresh the page.') }}</template>
<template v-else>
{{ t('updatenotification', 'Your version is up to date.') }}
<span class="icon-info svg" v-tooltip.auto="lastCheckedOnString"></span>
</template>
<template v-if="!isDefaultUpdateServerURL">
<p class="topMargin">
<em>{{ t('updatenotification', 'A non-default update server is in use to be checked for updates:') }} <code>{{updateServerURL}}</code></em>
</p>
</template>
</div>
<h3 class="update-channel-selector">
{{ t('updatenotification', 'Update channel:') }}
<div class="update-menu">
<span class="icon-update-menu" @click="toggleUpdateChannelMenu">
{{ localizedChannelName }}
<span class="icon-triangle-s"></span>
</span>
<div class="popovermenu menu menu-center" v-bind:class="{ 'show-menu': openedUpdateChannelMenu}">
<popover-menu :menu="channelList" />
</div>
</div>
</h3>
<span id="channel_save_msg" class="msg"></span><br />
<p>
<em>{{ t('updatenotification', 'You can always update to a newer version. But you can never downgrade to a more stable version.') }}</em><br />
<em>{{ t('updatenotification', 'Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.') }}</em>
</p>
<p id="oca_updatenotification_groups">
{{ t('updatenotification', 'Notify members of the following groups about available updates:') }}
<multiselect v-model="notifyGroups" :options="availableGroups" :multiple="true" label="label" track-by="value" :tag-width="75" /><br />
<em v-if="currentChannel === 'daily' || currentChannel === 'git'">{{ t('updatenotification', 'Only notification for app updates are available.') }}</em>
<em v-if="currentChannel === 'daily'">{{ t('updatenotification', 'The selected update channel makes dedicated notifications for the server obsolete.') }}</em>
<em v-if="currentChannel === 'git'">{{ t('updatenotification', 'The selected update channel does not support updates of the server.') }}</em>
</p>
</div>
</template>
<script>
import { PopoverMenu, Multiselect } from 'nextcloud-vue';
import { VTooltip } from 'v-tooltip';
import ClickOutside from 'vue-click-outside';
export default {
name: 'root',
components: {
Multiselect,
PopoverMenu,
},
directives: {
ClickOutside,
tooltip: VTooltip
},
data: function () {
return {
newVersionString: '',
lastCheckedDate: '',
isUpdateChecked: false,
updaterEnabled: true,
versionIsEol: false,
downloadLink: '',
isNewVersionAvailable: false,
updateServerURL: '',
changelogURL: '',
whatsNewData: [],
currentChannel: '',
channels: [],
notifyGroups: '',
availableGroups: [],
isDefaultUpdateServerURL: true,
enableChangeWatcher: false,
availableAppUpdates: [],
missingAppUpdates: [],
appStoreFailed: false,
appStoreDisabled: false,
isListFetched: false,
hideMissingUpdates: false,
hideAvailableUpdates: true,
openedWhatsNew: false,
openedUpdateChannelMenu: false,
};
},
_$el: null,
_$notifyGroups: null,
watch: {
notifyGroups: function(selectedOptions) {
if (!this.enableChangeWatcher) {
return;
}
var selectedGroups = [];
_.each(selectedOptions, function(group) {
selectedGroups.push(group.value);
});
OCP.AppConfig.setValue('updatenotification', 'notify_groups', JSON.stringify(selectedGroups));
},
isNewVersionAvailable: function() {
if (!this.isNewVersionAvailable) {
return;
}
$.ajax({
url: OC.linkToOCS('apps/updatenotification/api/v1/applist', 2) + this.newVersion,
type: 'GET',
beforeSend: function (request) {
request.setRequestHeader('Accept', 'application/json');
},
success: function(response) {
this.availableAppUpdates = response.ocs.data.available;
this.missingAppUpdates = response.ocs.data.missing;
this.isListFetched = true;
this.appStoreFailed = false;
}.bind(this),
error: function(xhr) {
this.availableAppUpdates = [];
this.missingAppUpdates = [];
this.appStoreDisabled = xhr.responseJSON.ocs.data.appstore_disabled;
this.isListFetched = true;
this.appStoreFailed = true;
}.bind(this)
});
}
},
computed: {
newVersionAvailableString: function() {
return t('updatenotification', 'A new version is available: <strong>{newVersionString}</strong>', {
newVersionString: this.newVersionString
});
},
lastCheckedOnString: function() {
return t('updatenotification', 'Checked on {lastCheckedDate}', {
lastCheckedDate: this.lastCheckedDate
});
},
statusText: function() {
if (!this.isListFetched) {
return t('updatenotification', 'Checking apps for compatible updates');
}
if (this.appStoreDisabled) {
return t('updatenotification', 'Please make sure your config.php does not set <samp>appstoreenabled</samp> to false.');
}
if (this.appStoreFailed) {
return t('updatenotification', 'Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore.');
}
return this.missingAppUpdates.length === 0 ? t('updatenotification', '<strong>All</strong> apps have an update for this version available', this) : n('updatenotification',
'<strong>%n</strong> app has no update for this version available',
'<strong>%n</strong> apps have no update for this version available',
this.missingAppUpdates.length);
},
whatsNew: function() {
if(this.whatsNewData.length === 0) {
return null;
}
var whatsNew = [];
for (var i in this.whatsNewData) {
whatsNew[i] = { icon: 'icon-checkmark', longtext: this.whatsNewData[i] };
}
if(this.changelogURL) {
whatsNew.push({
href: this.changelogURL,
text: t('updatenotificaiton', 'View changelog'),
icon: 'icon-link',
target: '_blank',
action: ''
});
}
return whatsNew;
},
channelList: function() {
let channelList = [];
channelList.push({
text: t('updatenotificaiton', 'Stable'),
longtext: t('updatenotification', 'The most recent stable version. It is suited for regular use and will always update to the latest major version.'),
icon: 'icon-checkmark',
active: this.currentChannel === 'stable',
action: this.changeReleaseChannelToStable
});
channelList.push({
text: t('updatenotificaiton', 'Production'),
longtext: t('updatenotification', 'Will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2) and only if the instance is already on the latest minor version.'),
icon: 'icon-star',
active: this.currentChannel === 'production',
action: this.changeReleaseChannelToProduction
});
channelList.push({
text: t('updatenotificaiton', 'Beta'),
longtext: t('updatenotification', 'A pre-release version only for testing new features, not for production environments.'),
icon: 'icon-category-customization',
active: this.currentChannel === 'beta',
action: this.changeReleaseChannelToBeta
});
if (this.isNonDefaultChannel) {
channelList.push({
text: this.currentChannel,
icon: 'icon-rename',
active: true
});
}
return channelList;
},
isNonDefaultChannel: function() {
return this.currentChannel !== 'production' && this.currentChannel !== 'stable' && this.currentChannel !== 'beta';
},
localizedChannelName: function() {
switch (this.currentChannel) {
case 'production':
return t('updatenotificaiton', 'Production');
break;
case 'stable':
return t('updatenotificaiton', 'Stable');
break;
case 'beta':
return t('updatenotificaiton', 'Beta');
break;
default:
return this.currentChannel;
break;
}
}
},
methods: {
/**
* Creates a new authentication token and loads the updater URL
*/
clickUpdaterButton: function() {
$.ajax({
url: OC.generateUrl('/apps/updatenotification/credentials')
}).success(function(token) {
// create a form to send a proper post request to the updater
var form = document.createElement('form');
form.setAttribute('method', 'post');
form.setAttribute('action', OC.getRootPath() + '/updater/');
var hiddenField = document.createElement('input');
hiddenField.setAttribute('type', 'hidden');
hiddenField.setAttribute('name', 'updater-secret-input');
hiddenField.setAttribute('value', token);
form.appendChild(hiddenField);
document.body.appendChild(form);
form.submit();
}.bind(this));
},
changeReleaseChannelToStable: function() {
this.changeReleaseChannel('stable')
},
changeReleaseChannelToProduction: function() {
this.changeReleaseChannel('production')
},
changeReleaseChannelToBeta: function() {
this.changeReleaseChannel('beta')
},
changeReleaseChannel: function(channel) {
this.currentChannel = channel;
$.ajax({
url: OC.generateUrl('/apps/updatenotification/channel'),
type: 'POST',
data: {
'channel': this.currentChannel
},
success: function (data) {
OC.msg.finishedAction('#channel_save_msg', data);
}
});
this.openedUpdateChannelMenu = false;
},
toggleUpdateChannelMenu: function() {
this.openedUpdateChannelMenu = !this.openedUpdateChannelMenu;
},
toggleHideMissingUpdates: function() {
this.hideMissingUpdates = !this.hideMissingUpdates;
},
toggleHideAvailableUpdates: function() {
this.hideAvailableUpdates = !this.hideAvailableUpdates;
},
toggleMenu: function() {
this.openedWhatsNew = !this.openedWhatsNew;
},
hideMenu: function() {
this.openedWhatsNew = false;
},
},
beforeMount: function() {
// Parse server data
var data = JSON.parse($('#updatenotification').attr('data-json'));
this.newVersion = data.newVersion;
this.newVersionString = data.newVersionString;
this.lastCheckedDate = data.lastChecked;
this.isUpdateChecked = data.isUpdateChecked;
this.updaterEnabled = data.updaterEnabled;
this.downloadLink = data.downloadLink;
this.isNewVersionAvailable = data.isNewVersionAvailable;
this.updateServerURL = data.updateServerURL;
this.currentChannel = data.currentChannel;
this.channels = data.channels;
this.notifyGroups = data.notifyGroups;
this.isDefaultUpdateServerURL = data.isDefaultUpdateServerURL;
this.versionIsEol = data.versionIsEol;
if(data.changes && data.changes.changelogURL) {
this.changelogURL = data.changes.changelogURL;
}
if(data.changes && data.changes.whatsNew) {
if(data.changes.whatsNew.admin) {
this.whatsNewData = this.whatsNewData.concat(data.changes.whatsNew.admin);
}
this.whatsNewData = this.whatsNewData.concat(data.changes.whatsNew.regular);
}
},
mounted: function () {
this._$el = $(this.$el);
this._$notifyGroups = this._$el.find('#oca_updatenotification_groups_list');
this._$notifyGroups.on('change', function () {
this.$emit('input');
}.bind(this));
$.ajax({
url: OC.linkToOCS('cloud', 2)+ '/groups',
dataType: 'json',
success: function(data) {
var results = [];
$.each(data.ocs.data.groups, function(i, group) {
results.push({value: group, label: group});
});
this.availableGroups = results;
this.enableChangeWatcher = true;
}.bind(this)
});
}
}
</script>
<style lang="scss" scoped>
#updatenotification {
margin-top: -25px;
margin-bottom: 200px;
div.update,
p:not(.inlineblock) {
margin-bottom: 25px;
}
h2.inlineblock {
margin-top: 25px;
}
h3 {
cursor: pointer;
.icon {
cursor: pointer;
}
&:first-of-type {
margin-top: 0;
}
&.update-channel-selector {
display: inline-block;
cursor: inherit;
}
}
.icon {
display: inline-block;
margin-bottom: -3px;
}
.icon-triangle-s, .icon-triangle-n {
opacity: 0.5;
}
.whatsNew {
display: inline-block;
}
.toggleWhatsNew {
position: relative;
}
.popovermenu {
p {
margin-bottom: 0;
width: 100%;
}
margin-top: 5px;
width: 300px;
}
.applist {
margin-bottom: 25px;
}
.update-menu {
position: relative;
cursor: pointer;
margin-left: 3px;
display: inline-block;
.icon-update-menu {
cursor: inherit;
.icon-triangle-s {
display: inline-block;
vertical-align: middle;
cursor: inherit;
opacity: 1;
}
}
.popovermenu {
display: none;
top: 28px;
&.show-menu {
display: block;
}
}
}
}
</style>
<style lang="scss">
/* override needed to make menu wider */
#updatenotification .popovermenu {
p {
margin-top: 5px;
width: 100%;
}
margin-top: 5px;
width: 300px;
}
/* override needed to replace yellow hover state with a dark one */
#updatenotification .update-menu .icon-star:hover,
#updatenotification .update-menu .icon-star:focus {
background-image: var(--icon-star-000);
}
#updatenotification .topMargin {
margin-top: 15px;
}
</style>