BrightSide Workbench Full Report + Source Code
MyContactsSet.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2016 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.contacts.www;
20 
21 import java.util.Collection;
22 import java.util.List;
23 import org.turro.string.Strings;
24 import org.turro.action.IMyContact;
25 import org.turro.annotation.MyContact;
26 import org.turro.contacts.Contact;
27 import org.turro.contacts.db.ContactsPU;
28 import org.turro.elephant.context.IConstructor;
29 import org.turro.elephant.db.WhereClause;
30 import org.turro.i18n.I_;
31 import org.turro.jpa.Dao;
32 import org.turro.plugin.contacts.ContactSortedSet;
33 import org.turro.plugin.contacts.IContact;
34 
39 @MyContact
40 public class MyContactsSet implements IMyContact {
41 
42  @Override
43  public Collection<IContact> getMyContacts(IConstructor constructor, String search) {
44  ContactSortedSet css = new ContactSortedSet(I_.api().used());
45  if(!Strings.isBlank(search)) {
46  if(constructor.isInRole("contact:all") || constructor.isInRole("contact:list-all")) {
47  Dao dao = new ContactsPU();
48  for(Contact c : (List<Contact>) dao.getResultList(createCriteria(search))) {
49  IContact dc= c.getIContact();
50  css.add(dc);
51  for(IContact cc : dc.getRelations()) {
52  css.add(cc);
53  }
54  }
55  }
56  }
57  return css;
58  }
59 
60  private WhereClause createCriteria(String search) {
61  WhereClause wc = new WhereClause();
62  wc.addClause("select distinct c from Contact as c");
63  wc.addClause("left join c.connectors as o");
64  wc.addClause("where 1=1");
65  wc.addLikeFields(new String[] { "c.name", "o.value" }, search);
66  return wc;
67  }
68 
69 }
Collection< IContact > getMyContacts(IConstructor constructor, String search)
void addLikeFields(String[] fields, String value)
static I18nApiWrapper api()
Definition: I_.java:65
List< IContact > getRelations(String id)