123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768 |
- <?php
- /* Copyright (c) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (c) 2002-2003 Jean-Louis Bergamo <jlb@j1b.org>
- * Copyright (c) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
- * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
- * Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2005 Lionel Cousteix <etm_ltd@tiscali.co.uk>
- * Copyright (C) 2011 Herve Prot <herve.prot@symeos.com>
- * Copyright (C) 2013-2019 Philippe Grand <philippe.grand@atoo-net.com>
- * Copyright (C) 2013-2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
- * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
- * Copyright (C) 2018 charlene Benke <charlie@patas-monkey.com>
- * Copyright (C) 2018-2021 Nicolas ZABOURI <info@inovea-conseil.com>
- * Copyright (C) 2019-2020 Frédéric France <frederic.france@netlogic.fr>
- * Copyright (C) 2019 Abbes Bahfir <dolipar@dolipar.org>
- *
- * 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 3 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, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/user/class/user.class.php
- * \brief File of class to manage users
- * \ingroup core
- */
- require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
- require_once DOL_DOCUMENT_ROOT.'/user/class/usergroup.class.php';
- /**
- * Class to manage Dolibarr users
- */
- class User extends CommonObject
- {
- /**
- * @var string ID to identify managed object
- */
- public $element = 'user';
- /**
- * @var string Name of table without prefix where object is stored
- */
- public $table_element = 'user';
- /**
- * @var string Field with ID of parent key if this field has a parent
- */
- public $fk_element = 'fk_user';
- /**
- * 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
- * @var int
- */
- public $ismultientitymanaged = 1;
- /**
- * @var string picto
- */
- public $picto = 'user';
- public $id = 0;
- public $statut;
- public $ldap_sid;
- public $search_sid;
- public $employee;
- public $civility_code;
- /**
- * @var string gender
- */
- public $gender;
- public $birth;
- /**
- * @var string email
- */
- public $email;
- /**
- * @var string personal email
- */
- public $personal_email;
- /**
- * @var array array of socialnetworks
- */
- public $socialnetworks;
- /**
- * @var string skype account
- * @deprecated
- */
- public $skype;
- /**
- * @var string twitter account
- * @deprecated
- */
- public $twitter;
- /**
- * @var string facebook account
- * @deprecated
- */
- public $facebook;
- /**
- * @var string linkedin account
- * @deprecated
- */
- public $linkedin;
- /**
- * @var string job position
- */
- public $job;
- /**
- * @var string user signature
- */
- public $signature;
- /**
- * @var string Address
- */
- public $address;
- /**
- * @var string zip code
- */
- public $zip;
- /**
- * @var string town
- */
- public $town;
- public $state_id; // The state/department
- public $state_code;
- public $state;
- /**
- * @var string office phone
- */
- public $office_phone;
- /**
- * @var string office fax
- */
- public $office_fax;
- /**
- * @var string phone mobile
- */
- public $user_mobile;
- /**
- * @var string personal phone mobile
- */
- public $personal_mobile;
- /**
- * @var int 1 if admin 0 if standard user
- */
- public $admin;
- /**
- * @var string user login
- */
- public $login;
- /**
- * @var string user apikey
- */
- public $api_key;
- /**
- * @var int Entity
- */
- public $entity;
- /**
- * @var string Clear password in memory
- */
- public $pass;
- /**
- * @var string Clear password in database (defined if DATABASE_PWD_ENCRYPTED=0)
- */
- public $pass_indatabase;
- /**
- * @var string Encrypted password in database (always defined)
- */
- public $pass_indatabase_crypted;
- /**
- * @var string Temporary password
- */
- public $pass_temp;
- /**
- * Date creation record (datec)
- *
- * @var integer
- */
- public $datec;
- /**
- * Date modification record (tms)
- *
- * @var integer
- */
- public $datem;
- /**
- * @var int If this is defined, it is an external user
- */
- public $socid;
- /**
- * @var int If this is defined, it is a user created from a contact
- */
- public $contact_id;
- /**
- * @var int ID
- */
- public $fk_member;
- /**
- * @var int User ID of supervisor
- */
- public $fk_user;
- /**
- * @var int User ID of expense validator
- */
- public $fk_user_expense_validator;
- /**
- * @var int User ID of holidays validator
- */
- public $fk_user_holiday_validator;
- /**
- * @string clicktodial url
- */
- public $clicktodial_url;
- /**
- * @var string clicktodial login
- */
- public $clicktodial_login;
- /**
- * @var string clicktodial password
- */
- public $clicktodial_password;
- /**
- * @var string clicktodial poste
- */
- public $clicktodial_poste;
- public $datelastlogin;
- public $datepreviouslogin;
- public $datestartvalidity;
- public $dateendvalidity;
- /**
- * @var string photo filename
- */
- public $photo;
- public $lang;
- /**
- * @var stdClass Class of permissions user->rights->permx
- */
- public $rights;
- /**
- * @var int All permissions are loaded
- */
- public $all_permissions_are_loaded;
- /**
- * @var int Number of rights granted to the user
- */
- public $nb_rights;
- /**
- * @var array To store list of groups of user (used by API /info for example)
- */
- public $user_group_list;
- /**
- * @var array Cache array of already loaded permissions
- */
- private $_tab_loaded = array();
- /**
- * @var stdClass To store personal config
- */
- public $conf;
- public $default_values; // To store default values for user
- public $lastsearch_values_tmp; // To store current search criterias for user
- public $lastsearch_values; // To store last saved search criterias for user
- public $users = array(); // To store all tree of users hierarchy
- public $parentof; // To store an array of all parents for all ids.
- private $cache_childids; // Cache array of already loaded childs
- public $accountancy_code; // Accountancy code in prevision of the complete accountancy module
- public $thm; // Average cost of employee - Used for valuation of time spent
- public $tjm; // Average cost of employee
- public $salary; // Monthly salary - Denormalized value from llx_user_employment
- public $salaryextra; // Monthly salary extra - Denormalized value from llx_user_employment
- public $weeklyhours; // Weekly hours - Denormalized value from llx_user_employment
- /**
- * @var string Define background color for user in agenda
- */
- public $color;
- public $dateemployment; // Define date of employment by company
- public $dateemploymentend; // Define date of employment end by company
- public $default_c_exp_tax_cat;
- /**
- * @var string ref for employee
- */
- public $ref_employee;
- /**
- * @var string national registration number
- */
- public $national_registration_number;
- public $default_range;
- /**
- *@var int id of warehouse
- */
- public $fk_warehouse;
- public $fields = array(
- 'rowid'=>array('type'=>'integer', 'label'=>'TechnicalID', 'enabled'=>1, 'visible'=>-2, 'notnull'=>1, 'index'=>1, 'position'=>1, 'comment'=>'Id'),
- 'lastname'=>array('type'=>'varchar(50)', 'label'=>'LastName', 'enabled'=>1, 'visible'=>1, 'notnull'=>1, 'showoncombobox'=>1, 'index'=>1, 'position'=>20, 'searchall'=>1),
- 'firstname'=>array('type'=>'varchar(50)', 'label'=>'FirstName', 'enabled'=>1, 'visible'=>1, 'notnull'=>1, 'showoncombobox'=>1, 'index'=>1, 'position'=>10, 'searchall'=>1),
- 'ref_employee'=>array('type'=>'varchar(50)', 'label'=>'ref_employee', 'enabled'=>1, 'visible'=>1, 'notnull'=>1, 'showoncombobox'=>1, 'index'=>1, 'position'=>30, 'searchall'=>1),
- 'national_registration_number'=>array('type'=>'varchar(50)', 'label'=>'national_registration_number', 'enabled'=>1, 'visible'=>1, 'notnull'=>1, 'showoncombobox'=>1, 'index'=>1, 'position'=>40, 'searchall'=>1)
- );
- const STATUS_DISABLED = 0;
- const STATUS_ENABLED = 1;
- /**
- * Constructor of the class
- *
- * @param DoliDb $db Database handler
- */
- public function __construct($db)
- {
- $this->db = $db;
- // User preference
- $this->liste_limit = 0;
- $this->clicktodial_loaded = 0;
- // For cache usage
- $this->all_permissions_are_loaded = 0;
- $this->nb_rights = 0;
- // Force some default values
- $this->admin = 0;
- $this->employee = 1;
- $this->conf = new stdClass();
- $this->rights = new stdClass();
- $this->rights->user = new stdClass();
- $this->rights->user->user = new stdClass();
- $this->rights->user->self = new stdClass();
- $this->rights->user->user_advance = new stdClass();
- $this->rights->user->self_advance = new stdClass();
- $this->rights->user->group_advance = new stdClass();
- }
- /**
- * Load a user from database with its id or ref (login).
- * This function does not load permissions, only user properties. Use getrights() for this just after the fetch.
- *
- * @param int $id If defined, id to used for search
- * @param string $login If defined, login to used for search
- * @param string $sid If defined, sid to used for search
- * @param int $loadpersonalconf 1=also load personal conf of user (in $user->conf->xxx), 0=do not load personal conf.
- * @param int $entity If a value is >= 0, we force the search on a specific entity. If -1, means search depens on default setup.
- * @param int $email If defined, email to used for search
- * @return int <0 if KO, 0 not found, >0 if OK
- */
- public function fetch($id = '', $login = '', $sid = '', $loadpersonalconf = 0, $entity = -1, $email = '')
- {
- global $conf, $user;
- // Clean parameters
- $login = trim($login);
- // Get user
- $sql = "SELECT u.rowid, u.lastname, u.firstname, u.employee, u.gender, u.civility as civility_code, u.birth, u.email, u.personal_email, u.job,";
- $sql .= " u.socialnetworks,";
- $sql .= " u.signature, u.office_phone, u.office_fax, u.user_mobile, u.personal_mobile,";
- $sql .= " u.address, u.zip, u.town, u.fk_state as state_id, u.fk_country as country_id,";
- $sql .= " u.admin, u.login, u.note as note_private, u.note_public,";
- $sql .= " u.pass, u.pass_crypted, u.pass_temp, u.api_key,";
- $sql .= " u.fk_soc, u.fk_socpeople, u.fk_member, u.fk_user, u.ldap_sid, u.fk_user_expense_validator, u.fk_user_holiday_validator,";
- $sql .= " u.statut, u.lang, u.entity,";
- $sql .= " u.datec as datec,";
- $sql .= " u.tms as datem,";
- $sql .= " u.datelastlogin as datel,";
- $sql .= " u.datepreviouslogin as datep,";
- $sql .= " u.datelastpassvalidation,";
- $sql .= " u.datestartvalidity,";
- $sql .= " u.dateendvalidity,";
- $sql .= " u.photo as photo,";
- $sql .= " u.openid as openid,";
- $sql .= " u.accountancy_code,";
- $sql .= " u.thm,";
- $sql .= " u.tjm,";
- $sql .= " u.salary,";
- $sql .= " u.salaryextra,";
- $sql .= " u.weeklyhours,";
- $sql .= " u.color,";
- $sql .= " u.dateemployment, u.dateemploymentend,";
- $sql .= " u.fk_warehouse,";
- $sql .= " u.ref_ext,";
- $sql .= " u.default_range, u.default_c_exp_tax_cat,"; // Expense report default mode
- $sql .= " u.national_registration_number,";
- $sql .= " u.ref_employee,";
- $sql .= " c.code as country_code, c.label as country,";
- $sql .= " d.code_departement as state_code, d.nom as state";
- $sql .= " FROM ".$this->db->prefix()."user as u";
- $sql .= " LEFT JOIN ".$this->db->prefix()."c_country as c ON u.fk_country = c.rowid";
- $sql .= " LEFT JOIN ".$this->db->prefix()."c_departements as d ON u.fk_state = d.rowid";
- if ($entity < 0) {
- if ((empty($conf->multicompany->enabled) || empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) && (!empty($user->entity))) {
- $sql .= " WHERE u.entity IN (0, ".((int) $conf->entity).")";
- } else {
- $sql .= " WHERE u.entity IS NOT NULL"; // multicompany is on in transverse mode or user making fetch is on entity 0, so user is allowed to fetch anywhere into database
- }
- } else {
- // The fetch was forced on an entity
- if (!empty($conf->multicompany->enabled) && !empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) {
- $sql .= " WHERE u.entity IS NOT NULL"; // multicompany is on in transverse mode or user making fetch is on entity 0, so user is allowed to fetch anywhere into database
- } else {
- $sql .= " WHERE u.entity IN (0, ".((int) (($entity != '' && $entity >= 0) ? $entity : $conf->entity)).")"; // search in entity provided in parameter
- }
- }
- if ($sid) {
- // permet une recherche du user par son SID ActiveDirectory ou Samba
- $sql .= " AND (u.ldap_sid = '".$this->db->escape($sid)."' OR u.login = '".$this->db->escape($login)."')";
- } elseif ($login) {
- $sql .= " AND u.login = '".$this->db->escape($login)."'";
- } elseif ($email) {
- $sql .= " AND u.email = '".$this->db->escape($email)."'";
- } else {
- $sql .= " AND u.rowid = ".((int) $id);
- }
- $sql .= " ORDER BY u.entity ASC"; // Avoid random result when there is 2 login in 2 different entities
- if ($sid) {
- // permet une recherche du user par son SID ActiveDirectory ou Samba
- $sql .= ' '.$this->db->plimit(1);
- }
- $result = $this->db->query($sql);
- if ($result) {
- $obj = $this->db->fetch_object($result);
- if ($obj) {
- $this->id = $obj->rowid;
- $this->ref = $obj->rowid;
- $this->ref_ext = $obj->ref_ext;
- $this->ldap_sid = $obj->ldap_sid;
- $this->civility_code = $obj->civility_code;
- $this->lastname = $obj->lastname;
- $this->firstname = $obj->firstname;
- $this->ref_employee = $obj->ref_employee;
- $this->national_registration_number = $obj->national_registration_number;
- $this->employee = $obj->employee;
- $this->login = $obj->login;
- $this->gender = $obj->gender;
- $this->birth = $this->db->jdate($obj->birth);
- $this->pass_indatabase = $obj->pass;
- $this->pass_indatabase_crypted = $obj->pass_crypted;
- $this->pass = $obj->pass;
- $this->pass_temp = $obj->pass_temp;
- $this->api_key = $obj->api_key;
- $this->address = $obj->address;
- $this->zip = $obj->zip;
- $this->town = $obj->town;
- $this->country_id = $obj->country_id;
- $this->country_code = $obj->country_id ? $obj->country_code : '';
- //$this->country = $obj->country_id?($langs->trans('Country'.$obj->country_code)!='Country'.$obj->country_code?$langs->transnoentities('Country'.$obj->country_code):$obj->country):'';
- $this->state_id = $obj->state_id;
- $this->state_code = $obj->state_code;
- $this->state = ($obj->state != '-' ? $obj->state : '');
- $this->office_phone = $obj->office_phone;
- $this->office_fax = $obj->office_fax;
- $this->user_mobile = $obj->user_mobile;
- $this->personal_mobile = $obj->personal_mobile;
- $this->email = $obj->email;
- $this->personal_email = $obj->personal_email;
- $this->socialnetworks = (array) json_decode($obj->socialnetworks, true);
- $this->job = $obj->job;
- $this->signature = $obj->signature;
- $this->admin = $obj->admin;
- $this->note_public = $obj->note_public;
- $this->note_private = $obj->note_private;
- $this->note = $obj->note_private; // deprecated
- $this->statut = $obj->statut;
- $this->photo = $obj->photo;
- $this->openid = $obj->openid;
- $this->lang = $obj->lang;
- $this->entity = $obj->entity;
- $this->accountancy_code = $obj->accountancy_code;
- $this->thm = $obj->thm;
- $this->tjm = $obj->tjm;
- $this->salary = $obj->salary;
- $this->salaryextra = $obj->salaryextra;
- $this->weeklyhours = $obj->weeklyhours;
- $this->color = $obj->color;
- $this->dateemployment = $this->db->jdate($obj->dateemployment);
- $this->dateemploymentend = $this->db->jdate($obj->dateemploymentend);
- $this->datec = $this->db->jdate($obj->datec);
- $this->datem = $this->db->jdate($obj->datem);
- $this->datelastlogin = $this->db->jdate($obj->datel);
- $this->datepreviouslogin = $this->db->jdate($obj->datep);
- $this->datestartvalidity = $this->db->jdate($obj->datestartvalidity);
- $this->dateendvalidity = $this->db->jdate($obj->dateendvalidity);
- $this->socid = $obj->fk_soc;
- $this->contact_id = $obj->fk_socpeople;
- $this->fk_member = $obj->fk_member;
- $this->fk_user = $obj->fk_user;
- $this->fk_user_expense_validator = $obj->fk_user_expense_validator;
- $this->fk_user_holiday_validator = $obj->fk_user_holiday_validator;
- $this->default_range = $obj->default_range;
- $this->default_c_exp_tax_cat = $obj->default_c_exp_tax_cat;
- $this->fk_warehouse = $obj->fk_warehouse;
- // Protection when module multicompany was set, admin was set to first entity and then, the module was disabled,
- // in such case, this admin user must be admin for ALL entities.
- if (empty($conf->multicompany->enabled) && $this->admin && $this->entity == 1) {
- $this->entity = 0;
- }
- // Retrieve all extrafield
- // fetch optionals attributes and labels
- $this->fetch_optionals();
- $this->db->free($result);
- } else {
- $this->error = "USERNOTFOUND";
- dol_syslog(get_class($this)."::fetch user not found", LOG_DEBUG);
- $this->db->free($result);
- return 0;
- }
- } else {
- $this->error = $this->db->lasterror();
- return -1;
- }
- // To get back the global configuration unique to the user
- if ($loadpersonalconf) {
- // Load user->conf for user
- $sql = "SELECT param, value FROM ".$this->db->prefix()."user_param";
- $sql .= " WHERE fk_user = ".((int) $this->id);
- $sql .= " AND entity = ".((int) $conf->entity);
- //dol_syslog(get_class($this).'::fetch load personalized conf', LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $num = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $obj = $this->db->fetch_object($resql);
- $p = (!empty($obj->param) ? $obj->param : '');
- if (!empty($p)) {
- $this->conf->$p = $obj->value;
- }
- $i++;
- }
- $this->db->free($resql);
- } else {
- $this->error = $this->db->lasterror();
- return -2;
- }
- $result = $this->loadDefaultValues();
- if ($result < 0) {
- $this->error = $this->db->lasterror();
- return -3;
- }
- }
- return 1;
- }
- /**
- * Load default values from database table into property ->default_values
- *
- * @return int > 0 if OK, < 0 if KO
- */
- public function loadDefaultValues()
- {
- global $conf;
- if (!empty($conf->global->MAIN_ENABLE_DEFAULT_VALUES)) {
- // Load user->default_values for user. TODO Save this in memcached ?
- require_once DOL_DOCUMENT_ROOT.'/core/class/defaultvalues.class.php';
- $defaultValues = new DefaultValues($this->db);
- $result = $defaultValues->fetchAll('', '', 0, 0, array('t.user_id'=>array(0, $this->id), 'entity'=>array((isset($this->entity) ? $this->entity : $conf->entity), $conf->entity))); // User 0 (all) + me (if defined)
- if (!is_array($result) && $result < 0) {
- setEventMessages($defaultValues->error, $defaultValues->errors, 'errors');
- dol_print_error($this->db);
- return -1;
- } elseif (count($result) > 0) {
- foreach ($result as $defval) {
- if (!empty($defval->page) && !empty($defval->type) && !empty($defval->param)) {
- $pagewithoutquerystring = $defval->page;
- $pagequeries = '';
- $reg = array();
- if (preg_match('/^([^\?]+)\?(.*)$/', $pagewithoutquerystring, $reg)) { // There is query param
- $pagewithoutquerystring = $reg[1];
- $pagequeries = $reg[2];
- }
- $this->default_values[$pagewithoutquerystring][$defval->type][$pagequeries ? $pagequeries : '_noquery_'][$defval->param] = $defval->value;
- }
- }
- }
- if (!empty($this->default_values)) {
- foreach ($this->default_values as $a => $b) {
- foreach ($b as $c => $d) {
- krsort($this->default_values[$a][$c]);
- }
- }
- }
- }
- return 1;
- }
- /**
- * Return if a user has a permission.
- * You can use it like this: if ($user->hasRight('module', 'level11')).
- * It replaces old syntax: if ($user->rights->module->level1)
- *
- * @param int $module Module of permission to check
- * @param string $permlevel1 Permission level1 (Example: 'read', 'write', 'delete')
- * @param string $permlevel2 Permission level2
- * @return int 1 if user has permission, 0 if not.
- * @see clearrights(), delrights(), getrights(), hasRight()
- */
- public function hasRight($module, $permlevel1, $permlevel2 = '')
- {
- global $conf;
- // For compatibility with bad naming permissions on module
- $moduletomoduletouse = array(
- 'contract' => 'contrat',
- 'member' => 'adherent', // We must check $user->rights->adherent...
- 'mo' => 'mrp',
- 'order' => 'commande',
- 'product' => 'produit', // We must check $user->rights->produit...
- 'project' => 'projet',
- 'shipping' => 'expedition',
- 'task' => 'task@projet',
- 'fichinter' => 'ficheinter',
- 'inventory' => 'stock',
- 'invoice' => 'facture',
- 'invoice_supplier' => 'fournisseur',
- 'knowledgerecord' => 'knowledgerecord@knowledgemanagement',
- 'skill@hrm' => 'all@hrm', // skill / job / position objects rights are for the moment grouped into right level "all"
- 'job@hrm' => 'all@hrm', // skill / job / position objects rights are for the moment grouped into right level "all"
- 'position@hrm' => 'all@hrm' // skill / job / position objects rights are for the moment grouped into right level "all"
- );
- if (!empty($moduletomoduletouse[$module])) {
- $module = $moduletomoduletouse[$module];
- }
- // If module is abc@module, we check permission user->rights->module->abc->permlevel1
- $tmp = explode('@', $module, 2);
- if (! empty($tmp[1])) {
- $module = $tmp[1];
- $permlevel2 = $permlevel1;
- $permlevel1 = $tmp[0];
- }
- //var_dump($module);
- //var_dump($this->rights->$module);
- if (!in_array($module, $conf->modules)) {
- return 0;
- }
- // For compatibility with bad naming permissions on permlevel1
- if ($permlevel1 == 'propale') {
- $permlevel1 = 'propal';
- }
- if ($permlevel1 == 'member') {
- $permlevel1 = 'adherent';
- }
- if ($permlevel1 == 'recruitmentcandidature') {
- $permlevel1 = 'recruitmentjobposition';
- }
- //var_dump($module.' '.$permlevel1.' '.$permlevel2);
- if (empty($module) || empty($this->rights) || empty($this->rights->$module) || empty($permlevel1)) {
- return 0;
- }
- if ($permlevel2) {
- if (!empty($this->rights->$module->$permlevel1)) {
- if (!empty($this->rights->$module->$permlevel1->$permlevel2)) {
- return $this->rights->$module->$permlevel1->$permlevel2;
- }
- // For backward compatibility with old permissions called "lire", "creer", "create", "supprimer"
- // instead of "read", "write", "delete"
- if ($permlevel2 == 'read' && !empty($this->rights->$module->$permlevel1->lire)) {
- return $this->rights->$module->lire;
- }
- if ($permlevel2 == 'write' && !empty($this->rights->$module->$permlevel1->creer)) {
- return $this->rights->$module->create;
- }
- if ($permlevel2 == 'write' && !empty($this->rights->$module->$permlevel1->create)) {
- return $this->rights->$module->create;
- }
- if ($permlevel2 == 'delete' && !empty($this->rights->$module->$permlevel1->supprimer)) {
- return $this->rights->$module->supprimer;
- }
- }
- } else {
- if (!empty($this->rights->$module->$permlevel1)) {
- return $this->rights->$module->$permlevel1;
- }
- // For backward compatibility with old permissions called "lire", "creer", "create", "supprimer"
- // instead of "read", "write", "delete"
- if ($permlevel1 == 'read' && !empty($this->rights->$module->lire)) {
- return $this->rights->$module->lire;
- }
- if ($permlevel1 == 'write' && !empty($this->rights->$module->creer)) {
- return $this->rights->$module->create;
- }
- if ($permlevel1 == 'write' && !empty($this->rights->$module->create)) {
- return $this->rights->$module->create;
- }
- if ($permlevel1 == 'delete' && !empty($this->rights->$module->supprimer)) {
- return $this->rights->$module->supprimer;
- }
- }
- return 0;
- }
- /**
- * Add a right to the user
- *
- * @param int $rid Id of permission to add or 0 to add several permissions
- * @param string $allmodule Add all permissions of module $allmodule or 'allmodules' to include all modules.
- * @param string $allperms Add all permissions of module $allmodule, subperms $allperms only or '' to include all permissions.
- * @param int $entity Entity to use
- * @param int $notrigger 1=Does not execute triggers, 0=Execute triggers
- * @return int > 0 if OK, < 0 if KO
- * @see clearrights(), delrights(), getrights(), hasRight()
- */
- public function addrights($rid, $allmodule = '', $allperms = '', $entity = 0, $notrigger = 0)
- {
- global $conf, $user, $langs;
- $entity = (empty($entity) ? $conf->entity : $entity);
- dol_syslog(get_class($this)."::addrights $rid, $allmodule, $allperms, $entity, $notrigger for user id=".$this->id);
- $error = 0;
- $whereforadd = '';
- $this->db->begin();
- if (!empty($rid)) {
- $module = $perms = $subperms = '';
- // If we ask to add a given permission, we first load properties of this permission (module, perms and subperms).
- $sql = "SELECT module, perms, subperms";
- $sql .= " FROM ".$this->db->prefix()."rights_def";
- $sql .= " WHERE id = ".((int) $rid);
- $sql .= " AND entity = ".((int) $entity);
- $result = $this->db->query($sql);
- if ($result) {
- $obj = $this->db->fetch_object($result);
- if ($obj) {
- $module = $obj->module;
- $perms = $obj->perms;
- $subperms = $obj->subperms;
- }
- } else {
- $error++;
- dol_print_error($this->db);
- }
- // Define the where for the permission to add
- $whereforadd = "id=".((int) $rid);
- // Add also inherited permissions
- if (!empty($subperms)) {
- $whereforadd .= " OR (module='".$this->db->escape($module)."' AND perms='".$this->db->escape($perms)."' AND (subperms='lire' OR subperms='read'))";
- } elseif (!empty($perms)) {
- $whereforadd .= " OR (module='".$this->db->escape($module)."' AND (perms='lire' OR perms='read') AND subperms IS NULL)";
- }
- } else {
- // On a pas demande un droit en particulier mais une liste de droits
- // sur la base d'un nom de module de de perms
- // Where pour la liste des droits a ajouter
- if (!empty($allmodule)) {
- if ($allmodule == 'allmodules') {
- $whereforadd = 'allmodules';
- } else {
- $whereforadd = "module='".$this->db->escape($allmodule)."'";
- if (!empty($allperms)) {
- $whereforadd .= " AND perms='".$this->db->escape($allperms)."'";
- }
- }
- }
- }
- // Add automatically other permission using the criteria whereforadd
- if (!empty($whereforadd)) {
- //print "$module-$perms-$subperms";
- $sql = "SELECT id";
- $sql .= " FROM ".$this->db->prefix()."rights_def";
- $sql .= " WHERE entity = ".((int) $entity);
- if (!empty($whereforadd) && $whereforadd != 'allmodules') {
- $sql .= " AND (".$whereforadd.")"; // Note: parenthesis are important because whereforadd can contains OR. Also note that $whereforadd is already sanitized
- }
- $result = $this->db->query($sql);
- if ($result) {
- $num = $this->db->num_rows($result);
- $i = 0;
- while ($i < $num) {
- $obj = $this->db->fetch_object($result);
- $nid = $obj->id;
- $sql = "DELETE FROM ".$this->db->prefix()."user_rights WHERE fk_user = ".((int) $this->id)." AND fk_id = ".((int) $nid)." AND entity = ".((int) $entity);
- if (!$this->db->query($sql)) {
- $error++;
- }
- $sql = "INSERT INTO ".$this->db->prefix()."user_rights (entity, fk_user, fk_id) VALUES (".((int) $entity).", ".((int) $this->id).", ".((int) $nid).")";
- if (!$this->db->query($sql)) {
- $error++;
- }
- $i++;
- }
- } else {
- $error++;
- dol_print_error($this->db);
- }
- }
- if (!$error && !$notrigger) {
- $langs->load("other");
- $this->context = array('audit'=>$langs->trans("PermissionsAdd").($rid ? ' (id='.$rid.')' : ''));
- // Call trigger
- $result = $this->call_trigger('USER_MODIFY', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- if ($error) {
- $this->db->rollback();
- return -$error;
- } else {
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Remove a right to the user
- *
- * @param int $rid Id du droit a retirer
- * @param string $allmodule Retirer tous les droits du module allmodule
- * @param string $allperms Retirer tous les droits du module allmodule, perms allperms
- * @param int $entity Entity to use
- * @param int $notrigger 1=Does not execute triggers, 0=Execute triggers
- * @return int > 0 if OK, < 0 if OK
- * @see clearrights(), addrights(), getrights(), hasRight()
- */
- public function delrights($rid, $allmodule = '', $allperms = '', $entity = 0, $notrigger = 0)
- {
- global $conf, $user, $langs;
- $error = 0;
- $wherefordel = '';
- $entity = (!empty($entity) ? $entity : $conf->entity);
- $this->db->begin();
- if (!empty($rid)) {
- $module = $perms = $subperms = '';
- // Si on a demande supression d'un droit en particulier, on recupere
- // les caracteristiques module, perms et subperms de ce droit.
- $sql = "SELECT module, perms, subperms";
- $sql .= " FROM ".$this->db->prefix()."rights_def";
- $sql .= " WHERE id = '".$this->db->escape($rid)."'";
- $sql .= " AND entity = ".((int) $entity);
- $result = $this->db->query($sql);
- if ($result) {
- $obj = $this->db->fetch_object($result);
- if ($obj) {
- $module = $obj->module;
- $perms = $obj->perms;
- $subperms = $obj->subperms;
- }
- } else {
- $error++;
- dol_print_error($this->db);
- }
- // Where pour la liste des droits a supprimer
- $wherefordel = "id=".((int) $rid);
- // Suppression des droits induits
- if ($subperms == 'lire' || $subperms == 'read') {
- $wherefordel .= " OR (module='".$this->db->escape($module)."' AND perms='".$this->db->escape($perms)."' AND subperms IS NOT NULL)";
- }
- if ($perms == 'lire' || $perms == 'read') {
- $wherefordel .= " OR (module='".$this->db->escape($module)."')";
- }
- } else {
- // On a demande suppression d'un droit sur la base d'un nom de module ou perms
- // Where pour la liste des droits a supprimer
- if (!empty($allmodule)) {
- if ($allmodule == 'allmodules') {
- $wherefordel = 'allmodules';
- } else {
- $wherefordel = "module='".$this->db->escape($allmodule)."'";
- if (!empty($allperms)) {
- $wherefordel .= " AND perms='".$this->db->escape($allperms)."'";
- }
- }
- }
- }
- // Suppression des droits selon critere defini dans wherefordel
- if (!empty($wherefordel)) {
- //print "$module-$perms-$subperms";
- $sql = "SELECT id";
- $sql .= " FROM ".$this->db->prefix()."rights_def";
- $sql .= " WHERE entity = ".((int) $entity);
- if (!empty($wherefordel) && $wherefordel != 'allmodules') {
- $sql .= " AND (".$wherefordel.")"; // Note: parenthesis are important because wherefordel can contains OR. Also note that $wherefordel is already sanitized
- }
- // avoid admin can remove his own important rights
- if ($this->admin == 1) {
- $sql .= " AND id NOT IN (251, 252, 253, 254, 255, 256)"; // other users rights
- $sql .= " AND id NOT IN (341, 342, 343, 344)"; // own rights
- $sql .= " AND id NOT IN (351, 352, 353, 354)"; // groups rights
- $sql .= " AND id NOT IN (358)"; // user export
- }
- $result = $this->db->query($sql);
- if ($result) {
- $num = $this->db->num_rows($result);
- $i = 0;
- while ($i < $num) {
- $obj = $this->db->fetch_object($result);
- $nid = $obj->id;
- $sql = "DELETE FROM ".$this->db->prefix()."user_rights";
- $sql .= " WHERE fk_user = ".((int) $this->id)." AND fk_id = ".((int) $nid);
- $sql .= " AND entity = ".((int) $entity);
- if (!$this->db->query($sql)) {
- $error++;
- }
- $i++;
- }
- } else {
- $error++;
- dol_print_error($this->db);
- }
- }
- if (!$error && !$notrigger) {
- $langs->load("other");
- $this->context = array('audit'=>$langs->trans("PermissionsDelete").($rid ? ' (id='.$rid.')' : ''));
- // Call trigger
- $result = $this->call_trigger('USER_MODIFY', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- if ($error) {
- $this->db->rollback();
- return -$error;
- } else {
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Clear all permissions array of user
- *
- * @return void
- * @see getrights(), hasRight()
- */
- public function clearrights()
- {
- dol_syslog(get_class($this)."::clearrights reset user->rights");
- $this->rights = null;
- $this->nb_rights = 0;
- $this->all_permissions_are_loaded = 0;
- $this->_tab_loaded = array();
- }
- /**
- * Load permissions granted to user into object user
- *
- * @param string $moduletag Limit permission for a particular module ('' by default means load all permissions)
- * @param int $forcereload Force reload of permissions even if they were already loaded (ignore cache)
- * @return void
- * @see clearrights(), delrights(), addrights(), hasRight()
- */
- public function getrights($moduletag = '', $forcereload = 0)
- {
- global $conf;
- if (empty($forcereload)) {
- if ($moduletag && isset($this->_tab_loaded[$moduletag]) && $this->_tab_loaded[$moduletag]) {
- // Rights for this module are already loaded, so we leave
- return;
- }
- if (!empty($this->all_permissions_are_loaded)) {
- // We already loaded all rights for this user, so we leave
- return;
- }
- }
- // Get permission of users + Get permissions of groups
- // First user permissions
- $sql = "SELECT DISTINCT r.module, r.perms, r.subperms";
- $sql .= " FROM ".$this->db->prefix()."user_rights as ur,";
- $sql .= " ".$this->db->prefix()."rights_def as r";
- $sql .= " WHERE r.id = ur.fk_id";
- if (!empty($conf->global->MULTICOMPANY_BACKWARD_COMPATIBILITY)) {
- // on old version, we use entity defined into table r only
- $sql .= " AND r.entity IN (0,".(!empty($conf->multicompany->enabled) && !empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE) ? "1," : "").$conf->entity.")";
- } else {
- // On table r=rights_def, the unique key is (id, entity) because id is hard coded into module descriptor and insert during module activation.
- // So we must include the filter on entity on both table r. and ur.
- $sql .= " AND r.entity = ".((int) $conf->entity)." AND ur.entity = ".((int) $conf->entity);
- }
- $sql .= " AND ur.fk_user= ".((int) $this->id);
- $sql .= " AND r.perms IS NOT NULL";
- if ($moduletag) {
- $sql .= " AND r.module = '".$this->db->escape($moduletag)."'";
- }
- $resql = $this->db->query($sql);
- if ($resql) {
- $num = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $obj = $this->db->fetch_object($resql);
- if ($obj) {
- $module = $obj->module;
- $perms = $obj->perms;
- $subperms = $obj->subperms;
- if (!empty($perms)) {
- if (!isset($this->rights) || !is_object($this->rights)) {
- $this->rights = new stdClass(); // For avoid error
- }
- if (!empty($module)) {
- if (!isset($this->rights->$module) || !is_object($this->rights->$module)) {
- $this->rights->$module = new stdClass();
- }
- if (!empty($subperms)) {
- if (!isset($this->rights->$module->$perms) || !is_object($this->rights->$module->$perms)) {
- $this->rights->$module->$perms = new stdClass();
- }
- if (empty($this->rights->$module->$perms->$subperms)) {
- $this->nb_rights++;
- }
- $this->rights->$module->$perms->$subperms = 1;
- } else {
- if (empty($this->rights->$module->$perms)) {
- $this->nb_rights++;
- }
- $this->rights->$module->$perms = 1;
- }
- }
- }
- }
- $i++;
- }
- $this->db->free($resql);
- }
- // Now permissions of groups
- $sql = "SELECT DISTINCT r.module, r.perms, r.subperms";
- $sql .= " FROM ".$this->db->prefix()."usergroup_rights as gr,";
- $sql .= " ".$this->db->prefix()."usergroup_user as gu,";
- $sql .= " ".$this->db->prefix()."rights_def as r";
- $sql .= " WHERE r.id = gr.fk_id";
- if (!empty($conf->global->MULTICOMPANY_BACKWARD_COMPATIBILITY)) {
- if (!empty($conf->multicompany->enabled) && !empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) {
- $sql .= " AND gu.entity IN (0,".$conf->entity.")";
- } else {
- $sql .= " AND r.entity = ".((int) $conf->entity);
- }
- } else {
- $sql .= " AND gr.entity = ".((int) $conf->entity); // Only groups created in current entity
- // The entity on the table usergroup_user should be useless and shoumd never be used because it is alreay into gr and r.
- // but when using MULTICOMPANY_TRANSVERSE_MODE, we may insert record that make rubbish result due to duplicate record of
- // other entities, so we are forced to add a filter here
- $sql .= " AND gu.entity IN (0,".$conf->entity.")";
- $sql .= " AND r.entity = ".((int) $conf->entity); // Only permission of modules enabled in current entity
- }
- $sql .= " AND gr.fk_usergroup = gu.fk_usergroup";
- $sql .= " AND gu.fk_user = ".((int) $this->id);
- $sql .= " AND r.perms IS NOT NULL";
- if ($moduletag) {
- $sql .= " AND r.module = '".$this->db->escape($moduletag)."'";
- }
- $resql = $this->db->query($sql);
- if ($resql) {
- $num = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $obj = $this->db->fetch_object($resql);
- if ($obj) {
- $module = $obj->module;
- $perms = $obj->perms;
- $subperms = $obj->subperms;
- if (!empty($perms)) {
- if (!isset($this->rights) || !is_object($this->rights)) {
- $this->rights = new stdClass(); // For avoid error
- }
- if (!empty($module)) {
- if (!isset($this->rights->$module) || !is_object($this->rights->$module)) {
- $this->rights->$module = new stdClass();
- }
- if (!empty($subperms)) {
- if (!isset($this->rights->$module->$perms) || !is_object($this->rights->$module->$perms)) {
- $this->rights->$module->$perms = new stdClass();
- }
- if (empty($this->rights->$module->$perms->$subperms)) {
- $this->nb_rights++;
- }
- $this->rights->$module->$perms->$subperms = 1;
- } else {
- if (empty($this->rights->$module->$perms)) {
- $this->nb_rights++;
- }
- // if we have already define a subperm like this $this->rights->$module->level1->level2 with llx_user_rights, we don't want override level1 because the level2 can be not define on user group
- if (!isset($this->rights->$module->$perms) || !is_object($this->rights->$module->$perms)) {
- $this->rights->$module->$perms = 1;
- }
- }
- }
- }
- }
- $i++;
- }
- $this->db->free($resql);
- }
- // For backward compatibility
- if (isset($this->rights->propale) && !isset($this->rights->propal)) {
- $this->rights->propal = $this->rights->propale;
- }
- if (isset($this->rights->propal) && !isset($this->rights->propale)) {
- $this->rights->propale = $this->rights->propal;
- }
- if (!$moduletag) {
- // Si module etait non defini, alors on a tout charge, on peut donc considerer
- // que les droits sont en cache (car tous charges) pour cet instance de user
- $this->all_permissions_are_loaded = 1;
- } else {
- // If module defined, we flag it as loaded into cache
- $this->_tab_loaded[$moduletag] = 1;
- }
- }
- /**
- * Change status of a user
- *
- * @param int $status Status to set
- * @return int <0 if KO, 0 if nothing is done, >0 if OK
- */
- public function setstatus($status)
- {
- global $conf, $langs, $user;
- $error = 0;
- // Check parameters
- if ($this->statut == $status) {
- return 0;
- }
- $this->db->begin();
- // Save in database
- $sql = "UPDATE ".$this->db->prefix()."user";
- $sql .= " SET statut = ".((int) $status);
- $sql .= " WHERE rowid = ".((int) $this->id);
- $result = $this->db->query($sql);
- dol_syslog(get_class($this)."::setstatus", LOG_DEBUG);
- if ($result) {
- // Call trigger
- $result = $this->call_trigger('USER_ENABLEDISABLE', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- if ($error) {
- $this->db->rollback();
- return -$error;
- } else {
- $this->status = $status;
- $this->statut = $status;
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Sets object to supplied categories.
- *
- * Deletes object from existing categories not supplied.
- * Adds it to non existing supplied categories.
- * Existing categories are left untouch.
- *
- * @param int[]|int $categories Category or categories IDs
- * @return void
- */
- public function setCategories($categories)
- {
- require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
- return parent::setCategoriesCommon($categories, Categorie::TYPE_USER);
- }
- /**
- * Delete the user
- *
- * @param User $user User than delete
- * @return int <0 if KO, >0 if OK
- */
- public function delete(User $user)
- {
- global $conf, $langs;
- $error = 0;
- $this->db->begin();
- $this->fetch($this->id);
- dol_syslog(get_class($this)."::delete", LOG_DEBUG);
- // Remove rights
- $sql = "DELETE FROM ".$this->db->prefix()."user_rights WHERE fk_user = ".((int) $this->id);
- if (!$error && !$this->db->query($sql)) {
- $error++;
- $this->error = $this->db->lasterror();
- }
- // Remove group
- $sql = "DELETE FROM ".$this->db->prefix()."usergroup_user WHERE fk_user = ".((int) $this->id);
- if (!$error && !$this->db->query($sql)) {
- $error++;
- $this->error = $this->db->lasterror();
- }
- // Remove params
- $sql = "DELETE FROM ".$this->db->prefix()."user_param WHERE fk_user = ".((int) $this->id);
- if (!$error && !$this->db->query($sql)) {
- $error++;
- $this->error = $this->db->lasterror();
- }
- // If contact, remove link
- if ($this->contact_id > 0) {
- $sql = "UPDATE ".$this->db->prefix()."socpeople SET fk_user_creat = null WHERE rowid = ".((int) $this->contact_id);
- if (!$error && !$this->db->query($sql)) {
- $error++;
- $this->error = $this->db->lasterror();
- }
- }
- // Remove extrafields
- if (!$error) {
- $result = $this->deleteExtraFields();
- if ($result < 0) {
- $error++;
- dol_syslog(get_class($this)."::delete error -4 ".$this->error, LOG_ERR);
- }
- }
- // Remove user
- if (!$error) {
- $sql = "DELETE FROM ".$this->db->prefix()."user WHERE rowid = ".((int) $this->id);
- dol_syslog(get_class($this)."::delete", LOG_DEBUG);
- if (!$this->db->query($sql)) {
- $error++;
- $this->error = $this->db->lasterror();
- }
- }
- if (!$error) {
- // Call trigger
- $result = $this->call_trigger('USER_DELETE', $user);
- if ($result < 0) {
- $error++;
- $this->db->rollback();
- return -1;
- }
- // End call triggers
- $this->db->commit();
- return 1;
- } else {
- $this->db->rollback();
- return -1;
- }
- }
- /**
- * Create a user into database
- *
- * @param User $user Objet user doing creation
- * @param int $notrigger 1=do not execute triggers, 0 otherwise
- * @return int <0 if KO, id of created user if OK
- */
- public function create($user, $notrigger = 0)
- {
- global $conf, $langs;
- global $mysoc;
- // Clean parameters
- $this->setUpperOrLowerCase();
- $this->civility_code = trim($this->civility_code);
- $this->login = trim($this->login);
- if (!isset($this->entity)) {
- $this->entity = $conf->entity; // If not defined, we use default value
- }
- dol_syslog(get_class($this)."::create login=".$this->login.", user=".(is_object($user) ? $user->id : ''), LOG_DEBUG);
- $badCharUnauthorizedIntoLoginName = getDolGlobalString('MAIN_LOGIN_BADCHARUNAUTHORIZED', ',@<>"\'');
- // Check parameters
- if (!empty($conf->global->USER_MAIL_REQUIRED) && !isValidEMail($this->email)) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorBadEMail", $this->email);
- return -1;
- }
- if (empty($this->login)) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Login"));
- return -1;
- } elseif (preg_match('/['.preg_quote($badCharUnauthorizedIntoLoginName, '/').']/', $this->login)) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorBadCharIntoLoginName");
- return -1;
- }
- $this->datec = dol_now();
- $error = 0;
- $this->db->begin();
- // Check if login already exists in same entity or into entity 0.
- if ($this->login) {
- $sqltochecklogin = "SELECT COUNT(*) as nb FROM ".$this->db->prefix()."user WHERE entity IN (".$this->db->sanitize((int) $this->entity).", 0) AND login = '".$this->db->escape($this->login)."'";
- $resqltochecklogin = $this->db->query($sqltochecklogin);
- if ($resqltochecklogin) {
- $objtochecklogin = $this->db->fetch_object($resqltochecklogin);
- if ($objtochecklogin && $objtochecklogin->nb > 0) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorLoginAlreadyExists", $this->login);
- dol_syslog(get_class($this)."::create ".$this->error, LOG_DEBUG);
- $this->db->rollback();
- return -6;
- }
- $this->db->free($resqltochecklogin);
- }
- }
- if (!empty($this->email)) {
- $sqltochecklogin = "SELECT COUNT(*) as nb FROM ".$this->db->prefix()."user WHERE entity IN (".$this->db->sanitize((int) $this->entity).", 0) AND email = '".$this->db->escape($this->email)."'";
- $resqltochecklogin = $this->db->query($sqltochecklogin);
- if ($resqltochecklogin) {
- $objtochecklogin = $this->db->fetch_object($resqltochecklogin);
- if ($objtochecklogin && $objtochecklogin->nb > 0) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorEmailAlreadyExists", $this->email);
- dol_syslog(get_class($this)."::create ".$this->error, LOG_DEBUG);
- $this->db->rollback();
- return -6;
- }
- $this->db->free($resqltochecklogin);
- }
- }
- // Insert into database
- $sql = "INSERT INTO ".$this->db->prefix()."user (datec, login, ldap_sid, entity)";
- $sql .= " VALUES('".$this->db->idate($this->datec)."', '".$this->db->escape($this->login)."', '".$this->db->escape($this->ldap_sid)."', ".((int) $this->entity).")";
- $result = $this->db->query($sql);
- dol_syslog(get_class($this)."::create", LOG_DEBUG);
- if ($result) {
- $this->id = $this->db->last_insert_id($this->db->prefix()."user");
- // Set default rights
- if ($this->set_default_rights() < 0) {
- $this->error = 'ErrorFailedToSetDefaultRightOfUser';
- $this->db->rollback();
- return -5;
- }
- if (!empty($conf->global->MAIN_DEFAULT_WAREHOUSE_USER) && !empty($conf->global->STOCK_USERSTOCK_AUTOCREATE)) {
- require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
- $langs->load("stocks");
- $entrepot = new Entrepot($this->db);
- $entrepot->label = $langs->trans("PersonalStock", $this->getFullName($langs));
- $entrepot->libelle = $entrepot->label; // For backward compatibility
- $entrepot->description = $langs->trans("ThisWarehouseIsPersonalStock", $this->getFullName($langs));
- $entrepot->statut = 1;
- $entrepot->country_id = $mysoc->country_id;
- $warehouseid = $entrepot->create($user);
- $this->fk_warehouse = $warehouseid;
- }
- // Update minor fields
- $result = $this->update($user, 1, 1);
- if ($result < 0) {
- $this->db->rollback();
- return -4;
- }
- if (!$notrigger) {
- // Call trigger
- $result = $this->call_trigger('USER_CREATE', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- if (!$error) {
- $this->db->commit();
- return $this->id;
- } else {
- //$this->error=$interface->error;
- dol_syslog(get_class($this)."::create ".$this->error, LOG_ERR);
- $this->db->rollback();
- return -3;
- }
- } else {
- $this->error = $this->db->lasterror();
- $this->db->rollback();
- return -2;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Create a user from a contact object. User will be internal but if contact is linked to a third party, user will be external
- *
- * @param Contact $contact Object for source contact
- * @param string $login Login to force
- * @param string $password Password to force
- * @return int <0 if error, if OK returns id of created user
- */
- public function create_from_contact($contact, $login = '', $password = '')
- {
- // phpcs:enable
- global $conf, $user, $langs;
- $error = 0;
- // Define parameters
- $this->admin = 0;
- $this->civility_code = $contact->civility_code;
- $this->lastname = $contact->lastname;
- $this->firstname = $contact->firstname;
- $this->gender = $contact->gender;
- $this->email = $contact->email;
- $this->socialnetworks = $contact->socialnetworks;
- $this->office_phone = $contact->phone_pro;
- $this->office_fax = $contact->fax;
- $this->user_mobile = $contact->phone_mobile;
- $this->address = $contact->address;
- $this->zip = $contact->zip;
- $this->town = $contact->town;
- $this->setUpperOrLowerCase();
- $this->state_id = $contact->state_id;
- $this->country_id = $contact->country_id;
- $this->employee = 0;
- if (empty($login)) {
- include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
- $login = dol_buildlogin($contact->lastname, $contact->firstname);
- }
- $this->login = $login;
- $this->db->begin();
- // Create user and set $this->id. Trigger is disabled because executed later.
- $result = $this->create($user, 1);
- if ($result > 0) {
- $sql = "UPDATE ".$this->db->prefix()."user";
- $sql .= " SET fk_socpeople=".((int) $contact->id);
- $sql .= ", civility='".$this->db->escape($contact->civility_code)."'";
- if ($contact->socid > 0) {
- $sql .= ", fk_soc=".((int) $contact->socid);
- }
- $sql .= " WHERE rowid=".((int) $this->id);
- $resql = $this->db->query($sql);
- dol_syslog(get_class($this)."::create_from_contact", LOG_DEBUG);
- if ($resql) {
- $this->context['createfromcontact'] = 'createfromcontact';
- // Call trigger
- $result = $this->call_trigger('USER_CREATE', $user);
- if ($result < 0) {
- $error++; $this->db->rollback(); return -1;
- }
- // End call triggers
- $this->db->commit();
- return $this->id;
- } else {
- $this->error = $this->db->error();
- $this->db->rollback();
- return -1;
- }
- } else {
- // $this->error deja positionne
- dol_syslog(get_class($this)."::create_from_contact - 0");
- $this->db->rollback();
- return $result;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Create a user into database from a member object.
- * If $member->fk_soc is set, it will be an external user.
- *
- * @param Adherent $member Object member source
- * @param string $login Login to force
- * @return int <0 if KO, if OK, return id of created account
- */
- public function create_from_member($member, $login = '')
- {
- // phpcs:enable
- global $conf, $user, $langs;
- // Set properties on new user
- $this->admin = 0;
- $this->civility_code = $member->civility_id;
- $this->lastname = $member->lastname;
- $this->firstname = $member->firstname;
- $this->gender = $member->gender;
- $this->email = $member->email;
- $this->fk_member = $member->id;
- $this->address = $member->address;
- $this->zip = $member->zip;
- $this->town = $member->town;
- $this->setUpperOrLowerCase();
- $this->state_id = $member->state_id;
- $this->country_id = $member->country_id;
- $this->socialnetworks = $member->socialnetworks;
- $this->pass = $member->pass;
- $this->pass_crypted = $member->pass_indatabase_crypted;
- if (empty($login)) {
- include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
- $login = dol_buildlogin($member->lastname, $member->firstname);
- }
- $this->login = $login;
- $this->db->begin();
- // Create and set $this->id
- $result = $this->create($user);
- if ($result > 0) {
- if (!empty($this->pass)) { // If a clear password was received (this situation should not happen anymore now), we use it to save it into database
- $newpass = $this->setPassword($user, $this->pass);
- if (is_numeric($newpass) && $newpass < 0) {
- $result = -2;
- }
- } elseif (!empty($this->pass_crypted)) { // If a crypted password is already known, we save it directly into database because the previous create did not save it.
- $sql = "UPDATE ".$this->db->prefix()."user";
- $sql .= " SET pass_crypted = '".$this->db->escape($this->pass_crypted)."'";
- $sql .= " WHERE rowid=".((int) $this->id);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $result = -1;
- }
- }
- if ($result > 0 && $member->fk_soc) { // If member is linked to a thirdparty
- $sql = "UPDATE ".$this->db->prefix()."user";
- $sql .= " SET fk_soc=".((int) $member->fk_soc);
- $sql .= " WHERE rowid=".((int) $this->id);
- dol_syslog(get_class($this)."::create_from_member", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $this->db->commit();
- return $this->id;
- } else {
- $this->error = $this->db->lasterror();
- $this->db->rollback();
- return -1;
- }
- }
- }
- if ($result > 0) {
- $this->db->commit();
- return $this->id;
- } else {
- // $this->error deja positionne
- $this->db->rollback();
- return -2;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Assign rights by default
- *
- * @return integer erreur <0, si ok renvoi le nbre de droits par defaut positionnes
- */
- public function set_default_rights()
- {
- // phpcs:enable
- global $conf;
- $rd = array();
- $num = 0;
- $sql = "SELECT id FROM ".$this->db->prefix()."rights_def";
- $sql .= " WHERE bydefault = 1";
- $sql .= " AND entity = ".((int) $conf->entity);
- $resql = $this->db->query($sql);
- if ($resql) {
- $num = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $row = $this->db->fetch_row($resql);
- $rd[$i] = $row[0];
- $i++;
- }
- $this->db->free($resql);
- }
- $i = 0;
- while ($i < $num) {
- $sql = "DELETE FROM ".$this->db->prefix()."user_rights WHERE fk_user = $this->id AND fk_id=$rd[$i]";
- $result = $this->db->query($sql);
- $sql = "INSERT INTO ".$this->db->prefix()."user_rights (fk_user, fk_id) VALUES ($this->id, $rd[$i])";
- $result = $this->db->query($sql);
- if (!$result) {
- return -1;
- }
- $i++;
- }
- return $i;
- }
- /**
- * Update a user into database (and also password if this->pass is defined)
- *
- * @param User $user User making update
- * @param int $notrigger 1=do not execute triggers, 0 by default
- * @param int $nosyncmember 0=Synchronize linked member (standard info), 1=Do not synchronize linked member
- * @param int $nosyncmemberpass 0=Synchronize linked member (password), 1=Do not synchronize linked member
- * @param int $nosynccontact 0=Synchronize linked contact, 1=Do not synchronize linked contact
- * @return int <0 if KO, >=0 if OK
- */
- public function update($user, $notrigger = 0, $nosyncmember = 0, $nosyncmemberpass = 0, $nosynccontact = 0)
- {
- global $conf, $langs;
- $nbrowsaffected = 0;
- $error = 0;
- dol_syslog(get_class($this)."::update notrigger=".$notrigger.", nosyncmember=".$nosyncmember.", nosyncmemberpass=".$nosyncmemberpass);
- // Clean parameters
- $this->civility_code = trim($this->civility_code);
- $this->lastname = trim($this->lastname);
- $this->firstname = trim($this->firstname);
- $this->ref_employee = trim($this->ref_employee);
- $this->national_registration_number = trim($this->national_registration_number);
- $this->employee = $this->employee ? $this->employee : 0;
- $this->login = trim($this->login);
- $this->gender = trim($this->gender);
- $this->pass = trim($this->pass);
- $this->api_key = trim($this->api_key);
- $this->address = $this->address ? trim($this->address) : trim($this->address);
- $this->zip = $this->zip ? trim($this->zip) : trim($this->zip);
- $this->town = $this->town ? trim($this->town) : trim($this->town);
- $this->setUpperOrLowerCase();
- $this->state_id = trim($this->state_id);
- $this->country_id = ($this->country_id > 0) ? $this->country_id : 0;
- $this->office_phone = trim($this->office_phone);
- $this->office_fax = trim($this->office_fax);
- $this->user_mobile = trim($this->user_mobile);
- $this->personal_mobile = trim($this->personal_mobile);
- $this->email = trim($this->email);
- $this->personal_email = trim($this->personal_email);
- $this->job = trim($this->job);
- $this->signature = trim($this->signature);
- $this->note_public = trim($this->note_public);
- $this->note_private = trim($this->note_private);
- $this->openid = trim(empty($this->openid) ? '' : $this->openid); // Avoid warning
- $this->admin = $this->admin ? $this->admin : 0;
- $this->address = empty($this->address) ? '' : $this->address;
- $this->zip = empty($this->zip) ? '' : $this->zip;
- $this->town = empty($this->town) ? '' : $this->town;
- $this->setUpperOrLowerCase();
- $this->accountancy_code = trim($this->accountancy_code);
- $this->color = empty($this->color) ? '' : $this->color;
- $this->dateemployment = empty($this->dateemployment) ? '' : $this->dateemployment;
- $this->dateemploymentend = empty($this->dateemploymentend) ? '' : $this->dateemploymentend;
- $this->datestartvalidity = empty($this->datestartvalidity) ? '' : $this->datestartvalidity;
- $this->dateendvalidity = empty($this->dateendvalidity) ? '' : $this->dateendvalidity;
- $this->birth = trim($this->birth);
- $this->fk_warehouse = (int) $this->fk_warehouse;
- // Check parameters
- $badCharUnauthorizedIntoLoginName = getDolGlobalString('MAIN_LOGIN_BADCHARUNAUTHORIZED', ',@<>"\'');
- if (!empty($conf->global->USER_MAIL_REQUIRED) && !isValidEMail($this->email)) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorBadEMail", $this->email);
- return -1;
- }
- if (empty($this->login)) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorFieldRequired", 'Login');
- return -1;
- } elseif (preg_match('/['.preg_quote($badCharUnauthorizedIntoLoginName, '/').']/', $this->login)) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorBadCharIntoLoginName");
- return -1;
- }
- $this->db->begin();
- // Check if login already exists in same entity or into entity 0.
- if (!empty($this->oldcopy) && $this->oldcopy->login != $this->login) {
- $sqltochecklogin = "SELECT COUNT(*) as nb FROM ".$this->db->prefix()."user WHERE entity IN (".$this->db->sanitize((int) $this->entity).", 0) AND login = '".$this->db->escape($this->login)."'";
- $resqltochecklogin = $this->db->query($sqltochecklogin);
- if ($resqltochecklogin) {
- $objtochecklogin = $this->db->fetch_object($resqltochecklogin);
- if ($objtochecklogin && $objtochecklogin->nb > 0) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorLoginAlreadyExists", $this->login);
- dol_syslog(get_class($this)."::create ".$this->error, LOG_DEBUG);
- $this->db->rollback();
- return -1;
- }
- }
- }
- if (!empty($this->oldcopy) && !empty($this->email) && $this->oldcopy->email != $this->email) {
- $sqltochecklogin = "SELECT COUNT(*) as nb FROM ".$this->db->prefix()."user WHERE entity IN (".$this->db->sanitize((int) $this->entity).", 0) AND email = '".$this->db->escape($this->email)."'";
- $resqltochecklogin = $this->db->query($sqltochecklogin);
- if ($resqltochecklogin) {
- $objtochecklogin = $this->db->fetch_object($resqltochecklogin);
- if ($objtochecklogin && $objtochecklogin->nb > 0) {
- $langs->load("errors");
- $this->error = $langs->trans("ErrorEmailAlreadyExists", $this->email);
- dol_syslog(get_class($this)."::create ".$this->error, LOG_DEBUG);
- $this->db->rollback();
- return -1;
- }
- }
- }
- // Update datas
- $sql = "UPDATE ".$this->db->prefix()."user SET";
- $sql .= " civility = '".$this->db->escape($this->civility_code)."'";
- $sql .= ", lastname = '".$this->db->escape($this->lastname)."'";
- $sql .= ", firstname = '".$this->db->escape($this->firstname)."'";
- $sql .= ", ref_employee = '".$this->db->escape($this->ref_employee)."'";
- $sql .= ", national_registration_number = '".$this->db->escape($this->national_registration_number)."'";
- $sql .= ", employee = ".(int) $this->employee;
- $sql .= ", login = '".$this->db->escape($this->login)."'";
- $sql .= ", api_key = ".($this->api_key ? "'".$this->db->escape($this->api_key)."'" : "null");
- $sql .= ", gender = ".($this->gender != -1 ? "'".$this->db->escape($this->gender)."'" : "null"); // 'man' or 'woman'
- $sql .= ", birth=".(strval($this->birth) != '' ? "'".$this->db->idate($this->birth, 'tzserver')."'" : 'null');
- if (!empty($user->admin)) {
- $sql .= ", admin = ".(int) $this->admin; // admin flag can be set/unset only by an admin user
- }
- $sql .= ", address = '".$this->db->escape($this->address)."'";
- $sql .= ", zip = '".$this->db->escape($this->zip)."'";
- $sql .= ", town = '".$this->db->escape($this->town)."'";
- $sql .= ", fk_state = ".((!empty($this->state_id) && $this->state_id > 0) ? "'".$this->db->escape($this->state_id)."'" : "null");
- $sql .= ", fk_country = ".((!empty($this->country_id) && $this->country_id > 0) ? "'".$this->db->escape($this->country_id)."'" : "null");
- $sql .= ", office_phone = '".$this->db->escape($this->office_phone)."'";
- $sql .= ", office_fax = '".$this->db->escape($this->office_fax)."'";
- $sql .= ", user_mobile = '".$this->db->escape($this->user_mobile)."'";
- $sql .= ", personal_mobile = '".$this->db->escape($this->personal_mobile)."'";
- $sql .= ", email = '".$this->db->escape($this->email)."'";
- $sql .= ", personal_email = '".$this->db->escape($this->personal_email)."'";
- $sql .= ", socialnetworks = '".$this->db->escape(json_encode($this->socialnetworks))."'";
- $sql .= ", job = '".$this->db->escape($this->job)."'";
- $sql .= ", signature = '".$this->db->escape($this->signature)."'";
- $sql .= ", accountancy_code = '".$this->db->escape($this->accountancy_code)."'";
- $sql .= ", color = '".$this->db->escape($this->color)."'";
- $sql .= ", dateemployment=".(strval($this->dateemployment) != '' ? "'".$this->db->idate($this->dateemployment)."'" : 'null');
- $sql .= ", dateemploymentend=".(strval($this->dateemploymentend) != '' ? "'".$this->db->idate($this->dateemploymentend)."'" : 'null');
- $sql .= ", datestartvalidity=".(strval($this->datestartvalidity) != '' ? "'".$this->db->idate($this->datestartvalidity)."'" : 'null');
- $sql .= ", dateendvalidity=".(strval($this->dateendvalidity) != '' ? "'".$this->db->idate($this->dateendvalidity)."'" : 'null');
- $sql .= ", note = '".$this->db->escape($this->note_private)."'";
- $sql .= ", note_public = '".$this->db->escape($this->note_public)."'";
- $sql .= ", photo = ".($this->photo ? "'".$this->db->escape($this->photo)."'" : "null");
- $sql .= ", openid = ".($this->openid ? "'".$this->db->escape($this->openid)."'" : "null");
- $sql .= ", fk_user = ".($this->fk_user > 0 ? "'".$this->db->escape($this->fk_user)."'" : "null");
- $sql .= ", fk_user_expense_validator = ".($this->fk_user_expense_validator > 0 ? "'".$this->db->escape($this->fk_user_expense_validator)."'" : "null");
- $sql .= ", fk_user_holiday_validator = ".($this->fk_user_holiday_validator > 0 ? "'".$this->db->escape($this->fk_user_holiday_validator)."'" : "null");
- if (isset($this->thm) || $this->thm != '') {
- $sql .= ", thm= ".($this->thm != '' ? "'".$this->db->escape($this->thm)."'" : "null");
- }
- if (isset($this->tjm) || $this->tjm != '') {
- $sql .= ", tjm= ".($this->tjm != '' ? "'".$this->db->escape($this->tjm)."'" : "null");
- }
- if (isset($this->salary) || $this->salary != '') {
- $sql .= ", salary= ".($this->salary != '' ? "'".$this->db->escape($this->salary)."'" : "null");
- }
- if (isset($this->salaryextra) || $this->salaryextra != '') {
- $sql .= ", salaryextra= ".($this->salaryextra != '' ? "'".$this->db->escape($this->salaryextra)."'" : "null");
- }
- $sql .= ", weeklyhours= ".($this->weeklyhours != '' ? "'".$this->db->escape($this->weeklyhours)."'" : "null");
- if (!empty($user->admin) && empty($user->entity) && $user->id != $this->id) {
- $sql .= ", entity = ".((int) $this->entity); // entity flag can be set/unset only by an another superadmin user
- }
- $sql .= ", default_range = ".($this->default_range > 0 ? $this->default_range : 'null');
- $sql .= ", default_c_exp_tax_cat = ".($this->default_c_exp_tax_cat > 0 ? $this->default_c_exp_tax_cat : 'null');
- $sql .= ", fk_warehouse = ".($this->fk_warehouse > 0 ? $this->fk_warehouse : "null");
- $sql .= ", lang = ".($this->lang ? "'".$this->db->escape($this->lang)."'" : "null");
- $sql .= " WHERE rowid = ".((int) $this->id);
- dol_syslog(get_class($this)."::update", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $nbrowsaffected += $this->db->affected_rows($resql);
- // Update password
- if (!empty($this->pass)) {
- if ($this->pass != $this->pass_indatabase && $this->pass != $this->pass_indatabase_crypted) {
- // If a new value for password is set and different than the one crypted into database
- $result = $this->setPassword($user, $this->pass, 0, $notrigger, $nosyncmemberpass);
- if ($result < 0) {
- return -5;
- }
- }
- }
- // If user is linked to a member, remove old link to this member
- if ($this->fk_member > 0) {
- dol_syslog(get_class($this)."::update remove link with member. We will recreate it later", LOG_DEBUG);
- $sql = "UPDATE ".$this->db->prefix()."user SET fk_member = NULL where fk_member = ".((int) $this->fk_member);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $this->error = $this->db->error(); $this->db->rollback(); return -5;
- }
- }
- // Set link to user
- dol_syslog(get_class($this)."::update set link with member", LOG_DEBUG);
- $sql = "UPDATE ".$this->db->prefix()."user SET fk_member =".($this->fk_member > 0 ? ((int) $this->fk_member) : 'null')." where rowid = ".((int) $this->id);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $this->error = $this->db->error(); $this->db->rollback(); return -5;
- }
- if ($nbrowsaffected) { // If something has changed in data
- if ($this->fk_member > 0 && !$nosyncmember) {
- dol_syslog(get_class($this)."::update user is linked with a member. We try to update member too.", LOG_DEBUG);
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- // This user is linked with a member, so we also update member information
- // if this is an update.
- $adh = new Adherent($this->db);
- $result = $adh->fetch($this->fk_member);
- if ($result > 0) {
- $adh->civility_code = $this->civility_code;
- $adh->firstname = $this->firstname;
- $adh->lastname = $this->lastname;
- $adh->login = $this->login;
- $adh->gender = $this->gender;
- $adh->birth = $this->birth;
- $adh->pass = $this->pass;
- //$adh->societe = (empty($adh->societe) && $this->societe_id ? $this->societe_id : $adh->societe);
- $adh->address = $this->address;
- $adh->town = $this->town;
- $adh->zip = $this->zip;
- $adh->state_id = $this->state_id;
- $adh->country_id = $this->country_id;
- $adh->email = $this->email;
- $adh->socialnetworks = $this->socialnetworks;
- $adh->phone = $this->office_phone;
- $adh->phone_mobile = $this->user_mobile;
- $adh->user_id = $this->id;
- $adh->user_login = $this->login;
- $result = $adh->update($user, 0, 1, 0);
- if ($result < 0) {
- $this->error = $adh->error;
- $this->errors = $adh->errors;
- dol_syslog(get_class($this)."::update error after calling adh->update to sync it with user: ".$this->error, LOG_ERR);
- $error++;
- }
- } elseif ($result < 0) {
- $this->error = $adh->error;
- $this->errors = $adh->errors;
- $error++;
- }
- }
- if ($this->contact_id > 0 && !$nosynccontact) {
- dol_syslog(get_class($this)."::update user is linked with a contact. We try to update contact too.", LOG_DEBUG);
- require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
- // This user is linked with a contact, so we also update contact information if this is an update.
- $tmpobj = new Contact($this->db);
- $result = $tmpobj->fetch($this->contact_id);
- if ($result >= 0) {
- $tmpobj->civility_code = $this->civility_code;
- $tmpobj->firstname = $this->firstname;
- $tmpobj->lastname = $this->lastname;
- $tmpobj->login = $this->login;
- $tmpobj->gender = $this->gender;
- $tmpobj->birth = $this->birth;
- //$tmpobj->pass=$this->pass;
- //$tmpobj->societe=(empty($tmpobj->societe) && $this->societe_id ? $this->societe_id : $tmpobj->societe);
- $tmpobj->email = $this->email;
- $tmpobj->socialnetworks = $this->socialnetworks;
- $tmpobj->phone_pro = $this->office_phone;
- $tmpobj->phone_mobile = $this->user_mobile;
- $tmpobj->fax = $this->office_fax;
- $tmpobj->address = $this->address;
- $tmpobj->town = $this->town;
- $tmpobj->zip = $this->zip;
- $tmpobj->state_id = $this->state_id;
- $tmpobj->country_id = $this->country_id;
- $tmpobj->user_id = $this->id;
- $tmpobj->user_login = $this->login;
- $result = $tmpobj->update($tmpobj->id, $user, 0, 'update', 1);
- if ($result < 0) {
- $this->error = $tmpobj->error;
- $this->errors = $tmpobj->errors;
- dol_syslog(get_class($this)."::update error after calling adh->update to sync it with user: ".$this->error, LOG_ERR);
- $error++;
- }
- } else {
- $this->error = $tmpobj->error;
- $this->errors = $tmpobj->errors;
- $error++;
- }
- }
- }
- $action = 'update';
- // Actions on extra fields
- if (!$error) {
- $result = $this->insertExtraFields();
- if ($result < 0) {
- $error++;
- }
- }
- if (!$error && !$notrigger) {
- // Call trigger
- $result = $this->call_trigger('USER_MODIFY', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- if (!$error) {
- $this->db->commit();
- return $nbrowsaffected;
- } else {
- dol_syslog(get_class($this)."::update error=".$this->error, LOG_ERR);
- $this->db->rollback();
- return -1;
- }
- } else {
- $this->error = $this->db->lasterror();
- $this->db->rollback();
- return -2;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Mise a jour en base de la date de derniere connexion d'un utilisateur
- * Fonction appelee lors d'une nouvelle connexion
- *
- * @return int <0 si echec, >=0 si ok
- */
- public function update_last_login_date()
- {
- // phpcs:enable
- $now = dol_now();
- $sql = "UPDATE ".$this->db->prefix()."user SET";
- $sql .= " datepreviouslogin = datelastlogin,";
- $sql .= " datelastlogin = '".$this->db->idate($now)."',";
- $sql .= " tms = tms"; // La date de derniere modif doit changer sauf pour la mise a jour de date de derniere connexion
- $sql .= " WHERE rowid = ".((int) $this->id);
- dol_syslog(get_class($this)."::update_last_login_date user->id=".$this->id." ".$sql, LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $this->datepreviouslogin = $this->datelastlogin;
- $this->datelastlogin = $now;
- return 1;
- } else {
- $this->error = $this->db->lasterror().' sql='.$sql;
- return -1;
- }
- }
- /**
- * Change password of a user
- *
- * @param User $user Object user of user requesting the change (not the user for who we change the password). May be unknown.
- * @param string $password New password, in clear text or already encrypted (to generate if not provided)
- * @param int $changelater 0=Default, 1=Save password into pass_temp to change password only after clicking on confirm email
- * @param int $notrigger 1=Does not launch triggers
- * @param int $nosyncmember Do not synchronize linked member
- * @param int $passwordalreadycrypted 0=Value is cleartext password, 1=Value is crypted value.
- * @return string If OK return clear password, 0 if no change (warning, you may retreive 1 instead of 0 even if password was same), < 0 if error
- */
- public function setPassword($user, $password = '', $changelater = 0, $notrigger = 0, $nosyncmember = 0, $passwordalreadycrypted = 0)
- {
- global $conf, $langs;
- require_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php';
- $error = 0;
- dol_syslog(get_class($this)."::setPassword user=".$user->id." password=".preg_replace('/./i', '*', $password)." changelater=".$changelater." notrigger=".$notrigger." nosyncmember=".$nosyncmember, LOG_DEBUG);
- // If new password not provided, we generate one
- if (!$password) {
- $password = getRandomPassword(false);
- }
- // Check and encrypt the password
- if (empty($passwordalreadycrypted)) {
- if (!empty($conf->global->USER_PASSWORD_GENERATED)) {
- // Add a check on rules for password syntax using the setup of the password generator
- $modGeneratePassClass = 'modGeneratePass'.ucfirst($conf->global->USER_PASSWORD_GENERATED);
- include_once DOL_DOCUMENT_ROOT.'/core/modules/security/generate/'.$modGeneratePassClass.'.class.php';
- if (class_exists($modGeneratePassClass)) {
- $modGeneratePass = new $modGeneratePassClass($this->db, $conf, $langs, $user);
- // To check an input user password, we disable the cleaning on ambiguous characters (this is used only for auto-generated password)
- $modGeneratePass->WithoutAmbi = 0;
- // Call to validatePassword($password) to check pass match rules
- $testpassword = $modGeneratePass->validatePassword($password);
- if (!$testpassword) {
- $this->error = $modGeneratePass->error;
- return -1;
- }
- }
- }
- // Now, we encrypt the new password
- $password_crypted = dol_hash($password);
- }
- // Update password
- if (!$changelater) {
- if (!is_object($this->oldcopy)) {
- $this->oldcopy = clone $this;
- }
- $this->db->begin();
- $sql = "UPDATE ".$this->db->prefix()."user";
- $sql .= " SET pass_crypted = '".$this->db->escape($password_crypted)."',";
- $sql .= " pass_temp = null";
- if (!empty($conf->global->DATABASE_PWD_ENCRYPTED)) {
- $sql .= ", pass = null";
- } else {
- $sql .= ", pass = '".$this->db->escape($password)."'";
- }
- $sql .= " WHERE rowid = ".((int) $this->id);
- dol_syslog(get_class($this)."::setPassword", LOG_DEBUG);
- $result = $this->db->query($sql);
- if ($result) {
- if ($this->db->affected_rows($result)) {
- $this->pass = $password;
- $this->pass_indatabase = $password;
- $this->pass_indatabase_crypted = $password_crypted;
- if ($this->fk_member && !$nosyncmember) {
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- // This user is linked with a member, so we also update members informations
- // if this is an update.
- $adh = new Adherent($this->db);
- $result = $adh->fetch($this->fk_member);
- if ($result >= 0) {
- $result = $adh->setPassword($user, $this->pass, (empty($conf->global->DATABASE_PWD_ENCRYPTED) ? 0 : 1), 1); // Cryptage non gere dans module adherent
- if ($result < 0) {
- $this->error = $adh->error;
- dol_syslog(get_class($this)."::setPassword ".$this->error, LOG_ERR);
- $error++;
- }
- } else {
- $this->error = $adh->error;
- $error++;
- }
- }
- dol_syslog(get_class($this)."::setPassword notrigger=".$notrigger." error=".$error, LOG_DEBUG);
- if (!$error && !$notrigger) {
- // Call trigger
- $result = $this->call_trigger('USER_NEW_PASSWORD', $user);
- if ($result < 0) {
- $error++; $this->db->rollback(); return -1;
- }
- // End call triggers
- }
- $this->db->commit();
- return $this->pass;
- } else {
- $this->db->rollback();
- return 0;
- }
- } else {
- $this->db->rollback();
- dol_print_error($this->db);
- return -1;
- }
- } else {
- // We store password in password temporary field.
- // After receiving confirmation link, we will erase and store it in pass_crypted
- $sql = "UPDATE ".$this->db->prefix()."user";
- $sql .= " SET pass_temp = '".$this->db->escape($password)."'";
- $sql .= " WHERE rowid = ".((int) $this->id);
- dol_syslog(get_class($this)."::setPassword", LOG_DEBUG); // No log
- $result = $this->db->query($sql);
- if ($result) {
- return $password;
- } else {
- dol_print_error($this->db);
- return -3;
- }
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Send new password by email
- *
- * @param User $user Object user that send the email (not the user we send too)
- * @param string $password New password
- * @param int $changelater 0=Send clear passwod into email, 1=Change password only after clicking on confirm email. @todo Add method 2 = Send link to reset password
- * @return int < 0 si erreur, > 0 si ok
- */
- public function send_password($user, $password = '', $changelater = 0)
- {
- // phpcs:enable
- global $conf, $langs, $mysoc;
- global $dolibarr_main_url_root;
- require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
- $msgishtml = 0;
- // Define $msg
- $mesg = '';
- $outputlangs = new Translate("", $conf);
- if (isset($this->conf->MAIN_LANG_DEFAULT)
- && $this->conf->MAIN_LANG_DEFAULT != 'auto') { // If user has defined its own language (rare because in most cases, auto is used)
- $outputlangs->getDefaultLang($this->conf->MAIN_LANG_DEFAULT);
- }
- if ($this->conf->MAIN_LANG_DEFAULT) {
- $outputlangs->setDefaultLang($this->conf->MAIN_LANG_DEFAULT);
- } else { // If user has not defined its own language, we used current language
- $outputlangs = $langs;
- }
- // Load translation files required by the page
- $outputlangs->loadLangs(array("main", "errors", "users", "other"));
- $appli = constant('DOL_APPLICATION_TITLE');
- if (!empty($conf->global->MAIN_APPLICATION_TITLE)) {
- $appli = $conf->global->MAIN_APPLICATION_TITLE;
- }
- $subject = '['.$mysoc->name.'] '.$outputlangs->transnoentitiesnoconv("SubjectNewPassword", $appli);
- // Define $urlwithroot
- $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
- $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
- if (!$changelater) {
- $url = $urlwithroot.'/';
- if (!empty($conf->global->URL_REDIRECTION_AFTER_CHANGEPASSWORD))
- $url = $conf->global->URL_REDIRECTION_AFTER_CHANGEPASSWORD;
- $mesg .= $outputlangs->transnoentitiesnoconv("RequestToResetPasswordReceived").".\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("NewKeyIs")." :\n\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("Login")." = ".$this->login."\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("Password")." = ".$password."\n\n";
- $mesg .= "\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("ClickHereToGoTo", $appli).': '.$url."\n\n";
- $mesg .= "--\n";
- $mesg .= $user->getFullName($outputlangs); // Username that send the email (not the user for who we want to reset password)
- dol_syslog(get_class($this)."::send_password changelater is off, url=".$url);
- } else {
- global $dolibarr_main_instance_unique_id;
- //print $password.'-'.$this->id.'-'.$dolibarr_main_instance_unique_id;
- $url = $urlwithroot.'/user/passwordforgotten.php?action=validatenewpassword';
- $url .= '&username='.urlencode($this->login)."&passworduidhash=".urlencode(dol_hash($password.'-'.$this->id.'-'.$dolibarr_main_instance_unique_id));
- $msgishtml = 1;
- $mesg .= $outputlangs->transnoentitiesnoconv("RequestToResetPasswordReceived")."<br>\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("NewKeyWillBe")." :<br>\n<br>\n";
- $mesg .= '<strong>'.$outputlangs->transnoentitiesnoconv("Login")."</strong> = ".$this->login."<br>\n";
- $mesg .= '<strong>'.$outputlangs->transnoentitiesnoconv("Password")."</strong> = ".$password."<br>\n<br>\n";
- $mesg .= "<br>\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("YouMustClickToChange")." :<br>\n";
- $mesg .= '<a href="'.$url.'" rel="noopener">'.$outputlangs->transnoentitiesnoconv("ConfirmPasswordChange").'</a>'."<br>\n<br>\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("ForgetIfNothing")."<br>\n<br>\n";
- dol_syslog(get_class($this)."::send_password changelater is on, url=".$url);
- }
- $trackid = 'use'.$this->id;
- $mailfile = new CMailFile(
- $subject,
- $this->email,
- $conf->global->MAIN_MAIL_EMAIL_FROM,
- $mesg,
- array(),
- array(),
- array(),
- '',
- '',
- 0,
- $msgishtml,
- '',
- '',
- $trackid
- );
- if ($mailfile->sendfile()) {
- return 1;
- } else {
- $langs->trans("errors");
- $this->error = $langs->trans("ErrorFailedToSendPassword").' '.$mailfile->error;
- return -1;
- }
- }
- /**
- * Renvoie la derniere erreur fonctionnelle de manipulation de l'objet
- *
- * @return string chaine erreur
- */
- public function error()
- {
- return $this->error;
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Read clicktodial information for user
- *
- * @return int <0 if KO, >0 if OK
- */
- public function fetch_clicktodial()
- {
- // phpcs:enable
- $sql = "SELECT url, login, pass, poste ";
- $sql .= " FROM ".$this->db->prefix()."user_clicktodial as u";
- $sql .= " WHERE u.fk_user = ".((int) $this->id);
- $resql = $this->db->query($sql);
- if ($resql) {
- if ($this->db->num_rows($resql)) {
- $obj = $this->db->fetch_object($resql);
- $this->clicktodial_url = $obj->url;
- $this->clicktodial_login = $obj->login;
- $this->clicktodial_password = $obj->pass;
- $this->clicktodial_poste = $obj->poste;
- }
- $this->clicktodial_loaded = 1; // Data loaded (found or not)
- $this->db->free($resql);
- return 1;
- } else {
- $this->error = $this->db->error();
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Update clicktodial info
- *
- * @return int <0 if KO, >0 if OK
- */
- public function update_clicktodial()
- {
- // phpcs:enable
- $this->db->begin();
- $sql = "DELETE FROM ".$this->db->prefix()."user_clicktodial";
- $sql .= " WHERE fk_user = ".((int) $this->id);
- dol_syslog(get_class($this).'::update_clicktodial', LOG_DEBUG);
- $result = $this->db->query($sql);
- $sql = "INSERT INTO ".$this->db->prefix()."user_clicktodial";
- $sql .= " (fk_user,url,login,pass,poste)";
- $sql .= " VALUES (".$this->id;
- $sql .= ", '".$this->db->escape($this->clicktodial_url)."'";
- $sql .= ", '".$this->db->escape($this->clicktodial_login)."'";
- $sql .= ", '".$this->db->escape($this->clicktodial_password)."'";
- $sql .= ", '".$this->db->escape($this->clicktodial_poste)."')";
- dol_syslog(get_class($this).'::update_clicktodial', LOG_DEBUG);
- $result = $this->db->query($sql);
- if ($result) {
- $this->db->commit();
- return 1;
- } else {
- $this->db->rollback();
- $this->error = $this->db->lasterror();
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Add user into a group
- *
- * @param int $group Id of group
- * @param int $entity Entity
- * @param int $notrigger Disable triggers
- * @return int <0 if KO, >0 if OK
- */
- public function SetInGroup($group, $entity, $notrigger = 0)
- {
- // phpcs:enable
- global $conf, $langs, $user;
- $error = 0;
- $this->db->begin();
- $sql = "DELETE FROM ".$this->db->prefix()."usergroup_user";
- $sql .= " WHERE fk_user = ".((int) $this->id);
- $sql .= " AND fk_usergroup = ".((int) $group);
- $sql .= " AND entity = ".((int) $entity);
- $result = $this->db->query($sql);
- $sql = "INSERT INTO ".$this->db->prefix()."usergroup_user (entity, fk_user, fk_usergroup)";
- $sql .= " VALUES (".((int) $entity).",".((int) $this->id).",".((int) $group).")";
- $result = $this->db->query($sql);
- if ($result) {
- if (!$error && !$notrigger) {
- $this->newgroupid = $group; // deprecated. Remove this.
- $this->context = array('audit'=>$langs->trans("UserSetInGroup"), 'newgroupid'=>$group);
- // Call trigger
- $result = $this->call_trigger('USER_MODIFY', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- if (!$error) {
- $this->db->commit();
- return 1;
- } else {
- dol_syslog(get_class($this)."::SetInGroup ".$this->error, LOG_ERR);
- $this->db->rollback();
- return -2;
- }
- } else {
- $this->error = $this->db->lasterror();
- $this->db->rollback();
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Remove a user from a group
- *
- * @param int $group Id of group
- * @param int $entity Entity
- * @param int $notrigger Disable triggers
- * @return int <0 if KO, >0 if OK
- */
- public function RemoveFromGroup($group, $entity, $notrigger = 0)
- {
- // phpcs:enable
- global $conf, $langs, $user;
- $error = 0;
- $this->db->begin();
- $sql = "DELETE FROM ".$this->db->prefix()."usergroup_user";
- $sql .= " WHERE fk_user = ".((int) $this->id);
- $sql .= " AND fk_usergroup = ".((int) $group);
- $sql .= " AND entity = ".((int) $entity);
- $result = $this->db->query($sql);
- if ($result) {
- if (!$error && !$notrigger) {
- $this->oldgroupid = $group; // deprecated. Remove this.
- $this->context = array('audit'=>$langs->trans("UserRemovedFromGroup"), 'oldgroupid'=>$group);
- // Call trigger
- $result = $this->call_trigger('USER_MODIFY', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- if (!$error) {
- $this->db->commit();
- return 1;
- } else {
- dol_syslog(get_class($this)."::RemoveFromGroup ".$this->error, LOG_ERR);
- $this->db->rollback();
- return -2;
- }
- } else {
- $this->error = $this->db->lasterror();
- $this->db->rollback();
- return -1;
- }
- }
- /**
- * Return a link with photo
- * Use this->id,this->photo
- *
- * @param int $width Width of image
- * @param int $height Height of image
- * @param string $cssclass Force a css class
- * @param string $imagesize 'mini', 'small' or '' (original)
- * @return string String with URL link
- */
- public function getPhotoUrl($width, $height, $cssclass = '', $imagesize = '')
- {
- $result = '<a href="'.DOL_URL_ROOT.'/user/card.php?id='.$this->id.'">';
- $result .= Form::showphoto('userphoto', $this, $width, $height, 0, $cssclass, $imagesize);
- $result .= '</a>';
- return $result;
- }
- /**
- * Return a link to the user card (with optionaly the picto)
- * Use this->id,this->lastname, this->firstname
- *
- * @param int $withpictoimg Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto, -1=Include photo into link, -2=Only picto photo, -3=Only photo very small)
- * @param string $option On what the link point to ('leave', 'accountancy', 'nolink', )
- * @param integer $infologin 0=Add default info tooltip, 1=Add complete info tooltip, -1=No info tooltip
- * @param integer $notooltip 1=Disable tooltip on picto and name
- * @param int $maxlen Max length of visible user name
- * @param int $hidethirdpartylogo Hide logo of thirdparty if user is external user
- * @param string $mode ''=Show firstname and lastname, 'firstname'=Show only firstname, 'firstelselast'=Show firstname or lastname if not defined, 'login'=Show login
- * @param string $morecss Add more css on link
- * @param int $save_lastsearch_value -1=Auto, 0=No save of lastsearch_values when clicking, 1=Save lastsearch_values whenclicking
- * @return string String with URL
- */
- public function getNomUrl($withpictoimg = 0, $option = '', $infologin = 0, $notooltip = 0, $maxlen = 24, $hidethirdpartylogo = 0, $mode = '', $morecss = '', $save_lastsearch_value = -1)
- {
- global $langs, $conf, $db, $hookmanager, $user;
- global $dolibarr_main_authentication, $dolibarr_main_demo;
- global $menumanager;
- if (!$user->rights->user->user->lire && $user->id != $this->id) {
- $option = 'nolink';
- }
- if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER) && $withpictoimg) {
- $withpictoimg = 0;
- }
- $result = ''; $label = '';
- $companylink = '';
- if (!empty($this->photo)) {
- $label .= '<div class="photointooltip floatright">';
- $label .= Form::showphoto('userphoto', $this, 0, 60, 0, 'photoref photowithmargin photologintooltip', 'small', 0, 1); // Force height to 60 so we total height of tooltip can be calculated and collision can be managed
- $label .= '</div>';
- //$label .= '<div style="clear: both;"></div>';
- }
- // Info Login
- $label .= '<div class="centpercent">';
- $label .= img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("User").'</u>';
- $label .= ' '.$this->getLibStatut(4);
- $label .= '<br><b>'.$langs->trans('Name').':</b> '.dol_string_nohtmltag($this->getFullName($langs, ''));
- if (!empty($this->login)) {
- $label .= '<br><b>'.$langs->trans('Login').':</b> '.dol_string_nohtmltag($this->login);
- }
- if (!empty($this->job)) {
- $label .= '<br><b>'.$langs->trans("Job").':</b> '.dol_string_nohtmltag($this->job);
- }
- $label .= '<br><b>'.$langs->trans("Email").':</b> '.dol_string_nohtmltag($this->email);
- if (!empty($this->office_phone) || !empty($this->office_fax) || !empty($this->fax)) {
- $phonelist = array();
- if ($this->office_phone) {
- $phonelist[] = dol_print_phone($this->office_phone, $this->country_code, $this->id, 0, '', ' ', 'phone');
- }
- if ($this->office_fax) {
- $phonelist[] = dol_print_phone($this->office_fax, $this->country_code, $this->id, 0, '', ' ', 'fax');
- }
- if ($this->user_mobile) {
- $phonelist[] = dol_print_phone($this->user_mobile, $this->country_code, $this->id, 0, '', ' ', 'mobile');
- }
- $label .= '<br><b>'.$langs->trans('Phone').':</b> '.implode(' ', $phonelist);
- }
- if (!empty($this->admin)) {
- $label .= '<br><b>'.$langs->trans("Administrator").'</b>: '.yn($this->admin);
- }
- if (!empty($this->accountancy_code) || $option == 'accountancy') {
- $label .= '<br><b>'.$langs->trans("AccountancyCode").'</b>: '.$this->accountancy_code;
- }
- $company = '';
- if (!empty($this->socid)) { // Add thirdparty for external users
- $thirdpartystatic = new Societe($db);
- $thirdpartystatic->fetch($this->socid);
- if (empty($hidethirdpartylogo)) {
- $companylink = ' '.$thirdpartystatic->getNomUrl(2, (($option == 'nolink') ? 'nolink' : '')); // picto only of company
- }
- $company = ' ('.$langs->trans("Company").': '.dol_string_nohtmltag($thirdpartystatic->name).')';
- }
- $type = ($this->socid ? $langs->trans("External").$company : $langs->trans("Internal"));
- $label .= '<br><b>'.$langs->trans("Type").':</b> '.dol_string_nohtmltag($type);
- $label .= '</div>';
- if ($infologin > 0) {
- $label .= '<br>';
- $label .= '<br><u>'.$langs->trans("Session").'</u>';
- $label .= '<br><b>'.$langs->trans("IPAddress").'</b>: '.dol_string_nohtmltag(getUserRemoteIP());
- if (!empty($conf->global->MAIN_MODULE_MULTICOMPANY)) {
- $label .= '<br><b>'.$langs->trans("ConnectedOnMultiCompany").':</b> '.$conf->entity.' (User entity '.$this->entity.')';
- }
- $label .= '<br><b>'.$langs->trans("AuthenticationMode").':</b> '.dol_string_nohtmltag($_SESSION["dol_authmode"].(empty($dolibarr_main_demo) ? '' : ' (demo)'));
- $label .= '<br><b>'.$langs->trans("ConnectedSince").':</b> '.dol_print_date($this->datelastlogin, "dayhour", 'tzuser');
- $label .= '<br><b>'.$langs->trans("PreviousConnexion").':</b> '.dol_print_date($this->datepreviouslogin, "dayhour", 'tzuser');
- $label .= '<br><b>'.$langs->trans("CurrentTheme").':</b> '.dol_string_nohtmltag($conf->theme);
- $label .= '<br><b>'.$langs->trans("CurrentMenuManager").':</b> '.dol_string_nohtmltag($menumanager->name);
- $s = picto_from_langcode($langs->getDefaultLang());
- $label .= '<br><b>'.$langs->trans("CurrentUserLanguage").':</b> '.dol_string_nohtmltag(($s ? $s.' ' : '').$langs->getDefaultLang());
- $label .= '<br><b>'.$langs->trans("Browser").':</b> '.dol_string_nohtmltag($conf->browser->name.($conf->browser->version ? ' '.$conf->browser->version : '').' ('.$_SERVER['HTTP_USER_AGENT'].')');
- $label .= '<br><b>'.$langs->trans("Layout").':</b> '.dol_string_nohtmltag($conf->browser->layout);
- $label .= '<br><b>'.$langs->trans("Screen").':</b> '.dol_string_nohtmltag($_SESSION['dol_screenwidth'].' x '.$_SESSION['dol_screenheight']);
- if ($conf->browser->layout == 'phone') {
- $label .= '<br><b>'.$langs->trans("Phone").':</b> '.$langs->trans("Yes");
- }
- if (!empty($_SESSION["disablemodules"])) {
- $label .= '<br><b>'.$langs->trans("DisabledModules").':</b> <br>'.dol_string_nohtmltag(join(', ', explode(',', $_SESSION["disablemodules"])));
- }
- }
- if ($infologin < 0) {
- $label = '';
- }
- $url = DOL_URL_ROOT.'/user/card.php?id='.$this->id;
- if ($option == 'leave') {
- $url = DOL_URL_ROOT.'/holiday/list.php?id='.$this->id;
- }
- if ($option != 'nolink') {
- // Add param to save lastsearch_values or not
- $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
- if ($save_lastsearch_value == -1 && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
- $add_save_lastsearch_values = 1;
- }
- if ($add_save_lastsearch_values) {
- $url .= '&save_lastsearch_values=1';
- }
- }
- $linkstart = '<a href="'.$url.'"';
- $linkclose = "";
- if (empty($notooltip)) {
- if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
- $langs->load("users");
- $label = $langs->trans("ShowUser");
- $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
- }
- $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
- $linkclose .= ' class="classfortooltip'.($morecss ? ' '.$morecss : '').'"';
- /*
- $hookmanager->initHooks(array('userdao'));
- $parameters=array('id'=>$this->id);
- $reshook=$hookmanager->executeHooks('getnomurltooltip',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks
- if ($reshook > 0) $linkclose = $hookmanager->resPrint;
- */
- }
- $linkstart .= $linkclose.'>';
- $linkend = '</a>';
- //if ($withpictoimg == -1) $result.='<div class="nowrap">';
- $result .= (($option == 'nolink') ? '' : $linkstart);
- if ($withpictoimg) {
- $paddafterimage = '';
- if (abs($withpictoimg) == 1) {
- $paddafterimage = 'style="margin-'.($langs->trans("DIRECTION") == 'rtl' ? 'left' : 'right').': 3px;"';
- }
- // Only picto
- if ($withpictoimg > 0) {
- $picto = '<!-- picto user --><span class="nopadding userimg'.($morecss ? ' '.$morecss : '').'">'.img_object('', 'user', $paddafterimage.' '.($notooltip ? '' : 'class="paddingright classfortooltip"'), 0, 0, $notooltip ? 0 : 1).'</span>';
- } else {
- // Picto must be a photo
- $picto = '<!-- picto photo user --><span class="nopadding userimg'.($morecss ? ' '.$morecss : '').'"'.($paddafterimage ? ' '.$paddafterimage : '').'>'.Form::showphoto('userphoto', $this, 0, 0, 0, 'userphoto'.($withpictoimg == -3 ? 'small' : ''), 'mini', 0, 1).'</span>';
- }
- $result .= $picto;
- }
- if ($withpictoimg > -2 && $withpictoimg != 2) {
- if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
- $result .= '<span class="nopadding usertext'.((!isset($this->statut) || $this->statut) ? '' : ' strikefordisabled').($morecss ? ' '.$morecss : '').'">';
- }
- if ($mode == 'login') {
- $result .= dol_string_nohtmltag(dol_trunc($this->login, $maxlen));
- } else {
- $result .= dol_string_nohtmltag($this->getFullName($langs, '', ($mode == 'firstelselast' ? 3 : ($mode == 'firstname' ? 2 : -1)), $maxlen));
- }
- if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
- $result .= '</span>';
- }
- }
- $result .= (($option == 'nolink') ? '' : $linkend);
- //if ($withpictoimg == -1) $result.='</div>';
- $result .= $companylink;
- global $action;
- $hookmanager->initHooks(array('userdao'));
- $parameters = array('id'=>$this->id, 'getnomurl' => &$result);
- $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook > 0) {
- $result = $hookmanager->resPrint;
- } else {
- $result .= $hookmanager->resPrint;
- }
- return $result;
- }
- /**
- * Return clickable link of login (eventualy with picto)
- *
- * @param int $withpictoimg Include picto into link (1=picto, -1=photo)
- * @param string $option On what the link point to ('leave', 'accountancy', 'nolink', )
- * @param integer $notooltip 1=Disable tooltip on picto and name
- * @param string $morecss Add more css on link
- * @return string String with URL
- */
- public function getLoginUrl($withpictoimg = 0, $option = '', $notooltip = 0, $morecss = '')
- {
- global $langs, $user;
- $result = '';
- $linkstart = '<a href="'.DOL_URL_ROOT.'/user/card.php?id='.$this->id.'">';
- $linkend = '</a>';
- //Check user's rights to see an other user
- if ((!$user->rights->user->user->lire && $this->id != $user->id)) {
- $option = 'nolink';
- }
- if ($option == 'xxx') {
- $linkstart = '<a href="'.DOL_URL_ROOT.'/user/card.php?id='.$this->id.'">';
- $linkend = '</a>';
- }
- if ($option == 'nolink') {
- $linkstart = '';
- $linkend = '';
- }
- $result .= $linkstart;
- if ($withpictoimg) {
- $paddafterimage = '';
- if (abs($withpictoimg) == 1) {
- $paddafterimage = 'style="margin-'.($langs->trans("DIRECTION") == 'rtl' ? 'left' : 'right').': 3px;"';
- }
- // Only picto
- if ($withpictoimg > 0) {
- $picto = '<!-- picto user --><span class="nopadding userimg'.($morecss ? ' '.$morecss : '').'">'.img_object('', 'user', $paddafterimage.' '.($notooltip ? '' : 'class="paddingright classfortooltip"'), 0, 0, $notooltip ? 0 : 1).'</span>';
- } else {
- // Picto must be a photo
- $picto = '<!-- picto photo user --><span class="nopadding userimg'.($morecss ? ' '.$morecss : '').'"'.($paddafterimage ? ' '.$paddafterimage : '').'>'.Form::showphoto('userphoto', $this, 0, 0, 0, 'userphoto'.($withpictoimg == -3 ? 'small' : ''), 'mini', 0, 1).'</span>';
- }
- $result .= $picto;
- }
- $result .= $this->login;
- $result .= $linkend;
- return $result;
- }
- /**
- * Return the label of the status of user (active, inactive)
- *
- * @param int $mode 0=long label, 1=short label, 2=Picto + short label, 3=Picto, 4=Picto + long label, 5=Short label + Picto, 6=Long label + Picto
- * @return string Label of status
- */
- public function getLibStatut($mode = 0)
- {
- return $this->LibStatut(isset($this->statut) ? $this->statut : $this->status, $mode);
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Return the label of a status of user (active, inactive)
- *
- * @param int $status Id status
- * @param int $mode 0=long label, 1=short label, 2=Picto + short label, 3=Picto, 4=Picto + long label, 5=Short label + Picto, 6=Long label + Picto
- * @return string Label of status
- */
- public function LibStatut($status, $mode = 0)
- {
- // phpcs:enable
- global $langs;
- if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
- global $langs;
- //$langs->load("mymodule");
- $this->labelStatus[self::STATUS_ENABLED] = $langs->transnoentitiesnoconv('Enabled');
- $this->labelStatus[self::STATUS_DISABLED] = $langs->transnoentitiesnoconv('Disabled');
- $this->labelStatusShort[self::STATUS_ENABLED] = $langs->transnoentitiesnoconv('Enabled');
- $this->labelStatusShort[self::STATUS_DISABLED] = $langs->transnoentitiesnoconv('Disabled');
- }
- $statusType = 'status5';
- if ($status == self::STATUS_ENABLED) {
- $statusType = 'status4';
- }
- return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Retourne chaine DN complete dans l'annuaire LDAP pour l'objet
- *
- * @param array $info Info array loaded by _load_ldap_info
- * @param int $mode 0=Return full DN (uid=qqq,ou=xxx,dc=aaa,dc=bbb)
- * 1=Return parent (ou=xxx,dc=aaa,dc=bbb)
- * 2=Return key only (RDN) (uid=qqq)
- * @return string DN
- */
- public function _load_ldap_dn($info, $mode = 0)
- {
- // phpcs:enable
- global $conf;
- $dn = '';
- if ($mode == 0) {
- $dn = $conf->global->LDAP_KEY_USERS."=".$info[$conf->global->LDAP_KEY_USERS].",".$conf->global->LDAP_USER_DN;
- } elseif ($mode == 1) {
- $dn = $conf->global->LDAP_USER_DN;
- } elseif ($mode == 2) {
- $dn = $conf->global->LDAP_KEY_USERS."=".$info[$conf->global->LDAP_KEY_USERS];
- }
- return $dn;
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Initialize the info array (array of LDAP values) that will be used to call LDAP functions
- *
- * @return array Tableau info des attributs
- */
- public function _load_ldap_info()
- {
- // phpcs:enable
- global $conf, $langs;
- $info = array();
- $socialnetworks = getArrayOfSocialNetworks();
- $keymodified = false;
- // Object classes
- $info["objectclass"] = explode(',', $conf->global->LDAP_USER_OBJECT_CLASS);
- $this->fullname = $this->getFullName($langs);
- // Possible LDAP KEY (constname => varname)
- $ldapkey = array(
- 'LDAP_FIELD_FULLNAME' => 'fullname',
- 'LDAP_FIELD_NAME' => 'lastname',
- 'LDAP_FIELD_FIRSTNAME' => 'firstname',
- 'LDAP_FIELD_LOGIN' => 'login',
- 'LDAP_FIELD_LOGIN_SAMBA'=> 'login',
- 'LDAP_FIELD_PHONE' => 'office_phone',
- 'LDAP_FIELD_MOBILE' => 'user_mobile',
- 'LDAP_FIELD_FAX' => 'office_fax',
- 'LDAP_FIELD_MAIL' => 'email',
- 'LDAP_FIELD_SID' => 'ldap_sid',
- );
- // Champs
- foreach ($ldapkey as $constname => $varname) {
- if (!empty($this->$varname) && !empty($conf->global->$constname)) {
- $info[$conf->global->$constname] = $this->$varname;
- // Check if it is the LDAP key and if its value has been changed
- if (!empty($conf->global->LDAP_KEY_USERS) && $conf->global->LDAP_KEY_USERS == $conf->global->$constname) {
- if (!empty($this->oldcopy) && $this->$varname != $this->oldcopy->$varname) {
- $keymodified = true; // For check if LDAP key has been modified
- }
- }
- }
- }
- foreach ($socialnetworks as $key => $value) {
- if (!empty($this->socialnetworks[$value['label']]) && !empty($conf->global->{'LDAP_FIELD_'.strtoupper($value['label'])})) {
- $info[$conf->global->{'LDAP_FIELD_'.strtoupper($value['label'])}] = $this->socialnetworks[$value['label']];
- }
- }
- if ($this->address && !empty($conf->global->LDAP_FIELD_ADDRESS)) {
- $info[$conf->global->LDAP_FIELD_ADDRESS] = $this->address;
- }
- if ($this->zip && !empty($conf->global->LDAP_FIELD_ZIP)) {
- $info[$conf->global->LDAP_FIELD_ZIP] = $this->zip;
- }
- if ($this->town && !empty($conf->global->LDAP_FIELD_TOWN)) {
- $info[$conf->global->LDAP_FIELD_TOWN] = $this->town;
- }
- if ($this->note_public && !empty($conf->global->LDAP_FIELD_DESCRIPTION)) {
- $info[$conf->global->LDAP_FIELD_DESCRIPTION] = dol_string_nohtmltag($this->note_public, 2);
- }
- if ($this->socid > 0) {
- $soc = new Societe($this->db);
- $soc->fetch($this->socid);
- $info[$conf->global->LDAP_FIELD_COMPANY] = $soc->name;
- if ($soc->client == 1) {
- $info["businessCategory"] = "Customers";
- }
- if ($soc->client == 2) {
- $info["businessCategory"] = "Prospects";
- }
- if ($soc->fournisseur == 1) {
- $info["businessCategory"] = "Suppliers";
- }
- }
- // When password is modified
- if (!empty($this->pass)) {
- if (!empty($conf->global->LDAP_FIELD_PASSWORD)) {
- $info[$conf->global->LDAP_FIELD_PASSWORD] = $this->pass; // this->pass = mot de passe non crypte
- }
- if (!empty($conf->global->LDAP_FIELD_PASSWORD_CRYPTED)) {
- $info[$conf->global->LDAP_FIELD_PASSWORD_CRYPTED] = dol_hash($this->pass, 'openldap'); // Create OpenLDAP password (see LDAP_PASSWORD_HASH_TYPE)
- }
- } elseif ($conf->global->LDAP_SERVER_PROTOCOLVERSION !== '3') {
- // Set LDAP password if possible
- // If ldap key is modified and LDAPv3 we use ldap_rename function for avoid lose encrypt password
- if (!empty($conf->global->DATABASE_PWD_ENCRYPTED)) {
- // Just for the default MD5 !
- if (empty($conf->global->MAIN_SECURITY_HASH_ALGO)) {
- if ($this->pass_indatabase_crypted && !empty($conf->global->LDAP_FIELD_PASSWORD_CRYPTED)) {
- $info[$conf->global->LDAP_FIELD_PASSWORD_CRYPTED] = dolGetLdapPasswordHash($this->pass_indatabase_crypted, 'md5frommd5'); // Create OpenLDAP MD5 password from Dolibarr MD5 password
- }
- }
- } elseif (!empty($this->pass_indatabase)) {
- // Use $this->pass_indatabase value if exists
- if (!empty($conf->global->LDAP_FIELD_PASSWORD)) {
- $info[$conf->global->LDAP_FIELD_PASSWORD] = $this->pass_indatabase; // $this->pass_indatabase = mot de passe non crypte
- }
- if (!empty($conf->global->LDAP_FIELD_PASSWORD_CRYPTED)) {
- $info[$conf->global->LDAP_FIELD_PASSWORD_CRYPTED] = dol_hash($this->pass_indatabase, 'openldap'); // Create OpenLDAP password (see LDAP_PASSWORD_HASH_TYPE)
- }
- }
- }
- if ($conf->global->LDAP_SERVER_TYPE == 'egroupware') {
- $info["objectclass"][4] = "phpgwContact"; // compatibilite egroupware
- $info['uidnumber'] = $this->id;
- $info['phpgwTz'] = 0;
- $info['phpgwMailType'] = 'INTERNET';
- $info['phpgwMailHomeType'] = 'INTERNET';
- $info["phpgwContactTypeId"] = 'n';
- $info["phpgwContactCatId"] = 0;
- $info["phpgwContactAccess"] = "public";
- if (dol_strlen($this->egroupware_id) == 0) {
- $this->egroupware_id = 1;
- }
- $info["phpgwContactOwner"] = $this->egroupware_id;
- if ($this->email) {
- $info["rfc822Mailbox"] = $this->email;
- }
- if ($this->phone_mobile) {
- $info["phpgwCellTelephoneNumber"] = $this->phone_mobile;
- }
- }
- if (!empty($conf->global->LDAP_FIELD_USERID)) {
- $info[$conf->global->LDAP_FIELD_USERID] = $this->id;
- }
- if (!empty($conf->global->LDAP_FIELD_GROUPID)) {
- $usergroup = new UserGroup($this->db);
- $groupslist = $usergroup->listGroupsForUser($this->id);
- $info[$conf->global->LDAP_FIELD_GROUPID] = '65534';
- if (!empty($groupslist)) {
- foreach ($groupslist as $groupforuser) {
- $info[$conf->global->LDAP_FIELD_GROUPID] = $groupforuser->id; //Select first group in list
- break;
- }
- }
- }
- if (!empty($conf->global->LDAP_FIELD_HOMEDIRECTORY) && !empty($conf->global->LDAP_FIELD_HOMEDIRECTORYPREFIX)) {
- $info[$conf->global->LDAP_FIELD_HOMEDIRECTORY] = "{$conf->global->LDAP_FIELD_HOMEDIRECTORYPREFIX}/$this->login";
- }
- return $info;
- }
- /**
- * Initialise an instance with random values.
- * Used to build previews or test instances.
- * id must be 0 if object instance is a specimen.
- *
- * @return int
- */
- public function initAsSpecimen()
- {
- global $user, $langs;
- $now = dol_now();
- // Initialise parametres
- $this->id = 0;
- $this->ref = 'SPECIMEN';
- $this->specimen = 1;
- $this->lastname = 'DOLIBARR';
- $this->firstname = 'SPECIMEN';
- $this->gender = 'man';
- $this->note_public = 'This is a note public';
- $this->note_private = 'This is a note private';
- $this->email = 'email@specimen.com';
- $this->personal_email = 'personalemail@specimen.com';
- $this->socialnetworks = array(
- 'skype' => 'skypepseudo',
- 'twitter' => 'twitterpseudo',
- 'facebook' => 'facebookpseudo',
- 'linkedin' => 'linkedinpseudo',
- );
- $this->office_phone = '0999999999';
- $this->office_fax = '0999999998';
- $this->user_mobile = '0999999997';
- $this->personal_mobile = '0999999996';
- $this->admin = 0;
- $this->login = 'dolibspec';
- $this->pass = 'dolibSpec+@123';
- //$this->pass_indatabase='dolibspec'; Set after a fetch
- //$this->pass_indatabase_crypted='e80ca5a88c892b0aaaf7e154853bccab'; Set after a fetch
- $this->datec = $now;
- $this->datem = $now;
- $this->datelastlogin = $now;
- $this->datepreviouslogin = $now;
- $this->statut = 1;
- $this->entity = 1;
- return 1;
- }
- /**
- * Load info of user object
- *
- * @param int $id Id of user to load
- * @return void
- */
- public function info($id)
- {
- $sql = "SELECT u.rowid, u.login as ref, u.datec,";
- $sql .= " u.tms as date_modification, u.entity";
- $sql .= " FROM ".$this->db->prefix()."user as u";
- $sql .= " WHERE u.rowid = ".((int) $id);
- $result = $this->db->query($sql);
- if ($result) {
- if ($this->db->num_rows($result)) {
- $obj = $this->db->fetch_object($result);
- $this->id = $obj->rowid;
- $this->ref = (!$obj->ref) ? $obj->rowid : $obj->ref;
- $this->date_creation = $this->db->jdate($obj->datec);
- $this->date_modification = $this->db->jdate($obj->date_modification);
- $this->entity = $obj->entity;
- }
- $this->db->free($result);
- } else {
- dol_print_error($this->db);
- }
- }
- /**
- * Return number of mass Emailing received by this contacts with its email
- *
- * @return int Number of EMailings
- */
- public function getNbOfEMailings()
- {
- $sql = "SELECT count(mc.email) as nb";
- $sql .= " FROM ".$this->db->prefix()."mailing_cibles as mc";
- $sql .= " WHERE mc.email = '".$this->db->escape($this->email)."'";
- $sql .= " AND mc.statut NOT IN (-1,0)"; // -1 erreur, 0 non envoye, 1 envoye avec succes
- $resql = $this->db->query($sql);
- if ($resql) {
- $obj = $this->db->fetch_object($resql);
- $nb = $obj->nb;
- $this->db->free($resql);
- return $nb;
- } else {
- $this->error = $this->db->error();
- return -1;
- }
- }
- /**
- * Return number of existing users
- *
- * @param string $limitTo Limit to '' or 'active'
- * @param string $option 'superadmin' = return for entity 0 only
- * @param int $admin Filter on admin tag
- * @return int Number of users
- */
- public function getNbOfUsers($limitTo, $option = '', $admin = -1)
- {
- global $conf;
- $sql = "SELECT count(rowid) as nb";
- $sql .= " FROM ".$this->db->prefix()."user";
- if ($option == 'superadmin') {
- $sql .= " WHERE entity = 0";
- } else {
- $sql .= " WHERE entity IN (".getEntity('user', 0).")";
- if ($limitTo == 'active') {
- $sql .= " AND statut = 1";
- }
- }
- if ($admin >= 0) {
- $sql .= " AND admin = ".(int) $admin;
- }
- $resql = $this->db->query($sql);
- if ($resql) {
- $obj = $this->db->fetch_object($resql);
- $nb = (int) $obj->nb;
- $this->db->free($resql);
- return $nb;
- } else {
- $this->error = $this->db->lasterror();
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Update user using data from the LDAP
- *
- * @param Object $ldapuser Ladp User
- * @return int <0 if KO, >0 if OK
- */
- public function update_ldap2dolibarr(&$ldapuser)
- {
- // phpcs:enable
- // TODO: Voir pourquoi le update met à jour avec toutes les valeurs vide (global $user écrase ?)
- global $user, $conf;
- $socialnetworks = getArrayOfSocialNetworks();
- $this->firstname = $ldapuser->{$conf->global->LDAP_FIELD_FIRSTNAME};
- $this->lastname = $ldapuser->{$conf->global->LDAP_FIELD_NAME};
- $this->login = $ldapuser->{$conf->global->LDAP_FIELD_LOGIN};
- $this->pass = $ldapuser->{$conf->global->LDAP_FIELD_PASSWORD};
- $this->pass_indatabase_crypted = $ldapuser->{$conf->global->LDAP_FIELD_PASSWORD_CRYPTED};
- $this->office_phone = $ldapuser->{$conf->global->LDAP_FIELD_PHONE};
- $this->user_mobile = $ldapuser->{$conf->global->LDAP_FIELD_MOBILE};
- $this->office_fax = $ldapuser->{$conf->global->LDAP_FIELD_FAX};
- $this->email = $ldapuser->{$conf->global->LDAP_FIELD_MAIL};
- foreach ($socialnetworks as $key => $value) {
- $tmpkey = 'LDAP_FIELD_'.strtoupper($value['label']);
- $this->socialnetworks[$value['label']] = $ldapuser->{$conf->global->$tmpkey};
- }
- $this->ldap_sid = $ldapuser->{$conf->global->LDAP_FIELD_SID};
- $this->job = $ldapuser->{$conf->global->LDAP_FIELD_TITLE};
- $this->note_public = $ldapuser->{$conf->global->LDAP_FIELD_DESCRIPTION};
- $result = $this->update($user);
- dol_syslog(get_class($this)."::update_ldap2dolibarr result=".$result, LOG_DEBUG);
- return $result;
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Return and array with all instanciated first level children users of current user
- *
- * @return User[]|int
- * @see getAllChildIds()
- */
- public function get_children()
- {
- // phpcs:enable
- $sql = "SELECT rowid FROM ".$this->db->prefix()."user";
- $sql .= " WHERE fk_user = ".((int) $this->id);
- dol_syslog(get_class($this)."::get_children", LOG_DEBUG);
- $res = $this->db->query($sql);
- if ($res) {
- $users = array();
- while ($rec = $this->db->fetch_array($res)) {
- $user = new User($this->db);
- $user->fetch($rec['rowid']);
- $users[] = $user;
- }
- return $users;
- } else {
- dol_print_error($this->db);
- return -1;
- }
- }
- /**
- * Load this->parentof that is array(id_son=>id_parent, ...)
- *
- * @return int <0 if KO, >0 if OK
- */
- private function loadParentOf()
- {
- global $conf;
- $this->parentof = array();
- // Load array[child]=parent
- $sql = "SELECT fk_user as id_parent, rowid as id_son";
- $sql .= " FROM ".$this->db->prefix()."user";
- $sql .= " WHERE fk_user <> 0";
- $sql .= " AND entity IN (".getEntity('user').")";
- dol_syslog(get_class($this)."::loadParentOf", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- while ($obj = $this->db->fetch_object($resql)) {
- $this->parentof[$obj->id_son] = $obj->id_parent;
- }
- return 1;
- } else {
- dol_print_error($this->db);
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Build the hierarchy/tree of users into an array.
- * Set and return this->users that is an array sorted according to tree with arrays of:
- * id = id user
- * lastname
- * firstname
- * fullname = nom avec chemin complet du user
- * fullpath = chemin complet compose des id: "_grandparentid_parentid_id"
- *
- * @param int $deleteafterid Removed all users including the leaf $deleteafterid (and all its child) in user tree.
- * @param string $filter SQL filter on users. This parameter must not come from user intput.
- * @return array Array of users $this->users. Note: $this->parentof is also set.
- */
- public function get_full_tree($deleteafterid = 0, $filter = '')
- {
- // phpcs:enable
- global $conf, $user;
- global $hookmanager;
- // Actions hooked (by external module)
- $hookmanager->initHooks(array('userdao'));
- $this->users = array();
- // Init this->parentof that is array(id_son=>id_parent, ...)
- $this->loadParentOf();
- // Init $this->users array
- $sql = "SELECT DISTINCT u.rowid, u.firstname, u.lastname, u.fk_user, u.fk_soc, u.login, u.email, u.gender, u.admin, u.statut, u.photo, u.entity"; // Distinct reduce pb with old tables with duplicates
- $sql .= " FROM ".$this->db->prefix()."user as u";
- // Add fields from hooks
- $parameters = array();
- $reshook = $hookmanager->executeHooks('printUserListWhere', $parameters); // Note that $action and $object may have been modified by hook
- if ($reshook > 0) {
- $sql .= $hookmanager->resPrint;
- } else {
- $sql .= " WHERE u.entity IN (".getEntity('user').")";
- }
- if ($filter) {
- $sql .= " AND ".$filter;
- }
- dol_syslog(get_class($this)."::get_full_tree get user list", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $i = 0;
- while ($obj = $this->db->fetch_object($resql)) {
- $this->users[$obj->rowid]['rowid'] = $obj->rowid;
- $this->users[$obj->rowid]['id'] = $obj->rowid;
- $this->users[$obj->rowid]['fk_user'] = $obj->fk_user;
- $this->users[$obj->rowid]['fk_soc'] = $obj->fk_soc;
- $this->users[$obj->rowid]['firstname'] = $obj->firstname;
- $this->users[$obj->rowid]['lastname'] = $obj->lastname;
- $this->users[$obj->rowid]['login'] = $obj->login;
- $this->users[$obj->rowid]['statut'] = $obj->statut;
- $this->users[$obj->rowid]['entity'] = $obj->entity;
- $this->users[$obj->rowid]['email'] = $obj->email;
- $this->users[$obj->rowid]['gender'] = $obj->gender;
- $this->users[$obj->rowid]['admin'] = $obj->admin;
- $this->users[$obj->rowid]['photo'] = $obj->photo;
- $i++;
- }
- } else {
- dol_print_error($this->db);
- return -1;
- }
- // We add the fullpath property to each elements of first level (no parent exists)
- dol_syslog(get_class($this)."::get_full_tree call to build_path_from_id_user", LOG_DEBUG);
- foreach ($this->users as $key => $val) {
- $result = $this->build_path_from_id_user($key, 0); // Process a branch from the root user key (this user has no parent)
- if ($result < 0) {
- $this->error = 'ErrorLoopInHierarchy';
- return -1;
- }
- }
- // Exclude leaf including $deleteafterid from tree
- if ($deleteafterid) {
- //print "Look to discard user ".$deleteafterid."\n";
- $keyfilter1 = '^'.$deleteafterid.'$';
- $keyfilter2 = '_'.$deleteafterid.'$';
- $keyfilter3 = '^'.$deleteafterid.'_';
- $keyfilter4 = '_'.$deleteafterid.'_';
- foreach ($this->users as $key => $val) {
- if (preg_match('/'.$keyfilter1.'/', $val['fullpath']) || preg_match('/'.$keyfilter2.'/', $val['fullpath'])
- || preg_match('/'.$keyfilter3.'/', $val['fullpath']) || preg_match('/'.$keyfilter4.'/', $val['fullpath'])) {
- unset($this->users[$key]);
- }
- }
- }
- dol_syslog(get_class($this)."::get_full_tree dol_sort_array", LOG_DEBUG);
- $this->users = dol_sort_array($this->users, 'fullname', 'asc', true, false);
- //var_dump($this->users);
- return $this->users;
- }
- /**
- * Return list of all child users id in herarchy (all sublevels).
- * Note: Calling this function also reset full list of users into $this->users.
- *
- * @param int $addcurrentuser 1=Add also current user id to the list.
- * @return array Array of user id lower than user (all levels under user). This overwrite this->users.
- * @see get_children()
- */
- public function getAllChildIds($addcurrentuser = 0)
- {
- $childids = array();
- if (isset($this->cache_childids[$this->id])) {
- $childids = $this->cache_childids[$this->id];
- } else {
- // Init this->users
- $this->get_full_tree();
- $idtoscan = $this->id;
- dol_syslog("Build childid for id = ".$idtoscan);
- foreach ($this->users as $id => $val) {
- //var_dump($val['fullpath']);
- if (preg_match('/_'.$idtoscan.'_/', $val['fullpath'])) {
- $childids[$val['id']] = $val['id'];
- }
- }
- }
- $this->cache_childids[$this->id] = $childids;
- if ($addcurrentuser) {
- $childids[$this->id] = $this->id;
- }
- return $childids;
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * For user id_user and its childs available in this->users, define property fullpath and fullname.
- * Function called by get_full_tree().
- *
- * @param int $id_user id_user entry to update
- * @param int $protection Deep counter to avoid infinite loop (no more required, a protection is added with array useridfound)
- * @return int < 0 if KO (infinit loop), >= 0 if OK
- */
- public function build_path_from_id_user($id_user, $protection = 0)
- {
- // phpcs:enable
- //dol_syslog(get_class($this)."::build_path_from_id_user id_user=".$id_user." protection=".$protection, LOG_DEBUG);
- if (!empty($this->users[$id_user]['fullpath'])) {
- // Already defined
- dol_syslog(get_class($this)."::build_path_from_id_user fullpath and fullname already defined", LOG_WARNING);
- return 0;
- }
- // Define fullpath and fullname
- $this->users[$id_user]['fullpath'] = '_'.$id_user;
- $this->users[$id_user]['fullname'] = $this->users[$id_user]['lastname'];
- $i = 0; $cursor_user = $id_user;
- $useridfound = array($id_user);
- while (!empty($this->parentof[$cursor_user]) && !empty($this->users[$this->parentof[$cursor_user]])) {
- if (in_array($this->parentof[$cursor_user], $useridfound)) {
- dol_syslog("The hierarchy of user has a recursive loop", LOG_WARNING);
- return -1; // Should not happen. Protection against looping hierarchy
- }
- $useridfound[] = $this->parentof[$cursor_user];
- $this->users[$id_user]['fullpath'] = '_'.$this->parentof[$cursor_user].$this->users[$id_user]['fullpath'];
- $this->users[$id_user]['fullname'] = $this->users[$this->parentof[$cursor_user]]['lastname'].' >> '.$this->users[$id_user]['fullname'];
- $i++; $cursor_user = $this->parentof[$cursor_user];
- }
- // We count number of _ to have level
- $this->users[$id_user]['level'] = dol_strlen(preg_replace('/[^_]/i', '', $this->users[$id_user]['fullpath']));
- return 1;
- }
- /**
- * Function used to replace a thirdparty id with another one.
- *
- * @param DoliDB $db Database handler
- * @param int $origin_id Old thirdparty id
- * @param int $dest_id New thirdparty id
- * @return bool
- */
- public static function replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
- {
- $tables = array(
- 'user',
- );
- return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Load metrics this->nb for dashboard
- *
- * @return int <0 if KO, >0 if OK
- */
- public function load_state_board()
- {
- // phpcs:enable
- global $conf;
- $this->nb = array();
- $sql = "SELECT COUNT(DISTINCT u.rowid) as nb";
- $sql .= " FROM ".$this->db->prefix()."user as u";
- if (!empty($conf->multicompany->enabled) && !empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) {
- $sql .= ", ".$this->db->prefix()."usergroup_user as ug";
- $sql .= " WHERE ug.entity IN (".getEntity('usergroup').")";
- $sql .= " AND ug.fk_user = u.rowid";
- } else {
- $sql .= " WHERE u.entity IN (".getEntity('user').")";
- }
- $sql .= " AND u.statut > 0";
- //$sql.= " AND employee != 0";
- $resql = $this->db->query($sql);
- if ($resql) {
- while ($obj = $this->db->fetch_object($resql)) {
- $this->nb["users"] = $obj->nb;
- }
- $this->db->free($resql);
- return 1;
- } else {
- dol_print_error($this->db);
- $this->error = $this->db->error();
- return -1;
- }
- }
- /**
- * Create a document onto disk according to template module.
- *
- * @param string $modele Force model to use ('' to not force)
- * @param Translate $outputlangs Object langs to use for output
- * @param int $hidedetails Hide details of lines
- * @param int $hidedesc Hide description
- * @param int $hideref Hide ref
- * @param null|array $moreparams Array to provide more information
- * @return int 0 if KO, 1 if OK
- */
- public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
- {
- global $conf, $user, $langs;
- $langs->load("user");
- // Positionne le modele sur le nom du modele a utiliser
- if (!dol_strlen($modele)) {
- if (!empty($conf->global->USER_ADDON_PDF)) {
- $modele = $conf->global->USER_ADDON_PDF;
- } else {
- $modele = 'bluesky';
- }
- }
- $modelpath = "core/modules/user/doc/";
- return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Return property of user from its id
- *
- * @param int $rowid id of contact
- * @param string $mode 'email' or 'mobile'
- * @return string Email of user with format: "Full name <email>"
- */
- public function user_get_property($rowid, $mode)
- {
- // phpcs:enable
- $user_property = '';
- if (empty($rowid)) {
- return '';
- }
- $sql = "SELECT rowid, email, user_mobile, civility, lastname, firstname";
- $sql .= " FROM ".$this->db->prefix()."user";
- $sql .= " WHERE rowid = ".((int) $rowid);
- $resql = $this->db->query($sql);
- if ($resql) {
- $nump = $this->db->num_rows($resql);
- if ($nump) {
- $obj = $this->db->fetch_object($resql);
- if ($mode == 'email') {
- $user_property = dolGetFirstLastname($obj->firstname, $obj->lastname)." <".$obj->email.">";
- } elseif ($mode == 'mobile') {
- $user_property = $obj->user_mobile;
- }
- }
- return $user_property;
- } else {
- dol_print_error($this->db);
- }
- }
- /**
- * Load all objects into $this->users
- *
- * @param string $sortorder sort order
- * @param string $sortfield sort field
- * @param int $limit limit page
- * @param int $offset page
- * @param array $filter Filter array. Example array('field'=>'valueforlike', 'customurl'=>...)
- * @param string $filtermode Filter mode (AND or OR)
- * @param bool $entityfilter Activate entity filter
- * @return int <0 if KO, >0 if OK
- */
- public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, $filter = array(), $filtermode = 'AND', $entityfilter = false)
- {
- global $conf, $user;
- $sql = "SELECT t.rowid";
- $sql .= ' FROM '.$this->db->prefix().$this->table_element.' as t ';
- if ($entityfilter) {
- if (!empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) {
- if (!empty($user->admin) && empty($user->entity) && $conf->entity == 1) {
- $sql .= " WHERE t.entity IS NOT NULL"; // Show all users
- } else {
- $sql .= ",".$this->db->prefix()."usergroup_user as ug";
- $sql .= " WHERE ((ug.fk_user = t.rowid";
- $sql .= " AND ug.entity IN (".getEntity('user')."))";
- $sql .= " OR t.entity = 0)"; // Show always superadmin
- }
- } else {
- $sql .= " WHERE t.entity IN (".getEntity('user').")";
- }
- } else {
- $sql .= " WHERE 1 = 1";
- }
- // Manage filter
- $sqlwhere = array();
- if (!empty($filter)) {
- foreach ($filter as $key => $value) {
- if ($key == 't.rowid') {
- $sqlwhere[] = $key." = ".((int) $value);
- } elseif (in_array($this->fields[$key]['type'], array('date', 'datetime', 'timestamp'))) {
- $sqlwhere[] = $key." = '".$this->db->idate($value)."'";
- } elseif ($key == 'customsql') {
- $sqlwhere[] = $value;
- } else {
- $sqlwhere[] = $key." LIKE '%".$this->db->escape($value)."%'";
- }
- }
- }
- if (count($sqlwhere) > 0) {
- $sql .= ' AND ('.implode(' '.$this->db->escape($filtermode).' ', $sqlwhere).')';
- }
- $sql .= $this->db->order($sortfield, $sortorder);
- if ($limit) {
- $sql .= $this->db->plimit($limit + 1, $offset);
- }
- dol_syslog(__METHOD__, LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $this->users = array();
- $num = $this->db->num_rows($resql);
- if ($num) {
- while ($obj = $this->db->fetch_object($resql)) {
- $line = new self($this->db);
- $result = $line->fetch($obj->rowid);
- if ($result > 0 && !empty($line->id)) {
- $this->users[$obj->rowid] = clone $line;
- }
- }
- $this->db->free($resql);
- }
- return $num;
- } else {
- $this->errors[] = $this->db->lasterror();
- return -1;
- }
- }
- /**
- * Cache the SQL results of the function "findUserIdByEmail($email)"
- *
- * NOTE: findUserIdByEmailCache[...] === -1 means not found in database
- *
- * @var array
- */
- private $findUserIdByEmailCache;
- /**
- * Find a user by the given e-mail and return it's user id when found
- *
- * NOTE:
- * Use AGENDA_DISABLE_EXACT_USER_EMAIL_COMPARE_FOR_EXTERNAL_CALENDAR
- * to disable exact e-mail search
- *
- * @param string $email The full e-mail (or a part of a e-mail)
- * @return int <0 = user was not found, >0 = The id of the user
- */
- public function findUserIdByEmail($email)
- {
- if ($this->findUserIdByEmailCache[$email]) {
- return $this->findUserIdByEmailCache[$email];
- }
- $this->findUserIdByEmailCache[$email] = -1;
- global $conf;
- $sql = 'SELECT rowid';
- $sql .= ' FROM '.$this->db->prefix().'user';
- if (!empty($conf->global->AGENDA_DISABLE_EXACT_USER_EMAIL_COMPARE_FOR_EXTERNAL_CALENDAR)) {
- $sql .= " WHERE email LIKE '%".$this->db->escape($email)."%'";
- } else {
- $sql .= " WHERE email = '".$this->db->escape($email)."'";
- }
- $sql .= ' LIMIT 1';
- $resql = $this->db->query($sql);
- if (!$resql) {
- return -1;
- }
- $obj = $this->db->fetch_object($resql);
- if (!$obj) {
- return -1;
- }
- $this->findUserIdByEmailCache[$email] = (int) $obj->rowid;
- return $this->findUserIdByEmailCache[$email];
- }
- }
|