forked from GoteoFoundation/goteo-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.php
2347 lines (2040 loc) · 94.2 KB
/
project.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* Copyright (C) 2012 Platoniq y Fundación Fuentes Abiertas (see README for details)
* This file is part of Goteo.
*
* Goteo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Goteo 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Goteo. If not, see <http://www.gnu.org/licenses/agpl.txt>.
*
*/
namespace Goteo\Model {
use Goteo\Core\ACL,
Goteo\Library\Check,
Goteo\Library\Text,
Goteo\Model\User,
Goteo\Model\Image,
Goteo\Model\Message;
class Project extends \Goteo\Core\Model {
public
$id = null,
$dontsave = false,
$owner, // User who created it
$node, // Node this project belongs to
$status,
$progress, // puntuation %
$amount, // Current donated amount
$user, // owner's user information
// Register contract data
$contract_name, // Nombre y apellidos del responsable del proyecto
$contract_nif, // Guardar sin espacios ni puntos ni guiones
$contract_email, // cuenta paypal
$phone, // guardar sin espacios ni puntos
// Para marcar física o jurídica
$contract_entity = false, // false = física (persona) true = jurídica (entidad)
// Para persona física
$contract_birthdate,
// Para entidad jurídica
$entity_office, // cargo del responsable dentro de la entidad
$entity_name, // denomincion social de la entidad
$entity_cif, // CIF de la entidad
// Campos de Domicilio: Igual para persona o entidad
$address,
$zipcode,
$location, // owner's location
$country,
// Domicilio postal
$secondary_address = false, // si es diferente al domicilio fiscal
$post_address = null,
$post_zipcode = null,
$post_location = null,
$post_country = null,
// Edit project description
$name,
$subtitle,
$lang = 'es',
$image,
$gallery = array(), // array de instancias image de project_image
$secGallery = array(), // array de instancias image de project_image (secundarias)
$description,
$motivation,
$video, // video de motivacion
$video_usubs, // universal subtitles para el video de motivacion
$about,
$goal,
$related,
$reward, // nueva sección, solo editable por admines y traductores
$categories = array(),
$media, // video principal
$media_usubs, // universal subtitles para el video principal
$keywords, // por ahora se guarda en texto tal cual
$currently, // Current development status of the project
$project_location, // project execution location
$scope, // ambito de alcance
$translate, // si se puede traducir (bool)
// costs
$costs = array(), // project\cost instances with type
$schedule, // picture of the costs schedule
$resource, // other current resources
// Rewards
$social_rewards = array(), // instances of project\reward for the public (collective type)
$individual_rewards = array(), // instances of project\reward for investors (individual type)
// Collaborations
$supports = array(), // instances of project\support
// Comment
$comment, // Comentario para los admin introducido por el usuario
//Operative purpose properties
$mincost = 0,
$maxcost = 0,
//Obtenido, Días, Cofinanciadores
$invested = 0, //cantidad de inversión
$days = 0, //para 40 desde la publicación o para 80 si no está caducado
$investors = array(), // aportes individuales a este proyecto
$num_investors = 0, // numero de usuarios que han aportado
$round = 0, // para ver si ya está en la fase de los 40 a los 80
$passed = null, // para ver si hemos hecho los eventos de paso a segunda ronda
$willpass = null, // fecha final de primera ronda
$errors = array(), // para los fallos en los datos
$okeys = array(), // para los campos que estan ok
// para puntuacion
$score = 0, //puntos
$max = 0, // maximo de puntos
$messages = array(), // mensajes de los usuarios hilos con hijos
$finishable = false, // llega al progresso mínimo para enviar a revision
$tagmark = null; // banderolo a mostrar
/**
* Sobrecarga de métodos 'getter'.
*
* @param type string $name
* @return type mixed
*/
public function __get ($name) {
if($name == "allowpp") {
return Project\Account::getAllowpp($this->id);
}
if($name == "budget") {
return self::calcCosts($this->id);
}
return $this->$name;
}
/**
* Inserta un proyecto con los datos mínimos
*
* @param array $data
* @return boolean
*/
public function create ($node = \GOTEO_NODE, &$errors = array()) {
$user = $_SESSION['user']->id;
if (empty($user)) {
return false;
}
// cojemos el número de proyecto de este usuario
$query = self::query("SELECT COUNT(id) as num FROM project WHERE owner = ?", array($user));
if ($now = $query->fetchObject())
$num = $now->num + 1;
else
$num = 1;
// datos del usuario que van por defecto: name->contract_name, location->location
$userProfile = User::get($user);
// datos del userpersonal por defecto a los cammpos del paso 2
$userPersonal = User::getPersonal($user);
$values = array(
':id' => md5($user.'-'.$num),
':name' => Text::_("El nuevo proyecto de ").$userProfile->name,
':lang' => 'es',
':status' => 1,
':progress' => 0,
':owner' => $user,
':node' => $node,
':amount' => 0,
':days' => 0,
':created' => date('Y-m-d'),
':contract_name' => ($userPersonal->contract_name) ?
$userPersonal->contract_name :
$userProfile->name,
':contract_nif' => $userPersonal->contract_nif,
':phone' => $userPersonal->phone,
':address' => $userPersonal->address,
':zipcode' => $userPersonal->zipcode,
':location' => ($userPersonal->location) ?
$userPersonal->location :
$userProfile->location,
':country' => ($userPersonal->country) ?
$userPersonal->country :
Check::country(),
':project_location' => ($userPersonal->location) ?
$userPersonal->location :
$userProfile->location,
);
$campos = array();
foreach (\array_keys($values) as $campo) {
$campos[] = \str_replace(':', '', $campo);
}
$sql = "REPLACE INTO project (" . implode(',', $campos) . ")
VALUES (" . implode(',', \array_keys($values)) . ")";
try {
self::query($sql, $values);
foreach ($campos as $campo) {
$this->$campo = $values[":$campo"];
}
return $this->id;
} catch (\PDOException $e) {
$errors[] = "ERROR al crear un nuevo proyecto<br />$sql<br /><pre>" . print_r($values, 1) . "</pre>";
\trace($this);
die($errors[0]);
return false;
}
}
/*
* Cargamos los datos del proyecto
*/
public static function get($id, $lang = null) {
try {
// metemos los datos del proyecto en la instancia
$query = self::query("SELECT * FROM project WHERE id = ?", array($id));
$project = $query->fetchObject(__CLASS__);
if (!$project instanceof \Goteo\Model\Project) {
throw new \Goteo\Core\Error('404', Text::html('fatal-error-project'));
}
// si recibimos lang y no es el idioma original del proyecto, ponemos la traducción y mantenemos para el resto de contenido
if ($lang == $project->lang) {
$lang = null;
} elseif (!empty($lang)) {
$sql = "
SELECT
IFNULL(project_lang.description, project.description) as description,
IFNULL(project_lang.motivation, project.motivation) as motivation,
IFNULL(project_lang.video, project.video) as video,
IFNULL(project_lang.about, project.about) as about,
IFNULL(project_lang.goal, project.goal) as goal,
IFNULL(project_lang.related, project.related) as related,
IFNULL(project_lang.reward, project.reward) as reward,
IFNULL(project_lang.keywords, project.keywords) as keywords,
IFNULL(project_lang.media, project.media) as media,
IFNULL(project_lang.subtitle, project.subtitle) as subtitle
FROM project
LEFT JOIN project_lang
ON project_lang.id = project.id
AND project_lang.lang = :lang
WHERE project.id = :id
";
$query = self::query($sql, array(':id'=>$id, ':lang'=>$lang));
foreach ($query->fetch(\PDO::FETCH_ASSOC) as $field=>$value) {
$project->$field = $value;
}
}
if (isset($project->media)) {
$project->media = new Project\Media($project->media);
}
if (isset($project->video)) {
$project->video = new Project\Media($project->video);
}
// owner
$project->user = User::get($project->owner, $lang);
// galeria
$project->gallery = Project\Image::getGallery($project->id);
// imágenes por sección
foreach (Project\Image::sections() as $sec => $val) {
if ($sec != '') {
$project->secGallery[$sec] = Project\Image::get($project->id, $sec);
}
}
// categorias
$project->categories = Project\Category::get($id);
// costes y los sumammos
$project->costs = Project\Cost::getAll($id, $lang);
$project->minmax();
// retornos colectivos
$project->social_rewards = Project\Reward::getAll($id, 'social', $lang);
// retornos individuales
$project->individual_rewards = Project\Reward::getAll($id, 'individual', $lang);
// colaboraciones
$project->supports = Project\Support::getAll($id, $lang);
//-----------------------------------------------------------------
// Diferentes verificaciones segun el estado del proyecto
//-----------------------------------------------------------------
$project->investors = Invest::investors($id);
$project->num_investors = Invest::numInvestors($id);
$amount = Invest::invested($id);
if ($project->invested != $amount) {
self::query("UPDATE project SET amount = '{$amount}' WHERE id = ?", array($id));
}
$project->invested = $amount;
$project->amount = $amount;
//mensajes y mensajeros
$messegers = array();
$project->messages = Message::getAll($id, $lang);
$project->num_messages = 0;
foreach ($project->messages as $msg) {
$project->num_messages++;
$project->num_messages+=count($msg->responses);
$messegers[$msg->user] = $msg->user;
}
$project->num_messegers = count($messegers);
$project->setDays();
$project->setTagmark();
// fecha final primera ronda (fecha campaña + 40)
if (!empty($project->published)) {
$ptime = strtotime($project->published);
$project->willpass = date('Y-m-d', \mktime(0, 0, 0, date('m', $ptime), date('d', $ptime)+40, date('Y', $ptime)));
}
//-----------------------------------------------------------------
// Fin de verificaciones
//-----------------------------------------------------------------
return $project;
} catch(\PDOException $e) {
throw new \Goteo\Core\Exception($e->getMessage());
} catch(\Goteo\Core\Error $e) {
throw new \Goteo\Core\Error('404', Text::html('fatal-error-project'));
}
}
/*
* Cargamos los datos mínimos de un proyecto
*/
public static function getMini($id) {
try {
// metemos los datos del proyecto en la instancia
$query = self::query("SELECT id, name, owner, comment, lang, status FROM project WHERE id = ?", array($id));
$project = $query->fetchObject(); // stdClass para qno grabar accidentalmente y machacar todo
// owner
$project->user = User::getMini($project->owner);
return $project;
} catch(\PDOException $e) {
throw new \Goteo\Core\Exception($e->getMessage());
}
}
/*
* Cargamos los datos suficientes para pintar un widget de proyecto
*/
public static function getMedium($id, $lang = \LANG) {
try {
// metemos los datos del proyecto en la instancia
$query = self::query("SELECT * FROM project WHERE id = ?", array($id));
$project = $query->fetchObject(__CLASS__);
// primero, que no lo grabe
$project->dontsave = true;
// si recibimos lang y no es el idioma original del proyecto, ponemos la traducción y mantenemos para el resto de contenido
if ($lang == $project->lang) {
$lang = null;
} elseif (!empty($lang)) {
$sql = "
SELECT
IFNULL(project_lang.description, project.description) as description,
IFNULL(project_lang.subtitle, project.subtitle) as subtitle
FROM project
LEFT JOIN project_lang
ON project_lang.id = project.id
AND project_lang.lang = :lang
WHERE project.id = :id
";
$query = self::query($sql, array(':id'=>$id, ':lang'=>$lang));
foreach ($query->fetch(\PDO::FETCH_ASSOC) as $field=>$value) {
$project->$field = $value;
}
}
// owner
$project->user = User::getMini($project->owner);
// imagen
$project->image = Project\Image::getFirst($project->id);
// categorias
$project->categories = Project\Category::getNames($id, 2);
// retornos colectivos
$project->social_rewards = Project\Reward::getAll($id, 'social', $lang);
// retornos individuales
$project->individual_rewards = Project\Reward::getAll($id, 'individual', $lang);
$amount = Invest::invested($id);
$project->invested = $amount;
$project->amount = $amount;
$project->num_investors = Invest::numInvestors($id);
$project->num_messegers = Message::numMessegers($id);
// sacamos rapidamente el presupuesto mínimo y óptimo
$costs = self::calcCosts($id);
$project->mincost = $costs->mincost;
$project->maxcost = $costs->maxcost;
$project->setDays();
$project->setTagmark();
return $project;
} catch(\PDOException $e) {
throw new \Goteo\Core\Exception($e->getMessage());
}
}
/*
* Listado simple de todos los proyectos
*/
public static function getAll($node = \GOTEO_NODE) {
$list = array();
$query = static::query("
SELECT
project.id as id,
project.name as name
FROM project
ORDER BY project.name ASC
", array(':node' => $node));
foreach ($query->fetchAll(\PDO::FETCH_CLASS) as $item) {
$list[$item->id] = $item->name;
}
return $list;
}
/*
* Para calcular los dias y la ronda
*/
private function setDays() {
//para proyectos en campaña o posterior
if ($this->status > 2) {
// tiempo de campaña
if ($this->status == 3) {
$days = $this->daysActive();
if ($days > 81) {
$this->round = 0;
$days = 0;
} elseif ($days >= 40) {
$days = 80 - $days;
$this->round = 2;
} else {
$days = 40 - $days;
$this->round = 1;
}
if ($days < 0) {
// no deberia estar en campaña sino financuiado o caducado
$days = 0;
}
} else {
$this->round = 0;
$days = 0;
}
} else {
$days = 0;
}
if ($this->days != $days) {
self::query("UPDATE project SET days = '{$days}' WHERE id = ?", array($this->id));
}
$this->days = $days;
}
/*
* Para ver que tagmark le toca
*/
private function setTagmark() {
// a ver que banderolo le toca
// "financiado" al final de de los 80 dias
if ($this->status == 4) :
$this->tagmark = 'gotit';
// "en marcha" cuando llega al optimo en primera o segunda ronda
elseif ($this->status == 3 && $this->amount >= $this->maxcost) :
$this->tagmark = 'onrun';
// "en marcha" y "aun puedes" cuando está en la segunda ronda
elseif ($this->status == 3 && $this->round == 2) :
$this->tagmark = 'onrun-keepiton';
// Obtiene el mínimo durante la primera ronda, "aun puedes seguir aportando"
elseif ($this->status == 3 && $this->round == 1 && $this->amount >= $this->mincost ) :
$this->tagmark = 'keepiton';
// tag de exitoso cuando es retorno cumplido
elseif ($this->status == 5) :
$this->tagmark = 'success';
// tag de caducado
elseif ($this->status == 6) :
$this->tagmark = 'fail';
endif;
}
/*
* Para validar los campos del proyecto que son NOT NULL en la tabla
*/
public function validate(&$errors = array()) {
// Estos son errores que no permiten continuar
if (empty($this->id))
$errors[] = Text::_('El proyecto no tiene id');
if (empty($this->lang))
$this->lang = 'es';
if (empty($this->status))
$this->status = 1;
if (empty($this->progress))
$this->progress = 0;
if (empty($this->owner))
$errors[] = Text::_('El proyecto no tiene usuario creador');
if (empty($this->node))
$this->node = 'goteo';
//cualquiera de estos errores hace fallar la validación
if (!empty($errors))
return false;
else
return true;
}
/**
* actualiza en la tabla los datos del proyecto
* @param array $project->errors para guardar los errores de datos del formulario, los errores de proceso se guardan en $project->errors['process']
*/
public function save (&$errors = array()) {
if ($this->dontsave) { return false; }
if(!$this->validate($errors)) { return false; }
try {
// fail para pasar por todo antes de devolver false
$fail = false;
// los nif sin guiones, espacios ni puntos
$this->contract_nif = str_replace(array('_', '.', ' ', '-', ',', ')', '('), '', $this->contract_nif);
$this->entity_cif = str_replace(array('_', '.', ' ', '-', ',', ')', '('), '', $this->entity_cif);
// Image
if (is_array($this->image) && !empty($this->image['name'])) {
$image = new Image($this->image);
if ($image->save($errors)) {
$this->gallery[] = $image;
$this->image = $image->id;
/**
* Guarda la relación NM en la tabla 'project_image'.
*/
if(!empty($image->id)) {
self::query("REPLACE project_image (project, image) VALUES (:project, :image)", array(':project' => $this->id, ':image' => $image->id));
}
}
}
$fields = array(
'contract_name',
'contract_nif',
'contract_email',
'contract_entity',
'contract_birthdate',
'entity_office',
'entity_name',
'entity_cif',
'phone',
'address',
'zipcode',
'location',
'country',
'secondary_address',
'post_address',
'post_zipcode',
'post_location',
'post_country',
'name',
'subtitle',
'image',
'description',
'motivation',
'video',
'video_usubs',
'about',
'goal',
'related',
'reward',
'keywords',
'media',
'media_usubs',
'currently',
'project_location',
'scope',
'resource',
'comment'
);
$set = '';
$values = array();
foreach ($fields as $field) {
if ($set != '') $set .= ', ';
$set .= "$field = :$field";
$values[":$field"] = $this->$field;
}
// Solamente marcamos updated cuando se envia a revision desde el superform o el admin
// $set .= ", updated = :updated";
// $values[':updated'] = date('Y-m-d');
$values[':id'] = $this->id;
$sql = "UPDATE project SET " . $set . " WHERE id = :id";
if (!self::query($sql, $values)) {
$errors[] = $sql . '<pre>' . print_r($values, 1) . '</pre>';
$fail = true;
}
// echo "$sql<br />";
// y aquí todas las tablas relacionadas
// cada una con sus save, sus new y sus remove
// quitar las que tiene y no vienen
// añadir las que vienen y no tiene
//categorias
$tiene = Project\Category::get($this->id);
$viene = $this->categories;
$quita = array_diff_assoc($tiene, $viene);
$guarda = array_diff_assoc($viene, $tiene);
foreach ($quita as $key=>$item) {
$category = new Project\Category(
array(
'id'=>$item,
'project'=>$this->id)
);
if (!$category->remove($errors))
$fail = true;
}
foreach ($guarda as $key=>$item) {
if (!$item->save($errors))
$fail = true;
}
// recuperamos las que le quedan si ha cambiado alguna
if (!empty($quita) || !empty($guarda))
$this->categories = Project\Category::get($this->id);
//costes
$tiene = Project\Cost::getAll($this->id);
$viene = $this->costs;
$quita = array_diff_key($tiene, $viene);
$guarda = array_diff_key($viene, $tiene);
foreach ($quita as $key=>$item) {
if (!$item->remove($errors)) {
$fail = true;
} else {
unset($tiene[$key]);
}
}
foreach ($guarda as $key=>$item) {
if (!$item->save($errors))
$fail = true;
}
/* Ahora, los que tiene y vienen. Si el contenido es diferente, hay que guardarlo*/
foreach ($tiene as $key => $row) {
// a ver la diferencia con el que viene
if ($row != $viene[$key]) {
if (!$viene[$key]->save($errors))
$fail = true;
}
}
if (!empty($quita) || !empty($guarda))
$this->costs = Project\Cost::getAll($this->id);
// recalculo de minmax
$this->minmax();
//retornos colectivos
$tiene = Project\Reward::getAll($this->id, 'social');
$viene = $this->social_rewards;
$quita = array_diff_key($tiene, $viene);
$guarda = array_diff_key($viene, $tiene);
foreach ($quita as $key=>$item) {
if (!$item->remove($errors)) {
$fail = true;
} else {
unset($tiene[$key]);
}
}
foreach ($guarda as $key=>$item) {
if (!$item->save($errors))
$fail = true;
}
/* Ahora, los que tiene y vienen. Si el contenido es diferente, hay que guardarlo*/
foreach ($tiene as $key => $row) {
// a ver la diferencia con el que viene
if ($row != $viene[$key]) {
if (!$viene[$key]->save($errors))
$fail = true;
}
}
if (!empty($quita) || !empty($guarda))
$this->social_rewards = Project\Reward::getAll($this->id, 'social');
//recompenssas individuales
$tiene = Project\Reward::getAll($this->id, 'individual');
$viene = $this->individual_rewards;
$quita = array_diff_key($tiene, $viene);
$guarda = array_diff_key($viene, $tiene);
foreach ($quita as $key=>$item) {
if (!$item->remove($errors)) {
$fail = true;
} else {
unset($tiene[$key]);
}
}
foreach ($guarda as $key=>$item) {
if (!$item->save($errors))
$fail = true;
}
/* Ahora, los que tiene y vienen. Si el contenido es diferente, hay que guardarlo*/
foreach ($tiene as $key => $row) {
// a ver la diferencia con el que viene
if ($row != $viene[$key]) {
if (!$viene[$key]->save($errors))
$fail = true;
}
}
if (!empty($quita) || !empty($guarda))
$this->individual_rewards = Project\Reward::getAll($this->id, 'individual');
// colaboraciones
$tiene = Project\Support::getAll($this->id);
$viene = $this->supports;
$quita = array_diff_key($tiene, $viene); // quitar los que tiene y no viene
$guarda = array_diff_key($viene, $tiene); // añadir los que viene y no tiene
foreach ($quita as $key=>$item) {
if (!$item->remove($errors)) {
$fail = true;
} else {
unset($tiene[$key]);
}
}
foreach ($guarda as $key=>$item) {
if (!$item->save($errors))
$fail = true;
}
/* Ahora, los que tiene y vienen. Si el contenido es diferente, hay que guardarlo*/
foreach ($tiene as $key => $row) {
// a ver la diferencia con el que viene
if ($row != $viene[$key]) {
if (!$viene[$key]->save($errors))
$fail = true;
}
}
if (!empty($quita) || !empty($guarda))
$this->supports = Project\Support::getAll($this->id);
//listo
return !$fail;
} catch(\PDOException $e) {
$errors[] = Text::_('No se ha grabado correctamente. ') . $e->getMessage();
return false;
}
}
public function saveLang (&$errors = array()) {
try {
$fields = array(
'id'=>'id',
'lang'=>'lang_lang',
'subtitle'=>'subtitle_lang',
'description'=>'description_lang',
'motivation'=>'motivation_lang',
'video'=>'video_lang',
'about'=>'about_lang',
'goal'=>'goal_lang',
'related'=>'related_lang',
'reward'=>'reward_lang',
'keywords'=>'keywords_lang',
'media'=>'media_lang'
);
$set = '';
$values = array();
foreach ($fields as $field=>$ffield) {
if ($set != '') $set .= ', ';
$set .= "$field = :$field";
if (empty($this->$ffield)) {
$this->$ffield = null;
}
$values[":$field"] = $this->$ffield;
}
$sql = "REPLACE INTO project_lang SET " . $set;
if (self::query($sql, $values)) {
return true;
} else {
$errors[] = $sql . '<pre>' . print_r($values, 1) . '</pre>';
return false;
}
} catch(\PDOException $e) {
$errors[] = Text::_('No se ha grabado correctamente. ') . $e->getMessage();
return false;
}
}
/*
* comprueba errores de datos y actualiza la puntuación
*/
public function check() {
$errors = &$this->errors;
$okeys = &$this->okeys ;
// reseteamos la puntuación
$this->setScore(0, 0, true);
/***************** Revisión de campos del paso 1, PERFIL *****************/
$score = 0;
// obligatorios: nombre, email, ciudad
if (empty($this->user->name)) {
$errors['userProfile']['name'] = Text::get('validate-user-field-name');
} else {
$okeys['userProfile']['name'] = 'ok';
++$score;
}
// se supone que tiene email porque sino no puede tener usuario, no?
if (!empty($this->user->email)) {
++$score;
}
if (empty($this->user->location)) {
$errors['userProfile']['location'] = Text::get('validate-user-field-location');
} else {
$okeys['userProfile']['location'] = 'ok';
++$score;
}
if(!empty($this->user->avatar) && $this->user->avatar->id != 1) {
$okeys['userProfile']['avatar'] = empty($errors['userProfile']['avatar']) ? 'ok' : null;
$score+=2;
}
if (!empty($this->user->about)) {
$okeys['userProfile']['about'] = 'ok';
++$score;
// otro +1 si tiene más de 1000 caracteres (pero menos de 2000)
if (\strlen($this->user->about) > 1000 && \strlen($this->user->about) < 2000) {
++$score;
}
} else {
$errors['userProfile']['about'] = Text::get('validate-user-field-about');
}
if (!empty($this->user->interests)) {
$okeys['userProfile']['interests'] = 'ok';
++$score;
}
/* Aligerando superform
if (!empty($this->user->keywords)) {
$okeys['userProfile']['keywords'] = 'ok';
++$score;
}
if (!empty($this->user->contribution)) {
$okeys['userProfile']['contribution'] = 'ok';
++$score;
}
*/
if (empty($this->user->webs)) {
$errors['userProfile']['webs'] = Text::get('validate-project-userProfile-web');
} else {
$okeys['userProfile']['webs'] = 'ok';
++$score;
if (count($this->user->webs) > 2) ++$score;
$anyerror = false;
foreach ($this->user->webs as $web) {
if (trim(str_replace('http://','',$web->url)) == '') {
$anyerror = !$anyerror ?: true;
$errors['userProfile']['web-'.$web->id.'-url'] = Text::get('validate-user-field-web');
} else {
$okeys['userProfile']['web-'.$web->id.'-url'] = 'ok';
}
}
if ($anyerror) {
unset($okeys['userProfile']['webs']);
$errors['userProfile']['webs'] = Text::get('validate-project-userProfile-any_error');
}
}
if (!empty($this->user->facebook)) {
$okeys['userProfile']['facebook'] = 'ok';
++$score;
}
if (!empty($this->user->twitter)) {
$okeys['userProfile']['twitter'] = 'ok';
++$score;
}
if (!empty($this->user->linkedin)) {
$okeys['userProfile']['linkedin'] = 'ok';
}
//puntos
$this->setScore($score, 12);
/***************** FIN Revisión del paso 1, PERFIL *****************/
/***************** Revisión de campos del paso 2,DATOS PERSONALES *****************/
$score = 0;
// obligatorios: todos
if (empty($this->contract_name)) {
$errors['userPersonal']['contract_name'] = Text::get('mandatory-project-field-contract_name');
} else {
$okeys['userPersonal']['contract_name'] = 'ok';
++$score;
}
if (empty($this->contract_nif)) {
$errors['userPersonal']['contract_nif'] = Text::get('mandatory-project-field-contract_nif');
} elseif (!Check::nif($this->contract_nif) && !Check::vat($this->contract_nif)) {
$errors['userPersonal']['contract_nif'] = Text::get('validate-project-value-contract_nif');
} else {
$okeys['userPersonal']['contract_nif'] = 'ok';
++$score;
}
if (empty($this->contract_email)) {
$errors['userPersonal']['contract_email'] = Text::get('mandatory-project-field-contract_email');
} elseif (!Check::mail($this->contract_email)) {
$errors['userPersonal']['contract_email'] = Text::get('validate-project-value-contract_email');
} else {
$okeys['userPersonal']['contract_email'] = 'ok';
}
if (empty($this->contract_birthdate)) {
$errors['userPersonal']['contract_birthdate'] = Text::get('mandatory-project-field-contract_birthdate');
} else {
$okeys['userPersonal']['contract_birthdate'] = 'ok';
}
if (empty($this->phone)) {
$errors['userPersonal']['phone'] = Text::get('mandatory-project-field-phone');
} elseif (!Check::phone($this->phone)) {