2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
2011-07-01 18:43:26 +02:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
2011-07-01 18:43:26 +02:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* 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:
|
2011-07-01 18:43:26 +02:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
2011-07-01 18:43:26 +02:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* 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.
|
2011-07-01 18:43:26 +02:00
|
|
|
*/
|
2020-05-03 15:41:03 +02:00
|
|
|
|
2011-07-01 18:43:26 +02:00
|
|
|
package sonia.scm.web;
|
|
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
import com.google.inject.servlet.ServletModule;
|
2018-08-02 10:59:34 +02:00
|
|
|
import org.mapstruct.factory.Mappers;
|
|
|
|
|
import sonia.scm.api.v2.resources.HgConfigDtoToHgConfigMapper;
|
2018-08-02 18:36:28 +02:00
|
|
|
import sonia.scm.api.v2.resources.HgConfigInstallationsToDtoMapper;
|
2018-08-07 16:47:03 +02:00
|
|
|
import sonia.scm.api.v2.resources.HgConfigPackagesToDtoMapper;
|
2018-08-02 10:59:34 +02:00
|
|
|
import sonia.scm.api.v2.resources.HgConfigToHgConfigDtoMapper;
|
2012-04-05 16:50:41 +02:00
|
|
|
import sonia.scm.installer.HgPackageReader;
|
2014-03-29 09:51:17 +01:00
|
|
|
import sonia.scm.plugin.Extension;
|
2011-10-08 15:31:10 +02:00
|
|
|
import sonia.scm.repository.HgContext;
|
2013-09-27 17:59:53 +02:00
|
|
|
import sonia.scm.repository.HgContextProvider;
|
2011-07-22 13:08:12 +02:00
|
|
|
import sonia.scm.repository.HgHookManager;
|
2020-05-03 15:41:03 +02:00
|
|
|
import sonia.scm.repository.spi.HgWorkingCopyFactory;
|
|
|
|
|
import sonia.scm.repository.spi.SimpleHgWorkingCopyFactory;
|
2011-07-01 18:43:26 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
*/
|
|
|
|
|
@Extension
|
|
|
|
|
public class HgServletModule extends ServletModule
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
public static final String MAPPING_HG = "/hg/*";
|
|
|
|
|
|
2011-08-07 16:35:51 +02:00
|
|
|
/** Field description */
|
|
|
|
|
public static final String MAPPING_HOOK = "/hook/hg/*";
|
|
|
|
|
|
2011-07-01 18:43:26 +02:00
|
|
|
//~--- methods --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
protected void configureServlets()
|
|
|
|
|
{
|
2013-09-27 17:59:53 +02:00
|
|
|
bind(HgContext.class).toProvider(HgContextProvider.class);
|
2011-07-22 13:08:12 +02:00
|
|
|
bind(HgHookManager.class);
|
2012-04-05 16:50:41 +02:00
|
|
|
bind(HgPackageReader.class);
|
|
|
|
|
|
2018-08-02 10:59:34 +02:00
|
|
|
bind(HgConfigDtoToHgConfigMapper.class).to(Mappers.getMapper(HgConfigDtoToHgConfigMapper.class).getClass());
|
|
|
|
|
bind(HgConfigToHgConfigDtoMapper.class).to(Mappers.getMapper(HgConfigToHgConfigDtoMapper.class).getClass());
|
2018-08-07 16:47:03 +02:00
|
|
|
bind(HgConfigPackagesToDtoMapper.class).to(Mappers.getMapper(HgConfigPackagesToDtoMapper.class).getClass());
|
2018-08-02 18:36:28 +02:00
|
|
|
bind(HgConfigInstallationsToDtoMapper.class);
|
2018-08-02 10:59:34 +02:00
|
|
|
|
2012-04-05 16:50:41 +02:00
|
|
|
// bind servlets
|
2011-08-07 16:35:51 +02:00
|
|
|
serve(MAPPING_HOOK).with(HgHookCallbackServlet.class);
|
2019-03-27 10:08:20 +01:00
|
|
|
|
2020-05-03 15:41:03 +02:00
|
|
|
bind(HgWorkingCopyFactory.class).to(SimpleHgWorkingCopyFactory.class);
|
2011-07-01 18:43:26 +02:00
|
|
|
}
|
|
|
|
|
}
|