Skip to content
Snippets Groups Projects
Commit 87b58c63 authored by JotaJota96's avatar JotaJota96
Browse files

Merge desde CarlosRama hacia pre_master

parents 6bbe895b 3ed5cee8
No related branches found
No related tags found
No related merge requests found
...@@ -5,29 +5,40 @@ import java.sql.Date; ...@@ -5,29 +5,40 @@ import java.sql.Date;
import java.util.ArrayList; import java.util.ArrayList;
public class Comentario { public class Comentario {
private static int contadorComentarios = 1; private static int contadorComentarios = 1;
private int id; private int id;
private Date fecha; private Date fecha;
private String texto; private String texto;
private int nivelSubComentario; private int nivelSubComentario;
private Usuario usr; private Usuario usr;
private ArrayList<Comentario> misComentario;
public Comentario() { public Comentario() {
this.id = Comentario.getNuevoID();
this.misComentario = new ArrayList();
} }
public Comentario(int id, Date fecha, String texto, int nivelSubComentario, Usuario usr) { public Comentario(int id, Date fecha, String texto, int nivelSubComentario, Usuario usr) {
if(usr==null){
throw new RuntimeException("Usuario No puede ser null");
}
if(fecha==null){
throw new RuntimeException("Date No puede ser null");
}
this.id = id; this.id = id;
this.fecha = fecha; this.fecha = fecha;
this.texto = texto; this.texto = texto;
this.nivelSubComentario = nivelSubComentario; this.nivelSubComentario = nivelSubComentario;
this.usr = usr; this.usr = usr;
this.misComentario = new ArrayList();
} }
public static int getNuevoID(){ public static int getNuevoID() {
return contadorComentarios++; return contadorComentarios++;
} }
public int getId() { public int getId() {
return id; return id;
} }
...@@ -41,6 +52,9 @@ public class Comentario { ...@@ -41,6 +52,9 @@ public class Comentario {
} }
public void setFecha(Date fecha) { public void setFecha(Date fecha) {
if(fecha==null){
throw new RuntimeException("Fecha No puede ser null");
}
this.fecha = fecha; this.fecha = fecha;
} }
...@@ -64,23 +78,49 @@ public class Comentario { ...@@ -64,23 +78,49 @@ public class Comentario {
return usr; return usr;
} }
public void setUsr(Usuario usr) { @Override
this.usr = usr; public String toString() {
return "Comentario{" + "id=" + id + ", fecha=" + fecha + ", texto=" + texto + ", nivelSubComentario=" + nivelSubComentario + '}';
} }
public boolean agregarSubComentario(int idComPadre, DtComentario dtC, Usuario usr) {
public boolean agregarSubComentario(int idComPadre, DtComentario dtC, Usuario usr){ if(dtC==null){
return true; throw new RuntimeException("DtComentario No puede ser null");
}
if(usr==null){
throw new RuntimeException("Usuario No puede ser null");
}
if (this.id == idComPadre) {
Comentario com = new Comentario(Comentario.getNuevoID(),
dtC.getFecha(),
dtC.getTexto(),
this.nivelSubComentario + 1,
usr);
this.misComentario.add(com);
return true;
} else {
for (int i = 0; i < misComentario.size(); i++) {
if (this.misComentario.get(i).agregarSubComentario(idComPadre, dtC, usr)) {
return true;
}
}
return false;
}
} }
public DtComentario getDT(){ public DtComentario getDT() {
DtComentario dtC = new DtComentario(this.id, this.usr.getNickname(), this.fecha, this.texto, this.nivelSubComentario); DtComentario dtC = new DtComentario(this.id, this.usr.getNickname(), this.fecha, this.texto, this.nivelSubComentario);
return dtC; return dtC;
} }
public ArrayList<DtComentario> listarSubComentarios(){ public ArrayList<DtComentario> listarSubComentarios() {
return new ArrayList(); ArrayList lsc = new ArrayList();
for (int i = 0; i < this.misComentario.size(); i++) {
lsc.add(this.misComentario.get(i).getDT());
lsc.addAll(this.misComentario.get(i).listarSubComentarios());
}
return lsc;
} }
} }
...@@ -11,6 +11,9 @@ public class Valoracion { ...@@ -11,6 +11,9 @@ public class Valoracion {
} }
public Valoracion(TipoValoracion val, Usuario usr) { public Valoracion(TipoValoracion val, Usuario usr) {
if(usr==null){
throw new RuntimeException("Usuario No puede ser null");
}
this.val = val; this.val = val;
this.usr = usr; this.usr = usr;
} }
...@@ -26,16 +29,15 @@ public class Valoracion { ...@@ -26,16 +29,15 @@ public class Valoracion {
public Usuario getUsr() { public Usuario getUsr() {
return usr; return usr;
} }
public void setUsr(Usuario usr) {
this.usr = usr;
}
private DtValoracion getDT(){ public DtValoracion getDT(){
DtValoracion dtV = new DtValoracion(this.val, this.usr.getNickname()); DtValoracion dtV = new DtValoracion(this.val, this.usr.getNickname());
return dtV; return dtV;
} }
private DtValoracion getDT(String nickname){ public DtValoracion getDT(String nickname){
if(nickname==null){
throw new RuntimeException("Nickname No puede ser null");
}
// si esta valoracion corresponde al usuario, devuelve su DT, sino null // si esta valoracion corresponde al usuario, devuelve su DT, sino null
if (nickname.equals(this.usr.getNickname())){ if (nickname.equals(this.usr.getNickname())){
return this.getDT(); return this.getDT();
...@@ -43,7 +45,13 @@ public class Valoracion { ...@@ -43,7 +45,13 @@ public class Valoracion {
return null; return null;
} }
} }
private boolean modificar(DtValoracion dtV, String nickname){ public boolean modificar(DtValoracion dtV, String nickname){
if(dtV==null){
throw new RuntimeException("DtValoracion No puede ser null");
}
if(nickname==null){
throw new RuntimeException("Nickname No puede ser null");
}
if (nickname.equals(this.usr.getNickname())){ if (nickname.equals(this.usr.getNickname())){
this.val = dtV.getVal(); this.val = dtV.getVal();
return true; return true;
......
...@@ -4,6 +4,6 @@ import Logica.*; ...@@ -4,6 +4,6 @@ import Logica.*;
public class main { public class main {
public static void main(String[] args) { public static void main(String[] args) {
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment