/* * Copyright (C) 2015-2017 PÂRIS Quentin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package org.phoenicis.cli.scriptui; import org.phoenicis.scripts.ui.*; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import java.util.Scanner; @Configuration public class CliUiConfiguration implements UiConfiguration { @Override @Bean public SetupUiFactory setupUiFactory() { return title -> new SetupUiCliImplementation(title, true, true); } @Override @Bean public UiMessageSender uiMessageSender() { return new CliMessageSender(); } @Override @Bean public UiQuestionFactory uiQuestionFactory() { return (questionText, yesCallback, noCallback) -> { String answer = ""; while (!"yes".equals(answer) && !"no".equals(answer)) { System.out.println(questionText); System.out.print("Please enter: [yes, no] "); Scanner input = new Scanner(System.in); answer = input.nextLine(); switch (answer) { case "yes": yesCallback.run(); break; case "no": noCallback.run(); break; } } }; } @Override public ProgressUiFactory progressUiFactory() { return title -> new ProgressUiCliImplementation(title, true, true); } }