/
akolonin
/
aigents-java
Обзор
Документация
Войти
/
akolonin
/
aigents-java
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/net/webstructor/peer/Verification.java
99 строк
3 KB
Anton Kolonin
2.9.5 Configurable Responser and its Intenters for Conversationer
07 июл 2020, 21:15
07 июл 2020, 21:15
cd03451
Код
Авторство
О чём код?
/* * MIT License * * Copyright (c) 2005-2020 by Anton Kolonin, Aigents® * * 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. */ package net.webstructor.peer; import net.webstructor.agent.Body; import net.webstructor.al.AL; import net.webstructor.al.All; import net.webstructor.al.Reader; import net.webstructor.al.Seq; import net.webstructor.al.Writer; class Verification extends Registration { public boolean process(Session session) { //TODO: this here or at the bottom!? //if (noSecretQuestion(session)) // return answer(session,session.getStoredPeer()); Peer temp = new Peer(); check(session); if (q == null || a == null) { session.responser = new Registration(); session.expect(null); return true; } if (Reader.read(session.input(), cancel_pattern)) { session.responser = new Login(); session.peer = null; session.expect(null); return true; } Seq seq = Reader.pattern(AL.i_my,temp,new String[] {q}); if (session.mood != AL.interrogation && (Reader.read(session.input(), seq) || (session.expected() != null && Reader.read(session.input(),Reader.pattern(temp, session.expected()),",")) )) { String answer = temp.getString(q); if (a.equalsIgnoreCase(answer)) { session.responser = session.sessioner.body.getResponser(); session.output(session.welcome()); try { String email = session.peer.getString(AL.email); Peer.populateContent(session,Body.testEmail(email)); } catch (Exception e) { session.addOutput(" " + statement(e)); session.sessioner.body.error(e.toString(), e); } session.fails = 0; session.expect(null); return false; } if (++session.fails >= 4){ session.responser = new Login(); session.clear(); session.expect(null); return true; } } else { if (session.mood == AL.interrogation){ //'what my $secret_question?' => back to verirfication if (q != null && session.read(Reader.pattern(AL.i_my,new String[] {q,Peer.secret_question,Peer.secret_answer}))){ session.responser = new VerificationChange(); session.expect(null); return true; } //TODO: get out of this junk which causes dead loop!!!??? //any other question => back to conversation //else{ // session.mode = new Conversation(); // return true; //} } } session.output(Writer.what("your", session.peer, new All(new String[]{q}))); return false; } }