mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
* prepare license-maven-plugin for license migration * added license mapping for tsx files and added some more excludes * Changeover to MIT license * Fix build problems * Delete old remaining licenses * Add more exclude path for license checker * Rename included netbeans license, add exclude .m2/repository/ * Specify .m2 exclude because not only repository/, also wrapper/ must match * Add .cache/ exclude for license check * Modify formatting of license in java classes to comply with convention and IDE * Add IntelliJ documentation for license configuration * Update CHANGELOG.md * Exclude tmp/workspace/ dir for license check * Edit README.md Co-authored-by: Sebastian Sdorra <sebastian.sdorra@cloudogu.com>
278 lines
7.5 KiB
TypeScript
278 lines
7.5 KiB
TypeScript
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
import * as types from "../../../modules/types";
|
|
import { isPending } from "../../../modules/pending";
|
|
import { getFailure } from "../../../modules/failure";
|
|
import { Action, Plugin, PluginCollection } from "@scm-manager/ui-types";
|
|
import { apiClient } from "@scm-manager/ui-components";
|
|
|
|
export const FETCH_PLUGINS = "scm/plugins/FETCH_PLUGINS";
|
|
export const FETCH_PLUGINS_PENDING = `${FETCH_PLUGINS}_${types.PENDING_SUFFIX}`;
|
|
export const FETCH_PLUGINS_SUCCESS = `${FETCH_PLUGINS}_${types.SUCCESS_SUFFIX}`;
|
|
export const FETCH_PLUGINS_FAILURE = `${FETCH_PLUGINS}_${types.FAILURE_SUFFIX}`;
|
|
|
|
export const FETCH_PLUGIN = "scm/plugins/FETCH_PLUGIN";
|
|
export const FETCH_PLUGIN_PENDING = `${FETCH_PLUGIN}_${types.PENDING_SUFFIX}`;
|
|
export const FETCH_PLUGIN_SUCCESS = `${FETCH_PLUGIN}_${types.SUCCESS_SUFFIX}`;
|
|
export const FETCH_PLUGIN_FAILURE = `${FETCH_PLUGIN}_${types.FAILURE_SUFFIX}`;
|
|
|
|
export const FETCH_PENDING_PLUGINS = "scm/plugins/FETCH_PENDING_PLUGINS";
|
|
export const FETCH_PENDING_PLUGINS_PENDING = `${FETCH_PENDING_PLUGINS}_${types.PENDING_SUFFIX}`;
|
|
export const FETCH_PENDING_PLUGINS_SUCCESS = `${FETCH_PENDING_PLUGINS}_${types.SUCCESS_SUFFIX}`;
|
|
export const FETCH_PENDING_PLUGINS_FAILURE = `${FETCH_PENDING_PLUGINS}_${types.FAILURE_SUFFIX}`;
|
|
|
|
// fetch plugins
|
|
export function fetchPluginsByLink(link: string) {
|
|
return function(dispatch: any) {
|
|
dispatch(fetchPluginsPending());
|
|
return apiClient
|
|
.get(link)
|
|
.then(response => response.json())
|
|
.then(plugins => {
|
|
dispatch(fetchPluginsSuccess(plugins));
|
|
})
|
|
.catch(err => {
|
|
dispatch(fetchPluginsFailure(err));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function fetchPluginsPending(): Action {
|
|
return {
|
|
type: FETCH_PLUGINS_PENDING
|
|
};
|
|
}
|
|
|
|
export function fetchPluginsSuccess(plugins: PluginCollection): Action {
|
|
return {
|
|
type: FETCH_PLUGINS_SUCCESS,
|
|
payload: plugins
|
|
};
|
|
}
|
|
|
|
export function fetchPluginsFailure(err: Error): Action {
|
|
return {
|
|
type: FETCH_PLUGINS_FAILURE,
|
|
payload: err
|
|
};
|
|
}
|
|
|
|
// fetch plugin
|
|
export function fetchPluginByLink(plugin: Plugin) {
|
|
return fetchPlugin(plugin._links.self.href, plugin.name);
|
|
}
|
|
|
|
export function fetchPluginByName(link: string, name: string) {
|
|
const pluginUrl = link.endsWith("/") ? link : link + "/";
|
|
return fetchPlugin(pluginUrl + name, name);
|
|
}
|
|
|
|
function fetchPlugin(link: string, name: string) {
|
|
return function(dispatch: any) {
|
|
dispatch(fetchPluginPending(name));
|
|
return apiClient
|
|
.get(link)
|
|
.then(response => response.json())
|
|
.then(plugin => {
|
|
dispatch(fetchPluginSuccess(plugin));
|
|
})
|
|
.catch(err => {
|
|
dispatch(fetchPluginFailure(name, err));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function fetchPluginPending(name: string): Action {
|
|
return {
|
|
type: FETCH_PLUGIN_PENDING,
|
|
payload: {
|
|
name
|
|
},
|
|
itemId: name
|
|
};
|
|
}
|
|
|
|
export function fetchPluginSuccess(plugin: Plugin): Action {
|
|
return {
|
|
type: FETCH_PLUGIN_SUCCESS,
|
|
payload: plugin,
|
|
itemId: plugin.name
|
|
};
|
|
}
|
|
|
|
export function fetchPluginFailure(name: string, error: Error): Action {
|
|
return {
|
|
type: FETCH_PLUGIN_FAILURE,
|
|
payload: {
|
|
name,
|
|
error
|
|
},
|
|
itemId: name
|
|
};
|
|
}
|
|
|
|
// fetch pending plugins
|
|
export function fetchPendingPlugins(link: string) {
|
|
return function(dispatch: any) {
|
|
dispatch(fetchPendingPluginsPending());
|
|
return apiClient
|
|
.get(link)
|
|
.then(response => response.json())
|
|
.then(PendingPlugins => {
|
|
dispatch(fetchPendingPluginsSuccess(PendingPlugins));
|
|
})
|
|
.catch(err => {
|
|
dispatch(fetchPendingPluginsFailure(err));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function fetchPendingPluginsPending(): Action {
|
|
return {
|
|
type: FETCH_PENDING_PLUGINS_PENDING
|
|
};
|
|
}
|
|
|
|
export function fetchPendingPluginsSuccess(PendingPlugins: {}): Action {
|
|
return {
|
|
type: FETCH_PENDING_PLUGINS_SUCCESS,
|
|
payload: PendingPlugins
|
|
};
|
|
}
|
|
|
|
export function fetchPendingPluginsFailure(err: Error): Action {
|
|
return {
|
|
type: FETCH_PENDING_PLUGINS_FAILURE,
|
|
payload: err
|
|
};
|
|
}
|
|
|
|
// reducer
|
|
function normalizeByName(state: object, pluginCollection: PluginCollection) {
|
|
const names = [];
|
|
const byNames = {};
|
|
for (const plugin of pluginCollection._embedded.plugins) {
|
|
names.push(plugin.name);
|
|
byNames[plugin.name] = plugin;
|
|
}
|
|
return {
|
|
...state,
|
|
list: {
|
|
...pluginCollection,
|
|
_embedded: {
|
|
plugins: names
|
|
}
|
|
},
|
|
byNames: byNames
|
|
};
|
|
}
|
|
|
|
const reducerByNames = (state: object, plugin: Plugin) => {
|
|
return {
|
|
...state,
|
|
byNames: {
|
|
...state.byNames,
|
|
[plugin.name]: plugin
|
|
}
|
|
};
|
|
};
|
|
|
|
export default function reducer(
|
|
state: object = {},
|
|
action: Action = {
|
|
type: "UNKNOWN"
|
|
}
|
|
): object {
|
|
if (!action.payload) {
|
|
return state;
|
|
}
|
|
|
|
switch (action.type) {
|
|
case FETCH_PLUGINS_SUCCESS:
|
|
return normalizeByName(state, action.payload);
|
|
case FETCH_PLUGIN_SUCCESS:
|
|
return reducerByNames(state, action.payload);
|
|
case FETCH_PENDING_PLUGINS_SUCCESS:
|
|
return {
|
|
...state,
|
|
pending: action.payload
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|
|
// selectors
|
|
export function getPluginCollection(state: object) {
|
|
if (state.plugins && state.plugins.list && state.plugins.byNames) {
|
|
const plugins = [];
|
|
for (const pluginName of state.plugins.list._embedded.plugins) {
|
|
plugins.push(state.plugins.byNames[pluginName]);
|
|
}
|
|
return {
|
|
...state.plugins.list,
|
|
_embedded: {
|
|
plugins
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
export function isFetchPluginsPending(state: object) {
|
|
return isPending(state, FETCH_PLUGINS);
|
|
}
|
|
|
|
export function getFetchPluginsFailure(state: object) {
|
|
return getFailure(state, FETCH_PLUGINS);
|
|
}
|
|
|
|
export function getPlugin(state: object, name: string) {
|
|
if (state.plugins && state.plugins.byNames) {
|
|
return state.plugins.byNames[name];
|
|
}
|
|
}
|
|
|
|
export function isFetchPluginPending(state: object, name: string) {
|
|
return isPending(state, FETCH_PLUGIN, name);
|
|
}
|
|
|
|
export function getFetchPluginFailure(state: object, name: string) {
|
|
return getFailure(state, FETCH_PLUGIN, name);
|
|
}
|
|
|
|
export function getPendingPlugins(state: object) {
|
|
if (state.plugins && state.plugins.pending) {
|
|
return state.plugins.pending;
|
|
}
|
|
}
|
|
|
|
export function isFetchPendingPluginsPending(state: object) {
|
|
return isPending(state, FETCH_PENDING_PLUGINS);
|
|
}
|
|
|
|
export function getFetchPendingPluginsFailure(state: object) {
|
|
return getFailure(state, FETCH_PENDING_PLUGINS);
|
|
}
|