| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839 |
- <?php
- if (!defined("CONFIG")) {
- die("Not defined");
- }
- require_once($_SERVER['DOCUMENT_ROOT'] . "/inc/consts.php");
- require_once($_SERVER['DOCUMENT_ROOT'] . "/inc/snmp.php");
- //ValidIpAddressRegex = "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$";
- //ValidHostnameRegex = "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$";
- //$ValidMacAddressRegex="^([0-9A-Fa-f]{2}[:-]){5}[0-9A-Fa-f]{2}|([0-9a-fA-F]{4}[\\.-][0-9a-fA-F]{4}[\\.-][0-9a-fA-F]{4})|[0-9A-Fa-f]{12}$";
- $config["init"] = 0;
- // #### vendor id
- // 1, Unknown
- // 2, 'Eltex'
- // 3, 'Huawei'
- // 4, 'Zyxel'
- // 5, 'Raisecom'
- // 6, 'SNR'
- // 7, 'Dlink'
- // 8, 'Allied Telesis'
- // 9, 'Mikrotik'
- // 10, 'NetGear'
- // 11, 'Ubiquiti'
- // 15, 'HP'
- // 16, 'Cisco'
- // 17, 'Maipu'
- // 18, 'Asus'
- // Функция для безопасного получения параметров
- /*
- FILTER_DEFAULT // Без фильтрации (по умолчанию)
- FILTER_UNSAFE_RAW // Без фильтрации (аналогично FILTER_DEFAULT)
- FILTER_CALLBACK // Пользовательская функция обратного вызова
- FILTER_VALIDATE_BOOLEAN // true/false/1/0/"1"/"0"/"yes"/"no"
- FILTER_VALIDATE_EMAIL // Email адрес
- FILTER_VALIDATE_FLOAT // Число с плавающей точкой
- FILTER_VALIDATE_INT // Целое число
- FILTER_VALIDATE_IP // IP адрес (IPv4/IPv6)
- FILTER_VALIDATE_REGEXP // По регулярному выражению
- FILTER_VALIDATE_URL // URL адрес
- FILTER_VALIDATE_DOMAIN // Доменное имя (PHP 7.0+)
- FILTER_SANITIZE_EMAIL // Удаляет все кроме букв, цифр и !#$%&'*+-/=?^_`{|}~@.[]
- FILTER_SANITIZE_ENCODED // URL-encode строка
- FILTER_SANITIZE_MAGIC_QUOTES // Apply addslashes()
- FILTER_SANITIZE_NUMBER_FLOAT // Удаляет все кроме цифр, +- и .,eE
- FILTER_SANITIZE_NUMBER_INT // Удаляет все кроме цифр и +-
- FILTER_SANITIZE_SPECIAL_CHARS // HTML-escape '"<>& и символы с ASCII < 32
- FILTER_SANITIZE_FULL_SPECIAL_CHARS // Эквивалентно htmlspecialchars()
- FILTER_SANITIZE_STRING // Устарело - используйте FILTER_SANITIZE_FULL_SPECIAL_CHARS
- FILTER_SANITIZE_STRIPPED // Устарело
- FILTER_SANITIZE_URL // Удаляет все кроме букв, цифр и $-_.+!*'(),{}|\\^~[]`<>#%";/?:@&=
- Flags::
- // Для FILTER_VALIDATE_BOOLEAN
- FILTER_NULL_ON_FAILURE // Возвращает null вместо false при failure
- // Для FILTER_VALIDATE_INT
- FILTER_FLAG_ALLOW_OCTAL // Разрешает восьмеричные числа (0123)
- FILTER_FLAG_ALLOW_HEX // Разрешает шестнадцатеричные числа (0x1A)
- // Для FILTER_VALIDATE_FLOAT
- FILTER_FLAG_ALLOW_THOUSAND // Разрешает разделитель тысяч (1,234.56)
- FILTER_FLAG_ALLOW_SCIENTIFIC// Разрешает научную нотацию (1.2e3)
- // Для FILTER_VALIDATE_IP
- FILTER_FLAG_IPV4 // Только IPv4
- FILTER_FLAG_IPV6 // Только IPv6
- FILTER_FLAG_NO_PRIV_RANGE // Запрещает частные IP (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16)
- FILTER_FLAG_NO_RES_RANGE // Запрещает зарезервированные IP
- FILTER_FLAG_GLOBAL_RANGE // Разрешает только глобальные IP
- // Для FILTER_VALIDATE_URL
- FILTER_FLAG_PATH_REQUIRED // Требует наличие path (/page.html)
- FILTER_FLAG_QUERY_REQUIRED // Требует наличие query string (?id=1)
- // Для FILTER_SANITIZE_STRING
- FILTER_FLAG_NO_ENCODE_QUOTES // Не кодировать кавычки
- FILTER_FLAG_STRIP_LOW // Удаляет символы с ASCII < 32
- FILTER_FLAG_STRIP_HIGH // Удаляет символы с ASCII > 127
- FILTER_FLAG_ENCODE_LOW // Кодирует символы с ASCII < 32
- FILTER_FLAG_ENCODE_HIGH // Кодирует символы с ASCII > 127
- FILTER_FLAG_ENCODE_AMP // Кодирует амперсанд (&)
- */
- function capture_print_r($var) {
- ob_start();
- print_r($var);
- return ob_get_clean();
- }
- /**
- * Получает параметр (скаляр или массив) из POST/GET, с опциональной валидацией каждого элемента
- */
- function getParam($name, $page_url = null, $default = null, $filter = FILTER_DEFAULT, $options = []) {
- if (isset($_POST[$name]) && is_array($_POST[$name])) {
- return $_POST[$name];
- }
- if (isset($_GET[$name]) && is_array($_GET[$name])) {
- return $_GET[$name];
- }
- // Если не массив — пробуем как скаляр
- if ((isset($_POST[$name]) && $_POST[$name]==='') || (isset($_GET[$name]) && $_GET[$name]==='')) {
- if ($page_url !== null && isset($_SESSION[$page_url][$name])) {
- return $_SESSION[$page_url][$name];
- }
- return $default;
- }
- $value = filter_input(INPUT_POST, $name, $filter, $options) ??
- filter_input(INPUT_GET, $name, $filter, $options);
- if ($value === false || $value === null) {
- if ($page_url !== null && isset($_SESSION[$page_url][$name])) {
- return $_SESSION[$page_url][$name];
- }
- return $default;
- }
- return $value;
- }
- /**
- * Получает параметр только из POST (скаляр или массив)
- */
- function getPOST($name, $page_url = null, $default = null, $filter = FILTER_DEFAULT, $options = []) {
- if (isset($_POST[$name]) && is_array($_POST[$name])) {
- return $_POST[$name];
- }
- if (isset($_POST[$name]) && $_POST[$name]==='') {
- if ($page_url !== null && isset($_SESSION[$page_url][$name])) {
- return $_SESSION[$page_url][$name];
- }
- return $default;
- }
- $value = filter_input(INPUT_POST, $name, $filter, $options);
- if ($value === false || $value === null) {
- if ($page_url !== null && isset($_SESSION[$page_url][$name])) {
- return $_SESSION[$page_url][$name];
- }
- return $default;
- }
- return $value;
- }
- function intval_or_zero($v): int {
- return is_numeric($v) ? intval($v) : 0;
- }
- function normalize_vlan($vlan): int {
- $v = intval_or_zero($vlan);
- return ($v >= 1 && $v <= 4096) ? $v : 1;
- }
- function validate_dhcp_range(int $start, int $stop, int $net_start, int $net_stop): bool {
- if (!$start || !$stop) return false;
- if ($start >= $stop) return false;
- if ($start <= $net_start) return false;
- if ($stop >= $net_stop) return false;
- return true;
- }
- function get_dhcp_gateway($gw_raw, $fallback): int {
- $gw = ip2long(trim((string)$gw_raw));
- return $gw ? $gw : $fallback;
- }
- function safeUrlEncode($url) {
- // Сначала декодируем на случай двойного кодирования
- $decoded = urldecode($url);
- // Если после декодирования получили другой результат - значит был закодирован
- if ($decoded !== $url) {
- // Уже был закодирован - возвращаем декодированную версию
- return $url; // Или $decoded в зависимости от логики
- }
- // Не был закодирован - кодируем
- return urlencode($url);
- }
- function getSafeRedirectUrl(string $default = '/'): string {
- $url = filter_input(INPUT_GET, 'redirect_url', FILTER_SANITIZE_URL)
- ?? filter_input(INPUT_POST, 'redirect_url', FILTER_SANITIZE_URL)
- ?? $default;
- $default = safeUrlEncode($default);
- $decodedUrl = urldecode($url);
- // Проверяем:
- // 1. URL начинается с `/` (но не `//` или `http://`)
- // 2. Содержит только разрешённые символы (a-z, 0-9, -, _, /, ?, =, &, ., ~)
- if (!preg_match('/^\/(?!\/)[a-z0-9\-_\/?=&.~]*$/i', $decodedUrl)) {
- return $default;
- }
- // Проверяем:
- // 1. Начинается с /, не содержит //, ~, %00
- // 2. Разрешённые символы: a-z, 0-9, -, _, /, ?, =, &, .
- // 3. Допустимые форматы:
- // - /path/ (слэш на конце)
- // - /path (без слэша)
- // - /file.html (только .html)
- // - /script.php (только .php)
- // - Любой вариант с параметрами (?id=1)
- if (!preg_match(
- '/^\/' // Начинается с /
- . '(?!\/)' // Не //
- . '[a-z0-9\-_\/?=&.]*' // Разрешённые символы
- . '(?:\/' // Варианты окончаний:
- . '|\.(html|php)(?:\?[a-z0-9\-_=&]*)?' // .html/.php (+ параметры)
- . '|(?:\?[a-z0-9\-_=&]*)?' // Или параметры без расширения
- . ')$/i',
- $decodedUrl
- )) {
- return $default;
- }
- // Дополнительная защита: явно блокируем /config/, /vendor/ и т.д.
- if (preg_match('/(^|\/)(cfg|inc|log|sessions|tmp)(\/|$)/i', $decodedUrl)) {
- return $default;
- }
- return safeUrlEncode($url);
- }
- function randomPassword($length = 8)
- {
- $alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
- $pass = array(); //remember to declare $pass as an array
- $alphaLength = strlen($alphabet) - 1; //put the length -1 in cache
- for ($i = 0; $i < $length; $i++) {
- $n = rand(0, $alphaLength);
- $pass[] = $alphabet[$n];
- }
- return implode($pass); //turn the array into a string
- }
- if (!function_exists('mb_ucfirst')) {
- function mb_ucfirst(string $string, ?string $encoding = null): string
- {
- if ($string === '') {
- return '';
- }
- $encoding ??= mb_internal_encoding();
- $firstChar = mb_substr($string, 0, 1, $encoding);
- return mb_strtoupper($firstChar, $encoding) .
- mb_substr($string, 1, null, $encoding);
- }
- }
- function get_user_ip()
- {
- $auth_ip = getenv("HTTP_CLIENT_IP");
- if (empty($auth_ip)) {
- $auth_ip = getenv("HTTP_X_FORWARDED_FOR");
- if (empty($auth_ip)) {
- $auth_ip = getenv("REMOTE_ADDR");
- if (empty($auth_ip)) {
- $auth_ip = $_SERVER['REMOTE_ADDR'];
- }
- }
- }
- return $auth_ip;
- }
- function fbytes($traff)
- {
- $units_IEC = array(
- "",
- "Ki",
- "Mi",
- "Gi",
- "Ti"
- );
- $units_metric = array(
- "",
- "k",
- "M",
- "G",
- "T"
- );
- if (!empty($traff) and $traff > 0) {
- $KB = get_const('KB');
- if ($KB) {
- $KB = 1024;
- } else {
- $KB = 1000;
- }
- //IEC
- if ($KB == 1024) {
- $index = min(((int) log($traff, $KB)), count($units_IEC) - 1);
- $result = round($traff / pow($KB, $index), 3) . ' ' . $units_IEC[$index] . 'B';
- } else {
- $index = min(((int) log($traff, $KB)), count($units_metric) - 1);
- $result = round($traff / pow($KB, $index), 3) . ' ' . $units_metric[$index] . 'B';
- }
- } else {
- $result = '0 B';
- }
- return $result;
- }
- function fpkts($packets)
- {
- $units = array(
- "",
- "k",
- "M",
- "G",
- "T"
- );
- if (!empty($packets) and $packets > 0) {
- $index = min(((int) log($packets, 1000)), count($units) - 1);
- $result = round($packets / pow(1000, $index), 3) . ' ' . $units[$index] . 'pkt/s';
- } else {
- $result = '0 pkt/s';
- }
- return $result;
- }
- function checkValidIp($cidr)
- {
- if (!is_string($cidr) || empty(trim($cidr))) {
- return false;
- }
- $cidr = trim($cidr);
- // Проверяем IPv4 CIDR
- if (preg_match('/^(\d{1,3}\.){3}\d{1,3}(\/\d{1,2})?$/', $cidr)) {
- return validateIPv4CIDR($cidr);
- }
- // Проверяем IPv6 CIDR
- if (preg_match('/^([0-9a-fA-F:]+)+(\/\d{1,3})?$/i', $cidr)) {
- return validateIPv6CIDR($cidr);
- }
- return false;
- }
- function validateIPv4CIDR($cidr)
- {
- $parts = explode("/", $cidr);
- $ip = $parts[0];
- $netmask = isset($parts[1]) ? (int)$parts[1] : 32;
- // Проверяем октеты
- $octets = explode(".", $ip);
- if (count($octets) !== 4) {
- return false;
- }
- foreach ($octets as $octet) {
- $octet = (int)$octet;
- if ($octet < 0 || $octet > 255) {
- return false;
- }
- }
- return $netmask >= 0 && $netmask <= 32;
- }
- // для IPv6
- function validateIPv6CIDR($cidr)
- {
- // Упрощенная проверка IPv6
- $parts = explode("/", $cidr);
- $ip = $parts[0];
- $netmask = isset($parts[1]) ? (int)$parts[1] : 128;
- return filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== false
- && $netmask >= 0 && $netmask <= 128;
- }
- function normalizeIpAddress($input) {
- // Заменяем все возможные варианты "ю" на стандартные точки
- $normalized = str_replace(
- ['ю', 'Ю', '>'], // Кириллические и латинские варианты
- '.',
- strtolower(trim($input))
- );
- if (!checkValidIp($normalized)) { return ''; }
- return $normalized;
- }
- function checkValidMac($mac)
- {
- if (!is_string($mac)) return false;
- $mac = trim($mac);
- // Отдельные шаблоны для каждого формата
- $patterns = [
- '/^([0-9A-Fa-f]{2}[:-]){5}[0-9A-Fa-f]{2}$/', // 00:1A:2B:3C:4D:5E
- '/^([0-9a-fA-F]{4}[\\.-]){2}[0-9a-fA-F]{4}$/', // 001A.2B3C.4D5E
- '/^[0-9A-Fa-f]{12}$/' // 001A2B3C4D5E
- ];
- foreach ($patterns as $pattern) {
- if (preg_match($pattern, $mac)) {
- return true;
- }
- }
- return false;
- }
- function MayBeMac($mac)
- {
- if (!is_string($mac)) {
- return;
- }
- // Оставляем только hex-символы
- $hex = preg_replace('/[^0-9a-f]/i', '', trim($mac));
- // Длина: от 2 до 6 октетов (4–12 hex-символов)
- if (!preg_match('/^[0-9a-f]{4,12}$/i', $hex)) {
- return;
- }
- // Чётное количество символов (целые октеты)
- if (strlen($hex) % 2 !== 0) {
- return;
- }
- return mac_dotted2($mac);
- }
- function mac_dotted2($mac)
- {
- if (!is_string($mac)) {
- return;
- }
- // оставляем только hex
- $hex = preg_replace('/[^0-9a-f]/i', '', trim($mac));
- // максимум 6 октетов = 12 hex
- if ($hex === '' || strlen($hex) > 12) {
- return;
- }
- // только целые октеты
- if (strlen($hex) % 2 !== 0) {
- return;
- }
- // разбиваем по 2 символа
- return implode(':', str_split(strtolower($hex), 2));
- }
- function checkValidHostname($dnsname)
- {
- if (empty($dnsname)) {
- return TRUE;
- }
- $host_pattern = "/^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])\.?$/";
- if (!preg_match($host_pattern, $dnsname)) {
- $result = FALSE;
- } else {
- $result = TRUE;
- }
- return $result;
- }
- function replaceSpecialChars($input) {
- // Заменяем ? на _ в любом месте
- $result = str_replace('?', '_', $input);
- // Заменяем * на % только в начале и конце с помощью регулярного выражения
- $result = preg_replace('/\*(?=.*.)/', '%', $result);
- return $result;
- }
- function searchHostname($db, $id, $hostname)
- {
- if (empty($hostname)) {
- return null;
- }
- $domain_zone = get_option($db, 33);
- $full_hostname = rtrim($hostname . '.' . ltrim($domain_zone, '.'), '.');
-
- $result_parts = [];
- // === Поиск A-записей в user_auth ===
- $a_sql = "SELECT id, ip FROM user_auth
- WHERE deleted = 0
- AND id != ?
- AND (dns_name = ? OR dns_name = ?)";
- $a_records = get_records_sql($db, $a_sql, [$id, $hostname, $full_hostname]);
-
- if (!empty($a_records)) {
- $a_list = [];
- foreach ($a_records as $rec) {
- $a_list[] = 'auth_id:' . $rec['id'] . ' ip: ' . $rec['ip'];
- }
- $result_parts[] = 'A-record: ' . implode('; ', $a_list) . ';';
- }
- // === Поиск CNAME-записей в user_auth_alias ===
- $cname_sql = "SELECT auth_id FROM user_auth_alias
- WHERE auth_id != ?
- AND (alias = ? OR alias = ?)";
- $cname_records = get_records_sql($db, $cname_sql, [$id, $hostname, $full_hostname]);
-
- if (!empty($cname_records)) {
- $cname_list = [];
- foreach ($cname_records as $rec) {
- $cname_list[] = 'auth_id:' . $rec['auth_id'];
- }
- $result_parts[] = 'CNAME-record: ' . implode(';', $cname_list) . ';';
- }
- return !empty($result_parts) ? trim(implode(' ', $result_parts)) : '';
- }
- function checkUniqHostname($db, $id, $hostname)
- {
- if (empty($hostname)) {
- return true;
- }
- $domain_zone = get_option($db, 33);
- $full_hostname = rtrim($hostname . '.' . ltrim($domain_zone, '.'), '.');
- // Проверка A-записей в user_auth
- $count_a = get_count_records($db, 'user_auth',
- 'deleted = 0 AND id != ? AND (dns_name = ? OR dns_name = ?)',
- [$id, $hostname, $full_hostname]
- );
-
- if ($count_a > 0) {
- return false;
- }
- // Проверка CNAME-записей в user_auth_alias
- $count_cname = get_count_records($db, 'user_auth_alias',
- 'auth_id != ? AND (alias = ? OR alias = ?)',
- [$id, $hostname, $full_hostname]
- );
-
- if ($count_cname > 0) {
- return false;
- }
- return true;
- }
- // Транслитерация строк.
- function transliterate($string, $gost = false)
- {
- if ($gost) {
- $replace = array(
- "А" => "A",
- "а" => "a",
- "Б" => "B",
- "б" => "b",
- "В" => "V",
- "в" => "v",
- "Г" => "G",
- "г" => "g",
- "Д" => "D",
- "д" => "d",
- "Е" => "E",
- "е" => "e",
- "Ё" => "E",
- "ё" => "e",
- "Ж" => "Zh",
- "ж" => "zh",
- "З" => "Z",
- "з" => "z",
- "И" => "I",
- "и" => "i",
- "Й" => "I",
- "й" => "i",
- "К" => "K",
- "к" => "k",
- "Л" => "L",
- "л" => "l",
- "М" => "M",
- "м" => "m",
- "Н" => "N",
- "н" => "n",
- "О" => "O",
- "о" => "o",
- "П" => "P",
- "п" => "p",
- "Р" => "R",
- "р" => "r",
- "С" => "S",
- "с" => "s",
- "Т" => "T",
- "т" => "t",
- "У" => "U",
- "у" => "u",
- "Ф" => "F",
- "ф" => "f",
- "Х" => "Kh",
- "х" => "kh",
- "Ц" => "Tc",
- "ц" => "tc",
- "Ч" => "Ch",
- "ч" => "ch",
- "Ш" => "Sh",
- "ш" => "sh",
- "Щ" => "Shch",
- "щ" => "shch",
- "Ы" => "Y",
- "ы" => "y",
- "Э" => "E",
- "э" => "e",
- "Ю" => "Iu",
- "ю" => "iu",
- "Я" => "Ia",
- "я" => "ia",
- "ъ" => "",
- "ь" => ""
- );
- } else {
- $arStrES = array(
- "ае",
- "уе",
- "ое",
- "ые",
- "ие",
- "эе",
- "яе",
- "юе",
- "ёе",
- "ее",
- "ье",
- "ъе",
- "ый",
- "ий"
- );
- $arStrOS = array(
- "аё",
- "уё",
- "оё",
- "ыё",
- "иё",
- "эё",
- "яё",
- "юё",
- "ёё",
- "её",
- "ьё",
- "ъё",
- "ый",
- "ий"
- );
- $arStrRS = array(
- "а$",
- "у$",
- "о$",
- "ы$",
- "и$",
- "э$",
- "я$",
- "ю$",
- "ё$",
- "е$",
- "ь$",
- "ъ$",
- "@",
- "@"
- );
- $replace = array(
- "А" => "A",
- "а" => "a",
- "Б" => "B",
- "б" => "b",
- "В" => "V",
- "в" => "v",
- "Г" => "G",
- "г" => "g",
- "Д" => "D",
- "д" => "d",
- "Е" => "Ye",
- "е" => "e",
- "Ё" => "Ye",
- "ё" => "e",
- "Ж" => "Zh",
- "ж" => "zh",
- "З" => "Z",
- "з" => "z",
- "И" => "I",
- "и" => "i",
- "Й" => "Y",
- "й" => "y",
- "К" => "K",
- "к" => "k",
- "Л" => "L",
- "л" => "l",
- "М" => "M",
- "м" => "m",
- "Н" => "N",
- "н" => "n",
- "О" => "O",
- "о" => "o",
- "П" => "P",
- "п" => "p",
- "Р" => "R",
- "р" => "r",
- "С" => "S",
- "с" => "s",
- "Т" => "T",
- "т" => "t",
- "У" => "U",
- "у" => "u",
- "Ф" => "F",
- "ф" => "f",
- "Х" => "Kh",
- "х" => "kh",
- "Ц" => "Ts",
- "ц" => "ts",
- "Ч" => "Ch",
- "ч" => "ch",
- "Ш" => "Sh",
- "ш" => "sh",
- "Щ" => "Shch",
- "щ" => "shch",
- "Ъ" => "",
- "ъ" => "",
- "Ы" => "Y",
- "ы" => "y",
- "Ь" => "",
- "ь" => "",
- "Э" => "E",
- "э" => "e",
- "Ю" => "Yu",
- "ю" => "yu",
- "Я" => "Ya",
- "я" => "ya",
- "@" => "y",
- "$" => "ye"
- );
- $string = str_replace($arStrES, $arStrRS, $string);
- $string = str_replace($arStrOS, $arStrRS, $string);
- }
- return strtr($string, $replace);
- }
- function cidrToRange($cidr)
- {
- $range = array();
- $cidr = explode('/', $cidr);
- if (!isset($cidr[1]) or empty($cidr[1])) {
- $cidr[1] = 32;
- }
- if (!empty($cidr[1]) and $cidr[1]>32) {
- $cidr[1] = 32;
- }
- $mask = (int)$cidr[1];
- $start = (ip2long($cidr[0])) & ((-1 << (32 - $mask)));
- $stop = $start + pow(2, (32 - $mask)) - 1;
- $range[0] = long2ip($start);
- $range[1] = long2ip($stop);
- $range[2] = $mask;
- //dhcp
- $dhcp_size = round(($stop - $start) / 2, PHP_ROUND_HALF_UP);
- $dhcp_start = $start + round($dhcp_size / 2, PHP_ROUND_HALF_UP);
- $range[3] = long2ip($dhcp_start);
- $range[4] = long2ip($dhcp_start + $dhcp_size);
- //gateway
- $range[5] = long2ip($start + 1);
- return $range;
- }
- function crypt_string($simple_string)
- {
- // Storin gthe cipher method
- $ciphering = "aes-128-cbc";
- // Using OpenSSl Encryption method
- $iv_length = openssl_cipher_iv_length($ciphering);
- $options = 0;
- // Using openssl_encrypt() function to encrypt the data
- return openssl_encrypt($simple_string, $ciphering, ENCRYPTION_KEY, $options, ENCRYPTION_IV);
- }
- function decrypt_string($crypted_string)
- {
- // Storin gthe cipher method
- $ciphering = "aes-128-cbc";
- // Using OpenSSl Encryption method
- $iv_length = openssl_cipher_iv_length($ciphering);
- $options = 0;
- // Using openssl_decrypt() function to decrypt the data
- return openssl_decrypt($crypted_string, $ciphering, ENCRYPTION_KEY, $options, ENCRYPTION_IV);
- }
- function print_instance_select($db, $instance_name, $instance_value)
- {
- echo "<select id=\"" . htmlspecialchars($instance_name) . "\" name=\"" . htmlspecialchars($instance_name) . "\">\n";
- $t_instance = get_records_sql($db, "SELECT id, name, description FROM filter_instances ORDER BY id");
- foreach ($t_instance as $row) {
- print_select_item($row['name'], $row['id'], $instance_value);
- }
- echo "</select>\n";
- }
- function get_subnet_description($db, $subnet_id)
- {
- if (empty($subnet_id)) {
- return '';
- }
-
- $subnet = get_record_sql($db, 'SELECT * FROM subnets WHERE id = ?', [(int)$subnet_id]);
- if (empty($subnet)) {
- return '';
- }
-
- $result = $subnet['subnet'] . ' (' . $subnet['description'] . ')';
- return $result;
- }
- function get_filter_instance_description($db, $instance_id)
- {
- if (empty($instance_id)) {
- return '';
- }
-
- $instance = get_record_sql($db, 'SELECT * FROM filter_instances WHERE id = ?', [(int)$instance_id]);
- if (empty($instance)) {
- return '';
- }
-
- $result = $instance['name'] . ' (' . $instance['description'] . ')';
- return $result;
- }
- function print_add_gw_subnets($db, $device_id, $gs_name)
- {
- echo "<select id=\"" . htmlspecialchars($gs_name) . "\" name=\"" . htmlspecialchars($gs_name) . "\">\n";
- $t_gs = get_records_sql($db,
- "SELECT id, subnet, description FROM subnets
- WHERE subnets.free = 0
- AND subnets.id NOT IN (SELECT subnet_id FROM gateway_subnets WHERE gateway_subnets.device_id = ?)
- ORDER BY subnet",
- [(int)$device_id]
- );
-
- if (!empty($t_gs)) {
- foreach ($t_gs as $row) {
- $display = htmlspecialchars($row['subnet']) . '(' . htmlspecialchars($row['description']) . ')';
- print_select_item($display, $row['id'], 0);
- }
- }
- echo "</select>\n";
- }
- function print_add_gw_instances($db, $device_id, $gs_name)
- {
- echo "<select id=\"" . htmlspecialchars($gs_name) . "\" name=\"" . htmlspecialchars($gs_name) . "\">\n";
- $t_gs = get_records_sql($db,
- "SELECT id, name, description FROM filter_instances
- WHERE filter_instances.id NOT IN (SELECT instance_id FROM device_filter_instances WHERE device_filter_instances.device_id = ?)
- ORDER BY name",
- [(int)$device_id]
- );
-
- if (!empty($t_gs)) {
- foreach ($t_gs as $row) {
- $display = htmlspecialchars($row['name']) . '(' . htmlspecialchars($row['description']) . ')';
- print_select_item($display, $row['id'], 0);
- }
- }
- echo "</select>\n";
- }
- function print_add_dev_interface($db, $device_id, $int_list, $int_name)
- {
- echo " <select id=\"" . htmlspecialchars($int_name) . "\" name=\"" . htmlspecialchars($int_name) . "\">\n";
-
- $t_int = get_records_sql($db,
- "SELECT * FROM device_l3_interfaces WHERE device_id = ?",
- [(int)$device_id]
- );
-
- $int_exists = [];
- if (!empty($t_int)) {
- foreach ($t_int as $interface) {
- $int_exists[$interface['snmpin']] = $interface;
- }
- }
-
- foreach ($int_list as $interface) {
- if (!empty($int_exists[$interface['index']])) {
- continue;
- }
-
- $display_value = WEB_select_item_lan;
- if ($interface['interface_type'] == 1) {
- $display_value = WEB_select_item_wan;
- }
-
- // Отображаемое значение (видит пользователь) — экранируем
- $display_str = htmlspecialchars($interface['name']) . ' |' .
- htmlspecialchars($interface['ip']) . '|' .
- htmlspecialchars($display_value);
-
- // Значение (отправляется на сервер) — НЕ экранируем
- $value = $interface['name'] . ';' .
- $interface['index'] . ';' .
- $interface['interface_type'];
-
- print_select_item($display_str, $value, 0);
- }
- echo "</select>\n";
- }
- function print_ou_select_recursive($db, $ou_name, $ou_value, $parent_id = null, $level = 0, $hide_zero_id = false)
- {
- // Ограничение глубины рекурсии: не более 3 уровней (0, 1, 2 → max level=2, следующий вызов будет level=3 и остановится)
- if ($level > 2) {
- return;
- }
- $params = [];
- if ($parent_id === null) {
- $sql = "SELECT id, parent_id, ou_name FROM ou WHERE (parent_id IS NULL OR parent_id = 0)";
- } else {
- $sql = "SELECT id, parent_id, ou_name FROM ou WHERE parent_id = ?";
- $params[] = (int)$parent_id;
- }
- if ($hide_zero_id) {
- $sql .= " AND id != 0";
- }
- $sql .= " ORDER BY id";
- $items = get_records_sql($db, $sql, $params);
- if (empty($items)) {
- return;
- }
- foreach ($items as $row) {
- $indent = str_repeat(" ", $level);
- $prefix = ($level > 0) ? $indent . "- " : "";
- $display_name = $prefix . htmlspecialchars($row['ou_name']);
- print_select_item($display_name, $row['id'], $ou_value);
- // Рекурсивный вызов — только если уровень < 3
- if ($level < 2) { // потому что следующий уровень будет $level + 1 = 3 → запрещён
- print_ou_select_recursive($db, $ou_name, $ou_value, $row['id'], $level + 1, $hide_zero_id);
- }
- }
- }
-
- function print_ou_select($db, $ou_name, $ou_value)
- {
- echo "<select id=\"" . htmlspecialchars($ou_name) . "\" name=\"" . htmlspecialchars($ou_name) . "\">\n";
- print_ou_select_recursive($db, $ou_name, $ou_value, null, 0, false);
- echo "</select>\n";
- }
- function print_ou_set($db, $ou_name, $ou_value)
- {
- echo "<select id=\"" . htmlspecialchars($ou_name) . "\" name=\"" . htmlspecialchars($ou_name) . "\">\n";
- print_ou_select_recursive($db, $ou_name, $ou_value, null, 0, true);
- echo "</select>\n";
- }
- function print_subnet_select($db, $subnet_name, $subnet_value)
- {
- echo "<select id=\"" . htmlspecialchars($subnet_name) . "\" name=\"" . htmlspecialchars($subnet_name) . "\">\n";
- $t_subnet = get_records_sql($db, "SELECT id, subnet FROM subnets ORDER BY ip_int_start");
- print_select_item(WEB_select_item_all_ips, 0, $subnet_value);
- if (!empty($t_subnet)) {
- foreach ($t_subnet as $row) {
- print_select_item(htmlspecialchars($row['subnet']), $row['id'], $subnet_value);
- }
- }
- echo "</select>\n";
- }
- function print_acl_select($db, $acl_name, $acl_value)
- {
- echo "<select id=\"" . htmlspecialchars($acl_name) . "\" name=\"" . htmlspecialchars($acl_name) . "\">\n";
- $t_acl = get_records_sql($db, "SELECT id, name FROM acl ORDER BY id");
- if (!empty($t_acl)) {
- foreach ($t_acl as $row) {
- print_select_item(htmlspecialchars($row['name']), $row['id'], $acl_value);
- }
- }
- echo "</select>\n";
- }
- function print_device_ip_select($db, $ip_name, $ip, $user_id)
- {
- echo "<select id=\"" . htmlspecialchars($ip_name) . "\" name=\"" . htmlspecialchars($ip_name) . "\">\n";
- $auth_list = get_records_sql($db, "SELECT ip FROM user_auth WHERE user_id = ? AND deleted = 0 ORDER BY ip_int", [(int)$user_id]);
- if (!empty($auth_list)) {
- foreach ($auth_list as $row) {
- // IP-адреса не требуют htmlspecialchars (они безопасны по формату)
- print_select_item($row['ip'], $row['ip'], $ip);
- }
- }
- echo "</select>\n";
- }
- function print_subnet_select_office($db, $subnet_name, $subnet_value)
- {
- echo "<select id=\"" . htmlspecialchars($subnet_name) . "\" name=\"" . htmlspecialchars($subnet_name) . "\">\n";
- $t_subnet = get_records_sql($db, "SELECT id, subnet FROM subnets WHERE office = 1 ORDER BY ip_int_start");
- print_select_item(WEB_select_item_all_ips, 0, $subnet_value);
- if (!empty($t_subnet)) {
- foreach ($t_subnet as $row) {
- print_select_item(htmlspecialchars($row['subnet']), $row['id'], $subnet_value);
- }
- }
- echo "</select>\n";
- }
- function print_subnet_select_office_splitted($db, $subnet_name, $subnet_value)
- {
- echo "<select id=\"" . htmlspecialchars($subnet_name) . "\" name=\"" . htmlspecialchars($subnet_name) . "\">\n";
- $t_subnet = get_records_sql($db, "SELECT id, subnet, ip_int_start, ip_int_stop FROM subnets WHERE office = 1 ORDER BY ip_int_start");
- print_select_item(WEB_select_item_all_ips, 0, $subnet_value);
-
- foreach ($t_subnet as $row) {
- // Основная подсеть
- print_select_item(htmlspecialchars($row['subnet']), $row['subnet'], $subnet_value);
-
- // Разбивка на /24
- $cidr = cidrToRange($row['subnet']);
- $f_start_ip = $row['ip_int_start'];
- $f_stop_ip = $row['ip_int_stop'];
-
- if (!empty($cidr[2][1]) && $cidr[2][1] < 24) {
- while ($f_start_ip <= $f_stop_ip) {
- $ip_24 = long2ip($f_start_ip) . "/24";
- $display = " - " . htmlspecialchars($ip_24);
- print_select_item($display, $ip_24, $subnet_value);
- $f_start_ip += 256;
- }
- }
- }
- echo "</select>\n";
- }
- function print_loglevel_select($item_name, $value)
- {
- echo "<select id=\"" . htmlspecialchars($item_name) . "\" name=\"" . htmlspecialchars($item_name) . "\">\n";
- print_select_item('Error', L_ERROR, $value);
- print_select_item('Warning', L_WARNING, $value);
- print_select_item('Info', L_INFO, $value);
- print_select_item('Verbose', L_VERBOSE, $value);
- print_select_item('Debug', L_DEBUG, $value);
- echo "</select>\n";
- }
- function print_timeshift_select($value)
- {
- echo "<select id=\"date_shift\" name=\"date_shift\" onchange=\"updateDates()\">\n";
- print_select_item('-', '-', $value);
- print_select_item(WEB_date_shift_hour, 'h', $value);
- print_select_item(WEB_date_shift_8hour, '8h', $value);
- print_select_item(WEB_date_shift_day, 'd', $value);
- print_select_item(WEB_date_shift_month, 'm', $value);
- echo "</select>\n";
- }
- function print_date_fields($date1,$date2,$date_shift)
- {
- print WEB_log_start_date.' '; print '<input type="datetime-local" name="date_start" id="date_start" value="'.$date1.'" onchange="SetDateShiftCustom()"/>';
- print WEB_log_stop_date.' '; print '<input type="datetime-local" name="date_stop" id="date_stop" value="'.$date2.'" onchange="SetDateShiftCustom()"/>';
- print WEB_date_shift.' '; print_timeshift_select($date_shift);
- }
- function reencodeurl($url)
- {
- $url_arr = explode('?', $url);
- $fpage = $url_arr[0];
- if (isset($url_arr[1])) {
- $params = $url_arr[1];
- $params_arr = explode('&', $params);
- $new_params = '';
- foreach ($params_arr as $row) {
- $param = explode('=', $row);
- $key = $param[0];
- $value = urlencode(urldecode($param[1]));
- $new_params .= "&" . $key . "=" . $value;
- }
- $new_params = preg_replace('/^&/', '', $new_params);
- } else {
- $new_params = '=';
- }
- if ($new_params === '=') {
- $new_url = $fpage;
- } else {
- $new_url = $fpage . "?" . $new_params;
- }
- return $new_url;
- }
- function print_submenu_url($display_name, $page, $current_page, $last)
- {
- $url_arr = explode('?', $page);
- $fpage = $url_arr[0];
- $new_url = reencodeurl($page);
- if ($fpage === $current_page) {
- print "<b>$display_name</b>";
- } else {
- print "<a href='" . $new_url . "'> $display_name </a>";
- }
- if (!isset($last) or $last == 0) {
- print " | ";
- }
- }
- function print_submenu_nw($display_name, $page, $current_page, $last)
- {
- $url_arr = explode('?', $page);
- $fpage = $url_arr[0];
- $new_url = reencodeurl($page);
- if ($fpage === $current_page) {
- print "<b>$display_name</b>";
- } else {
- print '<a href="" onclick="window.open(\'' . $new_url . "', '_tab').focus(); return false;\">" . $display_name . "</a>";
- }
- if (!isset($last) or $last == 0) {
- print " | ";
- }
- }
- function print_url($display_name, $page)
- {
- print "<a href='" . reencodeurl($page) . "'> $display_name </a>";
- }
- function print_log_submenu($current_page)
- {
- print "<div id='submenu'>\n";
- print_submenu_url(WEB_submenu_dhcp_log, '/admin/logs/dhcp.php', $current_page, 0);
- print_submenu_url(WEB_submenu_work_log, '/admin/logs/index.php', $current_page, 0);
- print_submenu_url(WEB_submenu_mac_history, '/admin/logs/mac.php', $current_page, 0);
- print_submenu_url(WEB_submenu_ip_history, '/admin/logs/ip.php', $current_page, 0);
- print_submenu_url(WEB_submenu_mac_unknown, '/admin/logs/unknown.php', $current_page, 0);
- print_submenu_url(WEB_submenu_traffic, '/admin/logs/detaillog.php', $current_page, 0);
- print_submenu_url(WEB_submenu_syslog, '/admin/logs/syslog.php', $current_page, 1);
- print "</div>\n";
- }
- function print_control_submenu($current_page)
- {
- print "<div id='submenu'>\n";
- print_submenu_url(WEB_submenu_control, '/admin/customers/control.php', $current_page, 0);
- print_submenu_url(WEB_submenu_network, '/admin/customers/index-subnets.php', $current_page, 0);
- print_submenu_url(WEB_submenu_network_stats, '/admin/customers/control-subnets-usage.php', $current_page, 0);
- print_submenu_url(WEB_submenu_options, '/admin/customers/control-options.php', $current_page, 0);
- print_submenu_url(WEB_submenu_customers, '/admin/customers/index.php', $current_page, 0);
- print_submenu_url(WEB_submenu_buildings, '/admin/customers/building.php', $current_page, 0);
- print_submenu_url(WEB_submenu_device_models, '/admin/customers/devmodels.php', $current_page, 0);
- print_submenu_url(WEB_submenu_vendors, '/admin/customers/devvendors.php', $current_page, 1);
- print "</div>\n";
- }
- function print_filters_submenu($current_page)
- {
- print "<div id='submenu'>\n";
- print_submenu_url(WEB_submenu_filter_list, '/admin/filters/index.php', $current_page, 0);
- print_submenu_url(WEB_submenu_filter_group, '/admin/filters/groups.php', $current_page, 0);
- print_submenu_url(WEB_submenu_filter_instances, '/admin/filters/instances.php', $current_page, 1);
- print "</div>\n";
- }
- function print_reports_submenu($current_page)
- {
- print "<div id='submenu'>\n";
- print_submenu_url(WEB_submenu_traffic_ip_report, '/admin/reports/index-full.php', $current_page, 0);
- print_submenu_url(WEB_submenu_traffic_login_report, '/admin/reports/index.php', $current_page, 0);
- print_submenu_url(WEB_submenu_traffic_wan_report, '/admin/reports/wan.php', $current_page, 1);
- print "</div>\n";
- }
- function print_trafdetail_submenu($current_page, $params, $description)
- {
- print "<div id='subsubmenu'>\n";
- print "$description\n";
- print_submenu_url(WEB_submenu_traffic_top10, '/admin/reports/userdaydetail.php' . "?$params", $current_page, 0);
- print_submenu_url(WEB_submenu_detail_log, '/admin/reports/userdaydetaillog.php' . "?$params", $current_page, 1);
- print "</div>\n";
- }
- function print_device_submenu($current_page)
- {
- print "<div id='submenu'>\n";
- print_submenu_url(WEB_submenu_net_devices, '/admin/devices/index.php', $current_page, 0);
- print_submenu_url(WEB_submenu_passive_net_devices, '/admin/devices/index-passive.php', $current_page, 0);
- print_submenu_url(WEB_submenu_hierarchy, '/admin/devices/index-tree.php', $current_page, 0);
- print_submenu_url(WEB_submenu_ports_vlan, '/admin/devices/portsbyvlan.php', $current_page, 1);
- print "</div>\n";
- }
- function open_window_url($url)
- {
- return "window.open('" . $url . "', '_blank');";
- }
- function print_editdevice_submenu($current_page, $id, $dev_type, $dev_name = NULL)
- {
- print "<div id='subsubmenu'>\n";
- $dev_id = '';
- if (isset($id)) {
- $dev_id = '?id=' . $id;
- }
- if (!empty($dev_name)) {
- print "<b>" . $dev_name . "::</b>";
- }
- print_submenu_url(WEB_submenu_options, '/admin/devices/editdevice.php' . $dev_id, $current_page, 0);
- if ($dev_type <= 2) {
- print_submenu_url(WEB_submenu_ports, '/admin/devices/switchport.php' . $dev_id, $current_page, 0);
- print_submenu_url(WEB_submenu_state, '/admin/devices/switchstatus.php' . $dev_id, $current_page, 0);
- print_submenu_url(WEB_submenu_connections, '/admin/devices/switchport-conn.php' . $dev_id, $current_page, 1);
- }
- print "</div>\n";
- }
- function print_ip_submenu($current_page)
- {
- print "<div id='submenu'>\n";
- print_submenu_url(WEB_submenu_ip_list, '/admin/iplist/index.php', $current_page, 0);
- print_submenu_url(WEB_submenu_nagios, '/admin/iplist/nagios.php', $current_page, 0);
- print_submenu_url(WEB_submenu_doubles, '/admin/iplist/doubles.php', $current_page, 0);
- print_submenu_url(WEB_submenu_deleted, '/admin/iplist/deleted.php', $current_page, 0);
- print_submenu_url(WEB_submenu_auto_rules, '/admin/iplist/auto_rules.php', $current_page, 1);
- print "</div>\n";
- }
- function get_nagios_name($auth)
- {
- if (!empty($auth['dns_name'])) {
- return $auth['dns_name'];
- }
- if (!empty($auth['dhcp_hostname'])) {
- return $auth['dhcp_hostname'];
- }
- if (!empty($auth['description'])) {
- $result = transliterate($auth['description']);
- $result = preg_replace('/\(/', '-', $result);
- $result = preg_replace('/\)/', '-', $result);
- $result = preg_replace('/--/', '-', $result);
- return $result;
- }
- if (empty($auth['login'])) {
- $auth['login'] = 'host';
- }
- return $auth['login'] . "_" . $auth['id'];
- }
- function get_ou($db, $ou_value)
- {
- if (!isset($ou_value)) {
- return null;
- }
-
- $ou_name = get_record_sql($db, "SELECT ou_name FROM ou WHERE id = ?", [(int)$ou_value]);
- if (empty($ou_name)) {
- return null;
- }
-
- return $ou_name['ou_name'];
- }
- function get_device_model($db, $model_value)
- {
- if (!isset($model_value)) {
- return null;
- }
-
- $model_name = get_record_sql($db, "SELECT model_name FROM device_models WHERE id = ?", [(int)$model_value]);
- if (empty($model_name)) {
- return null;
- }
-
- return $model_name['model_name'];
- }
- function get_device_model_name($db, $model_value)
- {
- if (!isset($model_value)) {
- return '';
- }
-
- $model_name = get_record_sql($db,
- "SELECT M.id, M.model_name, V.name
- FROM device_models M, vendors V
- WHERE M.vendor_id = V.id AND M.id = ?",
- [(int)$model_value]
- );
-
- if (empty($model_name)) {
- return '';
- }
-
- return $model_name['name'] . ' ' . $model_name['model_name'];
- }
- function get_device_model_vendor($db, $model_value)
- {
- if (!isset($model_value)) {
- return '';
- }
-
- $model_name = get_record_sql($db, "SELECT vendor_id FROM device_models WHERE id = ?", [(int)$model_value]);
- if (empty($model_name)) {
- return '';
- }
-
- return $model_name['vendor_id'];
- }
- function get_building($db, $building_value)
- {
- if (!isset($building_value)) {
- return null;
- }
-
- $building_name = get_record_sql($db, "SELECT name FROM building WHERE id = ?", [(int)$building_value]);
- if (empty($building_name)) {
- return null;
- }
-
- return $building_name['name'];
- }
- function print_device_model_select($db, $device_model_name, $device_model_value)
- {
- echo "<select id=\"" . htmlspecialchars($device_model_name) . "\" name=\"" . htmlspecialchars($device_model_name) . "\" class=\"js-select-single\">\n";
- $t_device_model = get_records_sql($db,
- "SELECT M.id, M.model_name, V.name
- FROM device_models M, vendors V
- WHERE M.vendor_id = V.id
- ORDER BY V.name, M.model_name"
- );
-
- foreach ($t_device_model as $row) {
- $display = htmlspecialchars($row['name']) . " " . htmlspecialchars($row['model_name']);
- print_select_item($display, $row['id'], $device_model_value);
- }
- echo "</select>\n";
- }
- function print_filter_group_select($db, $group_name, $group_value)
- {
- echo "<select id=\"" . htmlspecialchars($group_name) . "\" name=\"" . htmlspecialchars($group_name) . "\">\n";
- $t_group = get_records_sql($db, "SELECT id, group_name FROM group_list ORDER BY group_name");
-
- foreach ($t_group as $row) {
- print_select_item(htmlspecialchars($row['group_name']), $row['id'], $group_value);
- }
- echo "</select>\n";
- }
- function print_building_select($db, $building_name, $building_value)
- {
- echo "<select id=\"" . htmlspecialchars($building_name) . "\" name=\"" . htmlspecialchars($building_name) . "\">\n";
- print_select_item(WEB_select_item_all, 0, $building_value);
- $t_building = get_records_sql($db, "SELECT id, name FROM building ORDER BY name");
-
- foreach ($t_building as $row) {
- print_select_item(htmlspecialchars($row['name']), $row['id'], $building_value);
- }
- echo "</select>\n";
- }
- function print_devmodels_select($db, $devmodel_name, $devmodel_value, $dev_filter = 'device_type<=2')
- {
- // Валидация фильтра для предотвращения SQL-инъекций
- $allowed_filters = [
- 'device_type<=2',
- 'device_type=2',
- 'device_type=1',
- 'device_type=0'
- ];
-
- if (!in_array($dev_filter, $allowed_filters)) {
- $dev_filter = 'device_type<=2';
- }
-
- echo "<select id=\"" . htmlspecialchars($devmodel_name) . "\" name=\"" . htmlspecialchars($devmodel_name) . "\">\n";
- print_select_item(WEB_select_item_all, -1, $devmodel_value);
-
- $t_devmodel = get_records_sql($db,
- "SELECT M.id, V.name, M.model_name
- FROM device_models M, vendors V
- WHERE M.vendor_id = V.id
- AND M.id IN (SELECT device_model_id FROM devices WHERE $dev_filter)
- ORDER BY V.name, M.model_name"
- );
-
- if (!empty($t_devmodel)) {
- foreach ($t_devmodel as $row) {
- $display = htmlspecialchars($row['name']) . " " . htmlspecialchars($row['model_name']);
- print_select_item($display, $row['id'], $devmodel_value);
- }
- }
- echo "</select>\n";
- }
- function print_devtypes_select($db, $devtype_name, $devtype_value, $mode)
- {
- // Валидация режима для предотвращения SQL-инъекций
- $allowed_modes = [
- '',
- 'device_class = 1',
- 'device_class = 2',
- 'device_class <= 2',
- 'id IN (0,1,2)',
- 'id > 0'
- // Добавьте другие допустимые значения по необходимости
- ];
-
- if (!in_array($mode, $allowed_modes)) {
- $mode = '';
- }
-
- echo "<select id=\"" . htmlspecialchars($devtype_name) . "\" name=\"" . htmlspecialchars($devtype_name) . "\">\n";
- print_select_item(WEB_select_item_all, -1, $devtype_value);
-
- $filter = '';
- if (!empty($mode)) {
- $filter = "WHERE $mode";
- }
-
- $lang_column = 'name_' . HTML_LANG;
- $t_devtype = get_records_sql($db, "SELECT id, $lang_column FROM device_types $filter ORDER BY $lang_column");
-
- if (!empty($t_devtype)) {
- foreach ($t_devtype as $row) {
- print_select_item(htmlspecialchars($row[$lang_column]), $row['id'], $devtype_value);
- }
- }
- echo "</select>\n";
- }
- function print_devtype_select($db, $devtype_name, $devtype_value)
- {
- echo "<select id=\"" . htmlspecialchars($devtype_name) . "\" name=\"" . htmlspecialchars($devtype_name) . "\">\n";
-
- $lang_column = 'name_' . HTML_LANG;
- $t_devtype = get_records_sql($db, "SELECT id, $lang_column FROM device_types ORDER BY $lang_column");
-
- foreach ($t_devtype as $row) {
- print_select_item(htmlspecialchars($row[$lang_column]), $row['id'], $devtype_value);
- }
- echo "</select>\n";
- }
- function get_group($db, $group_value)
- {
- if (!isset($group_value)) {
- return '';
- }
-
- $group = get_record_sql($db, "SELECT group_name FROM group_list WHERE id = ?", [(int)$group_value]);
- if (!empty($group) && isset($group['group_name'])) {
- return $group['group_name'];
- }
- return '';
- }
- function get_devtype_name($db, $device_type_id)
- {
- if (!isset($device_type_id)) {
- return '';
- }
-
- $lang_column = 'name_' . HTML_LANG;
- $type = get_record_sql($db, "SELECT $lang_column FROM device_types WHERE id = ?", [(int)$device_type_id]);
- if (!empty($type) && isset($type[$lang_column])) {
- return $type[$lang_column];
- }
- return '';
- }
- function get_l3_interfaces($db, $device_id)
- {
- $wan = '';
- $lan = '';
-
- $t_l3int = get_records_sql($db,
- "SELECT name, interface_type FROM device_l3_interfaces WHERE device_id = ? ORDER BY name",
- [(int)$device_id]
- );
-
- if (empty($t_l3int)) {
- return '';
- }
-
- foreach ($t_l3int as $row) {
- // Экранируем имя интерфейса для защиты от XSS при выводе
- $name = htmlspecialchars($row['name']);
-
- if ($row['interface_type'] == 0) {
- $lan .= " " . $name;
- }
- if ($row['interface_type'] == 1) {
- $wan .= " " . $name;
- }
- }
-
- $wan = trim($wan);
- $lan = trim($lan);
- $result = '';
-
- if (!empty($wan)) {
- $result .= ' WAN: ' . $wan . '<br>';
- }
- if (!empty($lan)) {
- $result .= ' LAN: ' . $lan;
- }
-
- return trim($result);
- }
- function get_wan_interfaces($db, $device_id)
- {
- $device_id = (int)$device_id;
-
- // Получаем WAN-интерфейсы
- $t_l3int = get_records_sql($db,
- "SELECT id, name, snmpin FROM device_l3_interfaces
- WHERE device_id = ? AND interface_type = 1
- ORDER BY name",
- [$device_id]
- );
-
- // Обрабатываем каждый интерфейс
- foreach ($t_l3int as &$row) {
- $row['description'] = '';
-
- if (empty($row['snmpin'])) {
- continue;
- }
-
- // Получаем описание порта
- $conn = get_record_sql($db,
- "SELECT description FROM device_ports
- WHERE device_id = ? AND snmp_index = ?",
- [$device_id, $row['snmpin']]
- );
-
- // Проверяем, есть ли комментарий в результатах запроса
- if (!empty($conn) && !empty($conn['description'])) {
- $row['description'] = htmlspecialchars($conn['description']);
- }
- }
- unset($row);
-
- return $t_l3int;
- }
- function get_gw_subnets($db, $device_id)
- {
- $gw_subnets = get_records_sql($db,
- 'SELECT gateway_subnets.*, subnets.subnet, subnets.description
- FROM gateway_subnets
- LEFT JOIN subnets ON gateway_subnets.subnet_id = subnets.id
- WHERE gateway_subnets.device_id = ?
- ORDER BY subnets.subnet ASC',
- [(int)$device_id]
- );
-
- if (empty($gw_subnets)) {
- return '';
- }
-
- $result = '';
- foreach ($gw_subnets as $row) {
- if (!empty($row['subnet'])) {
- $result .= ' ' . htmlspecialchars($row['subnet']) . '<br>';
- }
- }
-
- return trim($result);
- }
- function print_queue_select($db, $queue_name, $queue_value)
- {
- echo "<select id=\"" . htmlspecialchars($queue_name) . "\" name=\"" . htmlspecialchars($queue_name) . "\">\n";
- $t_queue = get_records_sql($db, "SELECT id, queue_name FROM queue_list ORDER BY queue_name");
-
- foreach ($t_queue as $row) {
- print_select_item(htmlspecialchars($row['queue_name']), $row['id'], $queue_value);
- }
- echo "</select>\n";
- }
- function get_queue($db, $queue_value)
- {
- if (!isset($queue_value)) {
- return '';
- }
-
- $queue = get_record_sql($db, "SELECT queue_name FROM queue_list WHERE id = ?", [(int)$queue_value]);
- if (!empty($queue) && isset($queue['queue_name'])) {
- return $queue['queue_name'];
- }
- return '';
- }
- function print_qa_l3int_select($qa_name, $qa_value = 0)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- print_select_item(WEB_select_item_lan, 0, $qa_value);
- print_select_item(WEB_select_item_wan, 1, $qa_value);
- print "</select>\n";
- }
- function print_qa_rule_select($qa_name, $qa_value = 1)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- print_select_item('Subnet', 1, $qa_value);
- print_select_item('Mac', 2, $qa_value);
- print_select_item('Hostname', 3, $qa_value);
- print "</select>\n";
- }
- function print_snmp_auth_proto_select($qa_name, $qa_value = 'sha512')
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- print_select_item('sha512', 'sha512', $qa_value);
- print_select_item('sha256', 'sha256', $qa_value);
- print_select_item('sha', 'sha', $qa_value);
- print_select_item('md5', 'md5', $qa_value);
- print "</select>\n";
- }
- function print_snmp_priv_proto_select($qa_name, $qa_value = 'aes128')
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- print_select_item('aes128', 'aes128', $qa_value);
- print_select_item('aes', 'aes', $qa_value);
- print_select_item('des', 'des', $qa_value);
- print "</select>\n";
- }
- function get_int($qa_value = 0)
- {
- if (empty($qa_value)) {
- $qa_value = 0;
- } else {
- $qa_value = (int)$qa_value * 1;
- }
- return $qa_value;
- }
- function print_qa_select($qa_name, $qa_value = 0)
- {
- print "<select name=\"$qa_name\" id=\"$qa_name\">\n";
- if (empty($qa_value)) {
- $qa_value = 0;
- } else {
- $qa_value = $qa_value * 1;
- }
- print_select_item(WEB_select_item_yes, 1, $qa_value);
- print_select_item(WEB_select_item_no, 0, $qa_value);
- print "</select>\n";
- }
- function print_list_select($qa_name, $qa_value, $list)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- if (empty($qa_value)) {
- $qa_value = '';
- }
- for ($i = 0; $i < count($list); ++$i) {
- print_select_item($list[$i], $list[$i], $qa_value);
- }
- print "</select>\n";
- }
- function print_qa_select_ext($qa_name, $qa_value = 0, $readonly = 1)
- {
- $state = '';
- if ($readonly) {
- $state = 'disabled=true';
- }
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- print_select_item_ext(WEB_select_item_yes, 1, $qa_value, $readonly);
- print_select_item_ext(WEB_select_item_no, 0, $qa_value, $readonly);
- print "</select>\n";
- }
- function print_td_yes_no($qa_value = 0, $text = FALSE)
- {
- $cl = 'down';
- if ($qa_value == 1) { $cl = 'up'; }
- // $cl = 'data';
- if ($text) {
- print "<td class=\"$cl\">";
- if ($qa_value == 1) { print WEB_select_item_yes; } else { print WEB_select_item_no; }
- print "</td>\n";
- } else { print_td_qa($qa_value,FALSE,$cl); }
- }
- function print_yes_no($qa_value = 0, $yes_style = 'data', $no_style='data')
- {
- if ($qa_value) { $cl = $yes_style; } else { $cl = $no_style; }
- print "<td class=\"$cl\">";
- if ($qa_value == 1) {
- print WEB_select_item_yes;
- } else {
- print WEB_select_item_no;
- }
- print "</td>\n";
- }
- function print_control_proto_select($qa_name, $qa_value = -1)
- {
- print "<select name=\"$qa_name\">\n";
- print_select_item('Disabled', -1, $qa_value);
- print_select_item('Ssh', 0, $qa_value);
- print_select_item('Telnet', 1, $qa_value);
- // print_select_item('Mikrotik rest api', 2, $qa_value);
- print "</select>\n";
- }
- function print_snmp_select($qa_name, $qa_value = 0)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- print_select_item('Disabled', 0, $qa_value);
- print_select_item('v1', 1, $qa_value);
- print_select_item('v2', 2, $qa_value);
- print_select_item('v3', 3, $qa_value);
- print "</select>\n";
- }
- function print_dhcp_select($qa_name, $qa_value = 0)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- if (!isset($qa_value) or strlen($qa_value) == 0) {
- $qa_value = 'all';
- }
- print_select_item(WEB_select_item_events, 'all', $qa_value);
- print_select_item(WEB_select_item_lease, 'add', $qa_value);
- print_select_item(WEB_select_item_lease_refresh, 'old', $qa_value);
- print_select_item(WEB_select_item_lease_free, 'del', $qa_value);
- print "</select>\n";
- }
- function print_nagios_handler_select($db, $qa_name)
- {
- $nagios_handler = get_records_sql($db,
- "SELECT DISTINCT nagios_handler FROM user_auth
- WHERE nagios_handler IS NOT NULL AND nagios_handler != '' AND deleted = 0"
- );
-
- if (!empty($nagios_handler)) {
- echo "<select name=\"" . htmlspecialchars($qa_name) . "\">\n";
- print_select_simple(WEB_select_item_no, '');
-
- foreach ($nagios_handler as $handler) {
- $value = htmlspecialchars($handler['nagios_handler']);
- print_select_simple($value, $value);
- }
- echo "</select>\n";
- } else {
- echo "<input type=\"text\" name=\"" . htmlspecialchars($qa_name) . "\" value=\"\" size=\"10\" />\n";
- }
- }
- function print_dhcp_acl($db, $qa_name)
- {
- $dhcp_acl = get_records_sql($db,
- "SELECT DISTINCT dhcp_acl FROM user_auth
- WHERE dhcp_acl IS NOT NULL AND dhcp_acl != '' AND deleted = 0"
- );
-
- if (!empty($dhcp_acl)) {
- echo "<select name=\"" . htmlspecialchars($qa_name) . "\">\n";
- print_select_simple(WEB_select_item_no, '');
-
- foreach ($dhcp_acl as $acl) {
- $value = htmlspecialchars($acl['dhcp_acl']);
- print_select_simple($value, $value);
- }
- echo "</select>\n";
- } else {
- echo "<input type=\"text\" name=\"" . htmlspecialchars($qa_name) . "\" value=\"\" size=\"10\" />\n";
- }
- }
-
- function print_dhcp_option_set($db, $qa_name)
- {
- $dhcp_option_sets = get_records_sql($db,
- "SELECT DISTINCT dhcp_option_set FROM user_auth
- WHERE dhcp_option_set IS NOT NULL AND dhcp_option_set != '' AND deleted = 0"
- );
-
- if (!empty($dhcp_option_sets)) {
- echo "<select name=\"" . htmlspecialchars($qa_name) . "\">\n";
- print_select_simple(WEB_select_item_no, '');
-
- foreach ($dhcp_option_sets as $dhcp_option_set) {
- $value = htmlspecialchars($dhcp_option_set['dhcp_option_set']);
- print_select_simple($value, $value);
- }
- echo "</select>\n";
- } else {
- echo "<input type=\"text\" name=\"" . htmlspecialchars($qa_name) . "\" value=\"\" size=\"10\" />\n";
- }
- }
- function print_dhcp_acl_list($db, $qa_name, $value = '')
- {
- $dhcp_acl = get_records_sql($db,
- "SELECT DISTINCT dhcp_acl FROM user_auth
- WHERE dhcp_acl IS NOT NULL AND dhcp_acl != '' AND deleted = 0"
- );
-
- if (!empty($dhcp_acl)) {
- echo "<input list=\"dhcp_acl\" id=\"" . htmlspecialchars($qa_name) . "\" name=\"" . htmlspecialchars($qa_name) . "\" value=\"" . htmlspecialchars($value) . "\" />";
- echo "<datalist id=\"dhcp_acl\">";
- echo "<option value=\"\">";
-
- foreach ($dhcp_acl as $acl) {
- echo "<option value=\"" . htmlspecialchars($acl['dhcp_acl']) . "\">";
- }
- echo "</datalist>";
- } else {
- echo "<input type=\"text\" name=\"" . htmlspecialchars($qa_name) . "\" value=\"\" size=\"10\" />";
- }
- }
- function print_dhcp_option_set_list($db, $qa_name, $value = '')
- {
- $dhcp_option_sets = get_records_sql($db,
- "SELECT DISTINCT dhcp_option_set FROM user_auth
- WHERE dhcp_option_set IS NOT NULL AND dhcp_option_set != '' AND deleted = 0"
- );
-
- if (!empty($dhcp_option_sets)) {
- echo "<input list=\"dhcp_option_set\" id=\"" . htmlspecialchars($qa_name) . "\" name=\"" . htmlspecialchars($qa_name) . "\" value=\"" . htmlspecialchars($value) . "\" />";
- echo "<datalist id=\"dhcp_option_set\">";
- echo "<option value=\"\">";
-
- foreach ($dhcp_option_sets as $dhcp_option_set) {
- echo "<option value=\"" . htmlspecialchars($dhcp_option_set['dhcp_option_set']) . "\">";
- }
- echo "</datalist>";
- } else {
- echo "<input type=\"text\" name=\"" . htmlspecialchars($qa_name) . "\" value=\"\" size=\"10\" />";
- }
- }
- function print_enabled_select($qa_name, $qa_value)
- {
- // Убедимся, что значение корректно
- if (!isset($qa_value) || $qa_value === '') {
- $qa_value = 0;
- } else {
- $qa_value = (int)$qa_value;
- }
-
- echo "<select id=\"" . htmlspecialchars($qa_name) . "\" name=\"" . htmlspecialchars($qa_name) . "\">\n";
- print_select_item('-', 0, $qa_value);
- print_select_item(WEB_select_item_disabled, 1, $qa_value);
- print_select_item(WEB_select_item_enabled, 2, $qa_value);
- echo "</select>\n";
- }
- function print_rule_target_select($qa_name, $qa_value)
- {
- // Убедимся, что значение корректно
- if (!isset($qa_value) || $qa_value === '') {
- $qa_value = 0;
- } else {
- $qa_value = (int)$qa_value;
- }
-
- echo "<select id=\"" . htmlspecialchars($qa_name) . "\" name=\"" . htmlspecialchars($qa_name) . "\">\n";
- print_select_item('-', 0, $qa_value);
- print_select_item(WEB_rules_target_user, 1, $qa_value);
- print_select_item(WEB_rules_target_group, 2, $qa_value);
- echo "</select>\n";
- }
- function print_rule_type_select($qa_name, $qa_value)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- if (!isset($qa_value) or strlen($qa_value) == 0) {
- $qa_value = 0;
- }
- print_select_item('-', 0, $qa_value);
- print_select_item(WEB_rules_type_subnet, 1, $qa_value);
- print_select_item(WEB_rules_type_mac, 2, $qa_value);
- print_select_item(WEB_rules_type_hostname, 3, $qa_value);
- print "</select>\n";
- }
- function print_yn_select($qa_name, $qa_value)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- if (!isset($qa_value) or strlen($qa_value) == 0) {
- $qa_value = 0;
- }
- print_select_item('-', 0, $qa_value);
- print_select_item(WEB_select_item_yes, 1, $qa_value);
- print_select_item(WEB_select_item_no, 2, $qa_value);
- print "</select>\n";
- }
- function print_ip_type_select($qa_name, $qa_value)
- {
- print "<select id=\"$qa_name\" name=\"$qa_name\">\n";
- if (!isset($qa_value) or strlen($qa_value) == 0) {
- $qa_value = 0;
- }
- print_select_item(WEB_select_item_every, 0, $qa_value);
- print_select_item(WEB_select_item_static, 1, $qa_value);
- print_select_item(WEB_select_item_dhcp, 2, $qa_value);
- print_select_item(WEB_select_item_suspicious, 3, $qa_value);
- print "</select>\n";
- }
- function print_vendor_select($db, $qa_name, $qa_value)
- {
- echo "<select id=\"" . htmlspecialchars($qa_name) . "\" name=\"" . htmlspecialchars($qa_name) . "\" style=\"width: 100%\">\n";
- $vendors = get_records_sql($db, "SELECT id, name FROM vendors ORDER BY name");
- print_select_item(WEB_select_item_all, 0, $qa_value);
-
- foreach ($vendors as $row) {
- print_select_item(htmlspecialchars($row['name']), $row['id'], $qa_value);
- }
- echo "</select>\n";
- }
- function print_vendor_set($db, $qa_name, $qa_value)
- {
- echo "<select id=\"" . htmlspecialchars($qa_name) . "\" name=\"" . htmlspecialchars($qa_name) . "\" style=\"width: 100%\">\n";
- $vendors = get_records_sql($db, "SELECT id, name FROM vendors ORDER BY name");
-
- foreach ($vendors as $row) {
- print_select_item(htmlspecialchars($row['name']), $row['id'], $qa_value);
- }
- echo "</select>\n";
- }
-
- function get_vendor_name($db, $v_id)
- {
- if (!isset($v_id)) {
- return '';
- }
-
- $vendor = get_record_sql($db, "SELECT name FROM vendors WHERE id = ?", [(int)$v_id]);
- if (!empty($vendor) && isset($vendor['name'])) {
- return $vendor['name'];
- }
- return '';
- }
- function get_qa($qa_value, $text = FALSE)
- {
- if ($text) {
- if ($qa_value == 1) { return "Да"; }
- return "Нет";
- } else {
- if ($qa_value == 1) { return '<span style="font-size: 24px; font-weight: bold;">✓</span>'; }
- return '<span style="font-size: 24px; font-weight: bold;">✗</span>';
- }
- }
- function get_yes($qa_value, $text = FALSE)
- {
- if ($text) {
- if ($qa_value == 1) { return "Да"; }
- return "";
- } else {
- if ($qa_value == 1) { return '<span style="font-size: 16px; font-weight: bold;">✓</span>'; }
- return "";
- }
- }
- function print_td_qa ($qa_value, $text = FALSE, $parent_class = '')
- {
- $cl = "data_green";
- if (!$qa_value) { $cl = "data_red"; }
- print "<td class=\"$parent_class $cl\" >" . get_qa($qa_value,$text) . "</td>";
- }
- function print_td_yes ($qa_value, $text = FALSE, $parent_class = '')
- {
- $cl = "data_green";
- if (!$qa_value) { $cl = "data_red"; }
- print "<td class=\"$parent_class $cl\" >" . get_yes($qa_value,$text) . "</td>";
- }
- function print_action_select($action_name, $action_value)
- {
- print "<select id=\"$action_name\" name=\"$action_name\">\n";
- print_select_item(WEB_select_item_allow, 1, $action_value);
- print_select_item(WEB_select_item_forbidden, 0, $action_value);
- print "</select>\n";
- }
- function get_action($action_value)
- {
- if ($action_value == 1) {
- return "Разрешить";
- }
- return "Запретить";
- }
- function print_filter_select($db, $filter_name, $group_id)
- {
- echo "<select id=\"" . htmlspecialchars($filter_name) . "\" name=\"" . htmlspecialchars($filter_name) . "\" class=\"js-select-single\">\n";
-
- if (isset($group_id)) {
- $t_filters = get_records_sql($db,
- "SELECT id, name FROM filter_list
- WHERE id NOT IN (SELECT filter_id FROM group_filters WHERE group_id = ?)
- ORDER BY name",
- [(int)$group_id]
- );
- } else {
- $t_filters = get_records_sql($db, "SELECT id, name FROM filter_list ORDER BY name");
- }
-
- foreach ($t_filters as $row) {
- print_select_item(htmlspecialchars($row['name']), $row['id'], 0);
- }
- echo "</select>\n";
- }
-
- function get_filter($db, $filter_value)
- {
- if (!isset($filter_value)) {
- return '';
- }
-
- $filter = get_record_sql($db, "SELECT name FROM filter_list WHERE id = ?", [(int)$filter_value]);
- if (!empty($filter) && isset($filter['name'])) {
- return $filter['name'];
- }
- return '';
- }
-
- function get_login($db, $user_id)
- {
- if (!isset($user_id)) {
- return '';
- }
-
- $login = get_record_sql($db, "SELECT login FROM user_list WHERE id = ?", [(int)$user_id]);
- if (!empty($login) && isset($login['login'])) {
- return $login['login'];
- }
- return '';
- }
-
- function get_auth_count($db, $user_id)
- {
- if (!isset($user_id)) {
- return 0;
- }
-
- $count = get_record_sql($db, "SELECT COUNT(id) as cnt FROM user_auth WHERE user_id = ? AND deleted = 0", [(int)$user_id]);
- if (!empty($count) && isset($count['cnt'])) {
- return (int)$count['cnt'];
- }
- return 0;
- }
- function print_login_select($db, $login_name, $current_login)
- {
- echo "<select id=\"" . htmlspecialchars($login_name) . "\" name=\"" . htmlspecialchars($login_name) . "\" class=\"js-select-single\">\n";
- $t_login = get_records_sql($db, "SELECT id, login FROM user_list WHERE deleted=0 ORDER BY login");
- print_select_item('None', 0, $current_login);
-
- foreach ($t_login as $row) {
- print_select_item(htmlspecialchars($row['login']), $row['id'], $current_login);
- }
- echo "</select>\n";
- }
- function print_auth_select($db, $login_name, $current_auth)
- {
- echo "<select id=\"" . htmlspecialchars($login_name) . "\" name=\"" . htmlspecialchars($login_name) . "\" class=\"js-select-single\">\n";
-
- $params = [];
- $sql = "SELECT U.login, U.description, A.ip, A.id
- FROM user_list AS U, user_auth AS A
- WHERE A.user_id = U.id
- AND A.deleted = 0
- AND (A.id NOT IN (SELECT device_ports.auth_id FROM device_ports) OR A.id = ?)
- ORDER BY U.login, U.description, A.ip";
-
- $params[] = (int)$current_auth;
- $t_login = get_records_sql($db, $sql, $params);
-
- print_select_item('Empty', 0, $current_auth);
-
- foreach ($t_login as $row) {
- $display = htmlspecialchars($row['login']) . "[" . htmlspecialchars($row['description']) . "] - " . htmlspecialchars($row['ip']);
- print_select_item($display, $row['id'], $current_auth);
- }
- echo "</select>\n";
- }
- function print_auth_select_mac($db, $login_name, $current_auth)
- {
- echo "<select id=\"" . htmlspecialchars($login_name) . "\" name=\"" . htmlspecialchars($login_name) . "\" class=\"js-select-single\">\n";
-
- $params = [];
- $sql = "SELECT U.login, U.description, A.ip, A.mac, A.id
- FROM user_list AS U, user_auth AS A
- WHERE A.user_id = U.id
- AND A.deleted = 0
- AND (A.id NOT IN (SELECT device_ports.auth_id FROM device_ports) OR A.id = ?)
- ORDER BY U.login, U.description, A.ip";
-
- $params[] = (int)$current_auth;
- $t_login = get_records_sql($db, $sql, $params);
-
- print_select_item('Empty', 0, $current_auth);
-
- foreach ($t_login as $row) {
- $display = htmlspecialchars($row['login']) . "[" . htmlspecialchars($row['mac']) . "] - " . htmlspecialchars($row['ip']);
- print_select_item($display, $row['id'], $current_auth);
- }
- echo "</select>\n";
- }
- function compact_port_name($port)
- {
- $result = $port;
- $result = preg_replace('/XGigabitEthernet/', 'X', $result);
- $result = preg_replace('/TenGigabitEthernet/', 'Te', $result);
- $result = preg_replace('/GigabitEthernet/', 'Gi', $result);
- return $result;
- }
- function print_device_port_select($db, $field_name, $device_id, $target_id)
- {
- echo "<select id=\"" . htmlspecialchars($field_name) . "\" name=\"" . htmlspecialchars($field_name) . "\" class=\"js-select-single\">\n";
-
- $device_id = (int)$device_id;
- $target_id = (int)$target_id;
-
- $t_device = get_records_sql($db,
- "SELECT D.device_name, DP.port, DP.device_id, DP.id, DP.ifname
- FROM devices AS D, device_ports AS DP
- WHERE D.deleted = 0
- AND D.id = DP.device_id
- AND (DP.device_id != ? OR DP.id = ?)
- AND (DP.id NOT IN (SELECT target_port_id FROM device_ports WHERE target_port_id IS NOT NULL))
- ORDER BY D.device_name, DP.port",
- [$device_id, $target_id]
- );
-
- print_select_item('Empty', 0, $target_id);
-
- foreach ($t_device as $row) {
- $ifName = !empty($row['ifname']) ? $row['ifname'] : $row['port'];
- $display = htmlspecialchars($row['device_name']) . "[" . htmlspecialchars($row['port']) . "] - " . htmlspecialchars(compact_port_name($ifName));
- print_select_item($display, $row['id'], $target_id);
- }
- echo "</select>\n";
- }
-
- function print_device_select($db, $field_name, $device_id)
- {
- echo "<select id=\"" . htmlspecialchars($field_name) . "\" name=\"" . htmlspecialchars($field_name) . "\" class=\"js-select-single\">\n";
-
- $t_device = get_records_sql($db,
- "SELECT D.device_name, D.id
- FROM devices AS D
- WHERE D.deleted = 0
- ORDER BY D.device_name ASC"
- );
-
- print_select_item(WEB_select_item_every, 0, $device_id);
-
- foreach ($t_device as $row) {
- print_select_item(htmlspecialchars($row['device_name']), $row['id'], $device_id);
- }
- echo "</select>\n";
- }
- function print_netdevice_select($db, $field_name, $device_id)
- {
- echo "<select id=\"" . htmlspecialchars($field_name) . "\" name=\"" . htmlspecialchars($field_name) . "\" class=\"js-select-single\">\n";
-
- $t_device = get_records_sql($db,
- "SELECT D.device_name, D.id
- FROM devices AS D
- WHERE D.deleted = 0 AND D.device_type <= 2
- ORDER BY D.device_name ASC"
- );
-
- print_select_item(WEB_select_item_every, 0, $device_id);
-
- foreach ($t_device as $row) {
- print_select_item(htmlspecialchars($row['device_name']), $row['id'], $device_id);
- }
- echo "</select>\n";
- }
- function print_vlan_select($db, $field_name, $vlan)
- {
- echo "<select id=\"" . htmlspecialchars($field_name) . "\" name=\"" . htmlspecialchars($field_name) . "\" class=\"js-select-single\" style=\"width: 100px;\">\n";
-
- $v_device = get_records_sql($db, "SELECT DISTINCT vlan FROM device_ports ORDER BY vlan DESC");
-
- if (!isset($vlan) || empty($vlan)) {
- $vlan = 1;
- }
-
- print_select_item('1', 1, $vlan);
-
- foreach ($v_device as $row) {
- if ($row['vlan'] === '1') {
- continue;
- }
- // VLAN-ы обычно числовые, но на всякий случай экранируем
- $vlan_val = htmlspecialchars($row['vlan']);
- print_select_item($vlan_val, $vlan_val, $vlan);
- }
- echo "</select>\n";
- }
- function print_device_select_ip($db, $field_name, $device_ip)
- {
- echo "<select id=\"" . htmlspecialchars($field_name) . "\" name=\"" . htmlspecialchars($field_name) . "\" class=\"js-select-single\">\n";
-
- $t_device = get_records_sql($db,
- "SELECT D.device_name, D.ip
- FROM devices AS D
- WHERE D.deleted = 0
- ORDER BY D.device_name ASC"
- );
-
- print_select_item(WEB_select_item_every, '', $device_ip);
-
- foreach ($t_device as $row) {
- $display = htmlspecialchars($row['device_name']);
- $value = htmlspecialchars($row['ip']); // IP безопасен, но для единообразия
- print_select_item($display, $value, $device_ip);
- }
- echo "</select>\n";
- }
- function print_syslog_device_select($db, $field_name, $syslog_filter, $device_ip)
- {
- // Валидация фильтра для предотвращения SQL-инъекций
- $allowed_filters = [
- 'facility = 1',
- 'facility = 2',
- 'priority <= 3',
- 'message LIKE "%error%"',
- 'message LIKE "%warning%"',
- '1=1' // для случая "все записи"
- // Добавьте другие допустимые значения по необходимости
- ];
-
- if (!in_array($syslog_filter, $allowed_filters)) {
- $syslog_filter = '1=1';
- }
-
- echo "<select id=\"" . htmlspecialchars($field_name) . "\" name=\"" . htmlspecialchars($field_name) . "\" class=\"js-select-single\">\n";
-
- $t_device = get_records_sql($db,
- "SELECT R.ip, D.device_name
- FROM (SELECT DISTINCT ip FROM remote_syslog WHERE $syslog_filter) AS R
- LEFT JOIN (SELECT ip, device_name FROM devices WHERE deleted = 0) AS D ON R.ip = D.ip
- ORDER BY R.ip ASC"
- );
-
- print_select_item(WEB_select_item_every, '', $device_ip);
-
- foreach ($t_device as $row) {
- $display_name = !empty($row['device_name']) ? $row['device_name'] : $row['ip'];
- $display = htmlspecialchars($display_name);
- $value = htmlspecialchars($row['ip']);
- print_select_item($display, $value, $device_ip);
- }
- echo "</select>\n";
- }
- function print_gateway_select($db, $field_name, $device_id)
- {
- echo "<select id=\"" . htmlspecialchars($field_name) . "\" name=\"" . htmlspecialchars($field_name) . "\">\n";
-
- $t_device = get_records_sql($db,
- "SELECT D.device_name, D.id
- FROM devices AS D
- WHERE D.deleted = 0 AND D.device_type = 2
- ORDER BY D.device_name ASC"
- );
-
- print_select_item(WEB_select_item_every, 0, $device_id);
-
- foreach ($t_device as $row) {
- print_select_item(htmlspecialchars($row['device_name']), $row['id'], $device_id);
- }
- echo "</select>\n";
- }
- function get_gateways($db)
- {
- $t_device = get_records_sql($db,
- "SELECT D.device_name, D.id
- FROM devices AS D
- WHERE D.deleted = 0 AND D.device_type = 2
- ORDER BY D.device_name ASC"
- );
-
- $result = [];
- foreach ($t_device as $row) {
- $result[$row['id']] = $row['device_name'];
- }
- return $result;
- }
- function print_device_port($db, $target_id)
- {
- $t_device = get_records_sql($db,
- "SELECT D.device_name, DP.port, DP.device_id
- FROM devices AS D, device_ports AS DP
- WHERE D.id = DP.device_id AND DP.id = ? AND D.deleted = 0",
- [(int)$target_id]
- );
-
- foreach ($t_device as $row) {
- $device_name = htmlspecialchars($row['device_name']);
- $port = htmlspecialchars($row['port']);
- $device_id = (int)$row['device_id'];
- echo "<a href=\"/admin/devices/switchport.php?id={$device_id}\">{$device_name}[{$port}]</a>\n";
- }
- }
- function get_device_ips($db, $device_id)
- {
- $switch = get_record($db, 'devices', 'id = ?', [(int)$device_id]);
- $result = [];
-
- if (!empty($switch['user_id'])) {
- $auth_ips = get_records($db, 'user_auth', 'deleted = 0 AND user_id = ?', [(int)$switch['user_id']]);
- foreach ($auth_ips as $value) {
- if (isset($value['ip'])) {
- $result[] = $value['ip'];
- }
- }
- } else {
- if (isset($switch['ip'])) {
- $result[] = $switch['ip'];
- }
- }
-
- return $result;
- }
- function get_device_id($db, $device_name)
- {
- if (empty($device_name)) {
- return null;
- }
-
- $dev = get_record_sql($db,
- "SELECT id FROM devices WHERE device_name = ? AND deleted = 0",
- [$device_name]
- );
-
- if (empty($dev)) {
- return null;
- }
- return $dev["id"];
- }
- function get_device_name($db, $device_id)
- {
- if (!isset($device_id)) {
- return null;
- }
-
- $dev = get_record_sql($db,
- "SELECT device_name FROM devices WHERE id = ?",
- [(int)$device_id]
- );
-
- if (empty($dev)) {
- return null;
- }
- return $dev["device_name"];
- }
- function get_auth_by_ip($db, $ip)
- {
- if (empty($ip)) {
- return null;
- }
-
- $auth = get_record_sql($db,
- "SELECT id FROM user_auth WHERE ip = ? AND deleted = 0",
- [$ip]
- );
-
- if (empty($auth)) {
- return null;
- }
- return $auth["id"];
- }
- function get_user_by_ip($db, $ip)
- {
- if (empty($ip)) {
- return null;
- }
-
- $auth = get_record_sql($db,
- "SELECT user_id FROM user_auth WHERE ip = ? AND deleted = 0",
- [$ip]
- );
-
- if (empty($auth)) {
- return null;
- }
- return $auth["user_id"];
- }
- function get_device_by_auth($db, $id)
- {
- if (!isset($id)) {
- return null;
- }
-
- $f_dev = get_record_sql($db,
- "SELECT id FROM devices WHERE user_id = ? AND deleted = 0",
- [(int)$id]
- );
-
- if (empty($f_dev)) {
- return null;
- }
- return $f_dev['id'];
- }
- function print_auth_port($db, $port_id, $new_window = false)
- {
- $t_auth = get_records_sql($db,
- "SELECT A.ip, A.ip_int, A.mac, A.id, A.dns_name, A.user_id
- FROM user_auth AS A, connections AS C
- WHERE C.port_id = ? AND A.id = C.auth_id AND A.deleted = 0
- ORDER BY A.ip_int",
- [(int)$port_id]
- );
-
- foreach ($t_auth as $row) {
- // Определяем отображаемое имя
- $name = !empty($row['dns_name']) ? $row['dns_name'] : $row['ip'];
-
- // Формируем title
- $login = get_login($db, $row['user_id']);
- $title = htmlspecialchars($login) . " =>" . htmlspecialchars($row['ip']) . "[" . htmlspecialchars($row['mac']) . "]";
- if (!empty($row['dns_name'])) {
- $title .= " | " . htmlspecialchars($row['dns_name']);
- }
-
- // Экранируем данные для вывода
- $display_name = htmlspecialchars($name);
- $display_ip = htmlspecialchars($row['ip']);
- $auth_id = (int)$row['id'];
-
- if ($new_window) {
- $url = "/admin/users/editauth.php?id=" . $auth_id;
- echo "<a href=\"\" title=\"" . $title . "\" onclick=\"" . open_window_url($url) . " return false;\">" . $display_name . " [" . $display_ip . "]</a><br>\n";
- } else {
- echo "<a href=\"/admin/users/editauth.php?id=" . $auth_id . "\" title=\"" . $title . "\">" . $display_name . " [" . $display_ip . "]</a><br>\n";
- }
- }
- }
- function get_port_description($db, $port_id, $port_description = '')
- {
- $t_auth = get_records_sql($db,
- "SELECT A.ip_int, A.description
- FROM user_auth AS A, connections AS C
- WHERE C.port_id = ? AND A.id = C.auth_id AND A.deleted = 0
- ORDER BY A.ip_int",
- [(int)$port_id]
- );
-
- $description_found = false;
- $result = '';
-
- foreach ($t_auth as $row) {
- $desc = !empty($row['description']) ? $row['description'] : '';
- if (!empty($desc)) {
- $description_found = true;
- }
- $result .= $desc . '<br>';
- }
-
- if (!$description_found) {
- return $port_description;
- }
-
- if (!empty($port_description)) {
- $result .= '(' . $port_description . ')';
- }
-
- return $result;
- }
- function print_auth_simple($db, $auth_id)
- {
- $auth = get_record($db, "user_auth", "id = ?", [(int)$auth_id]);
-
- if (empty($auth)) {
- return;
- }
-
- // Определяем отображаемое имя
- $name = !empty($auth['dns_name']) ? $auth['dns_name'] :
- (!empty($auth['description']) ? $auth['description'] : $auth['ip']);
-
- $display_name = $name;
- $safe_auth_id = (int)$auth_id;
-
- echo "<a href=\"/admin/users/editauth.php?id={$safe_auth_id}\">{$display_name}</a><br>\n";
- }
- function print_auth($db, $auth_id)
- {
- $auth = get_record($db, "user_auth", "id = ?", [(int)$auth_id]);
-
- if (empty($auth)) {
- return;
- }
-
- // Формируем отображаемое имя
- if (!empty($auth['dns_name'])) {
- $name = $auth['dns_name'];
- if (!empty($auth['description'])) {
- $name .= " (" . $auth['description'] . ")";
- }
- } else {
- $name = !empty($auth['description']) ? $auth['description'] : $auth['ip'];
- }
-
- if (!empty($name) && !empty($auth['ip'])) {
- $name .= " [" . $auth['ip'] . "]";
- }
-
- $display_name = htmlspecialchars($name);
- $safe_auth_id = (int)$auth_id;
-
- echo "<a href=\"/admin/users/editauth.php?id={$safe_auth_id}\">{$display_name}</a><br>\n";
- }
- function print_auth_detail($db, $auth_id)
- {
- $auth = get_record($db, "user_auth", "id = ?", [(int)$auth_id]);
-
- if (empty($auth)) {
- return;
- }
-
- // Формируем отображаемое имя
- if (!empty($auth['dns_name'])) {
- $name = $auth['dns_name'];
- if (!empty($auth['description'])) {
- $name .= " (" . $auth['description'] . ")";
- }
- } else {
- $name = !empty($auth['description']) ? $auth['description'] : $auth['ip'];
- }
-
- if (!empty($name) && !empty($auth['ip'])) {
- $name .= " [" . $auth['ip'] . "]";
- }
-
- // Добавляем информацию о последнем обнаружении
- if (!empty($auth['last_found'])) {
- $name .= " last: [" . $auth['last_found'] . "] ";
- }
-
- // Добавляем статус удаления
- if ($auth['deleted'] == 1) {
- $name .= " <font color='red'>DELETED!!!</font>";
- }
-
- $display_name = htmlspecialchars($name);
- $safe_auth_id = (int)$auth_id;
-
- echo "<a href=\"/admin/users/editauth.php?id={$safe_auth_id}\">{$display_name}</a><br>\n";
- }
- function get_auth_port_count($db, $port_id)
- {
- $t_device = get_record_sql($db,
- "SELECT COUNT(A.id) as cnt
- FROM user_auth AS A, connections AS C
- WHERE C.port_id = ? AND A.id = C.auth_id AND A.deleted = 0",
- [(int)$port_id]
- );
-
- if (empty($t_device)) {
- return 0;
- }
- return (int)$t_device['cnt'];
- }
- function get_connection($db, $auth_id)
- {
- $t_device = get_record_sql($db,
- "SELECT D.device_name, DP.port
- FROM devices AS D, device_ports AS DP, connections AS C
- WHERE D.deleted = 0 AND D.id = DP.device_id AND DP.id = C.port_id AND C.auth_id = ?",
- [(int)$auth_id]
- );
-
- if (!empty($t_device) && isset($t_device['device_name'])) {
- $device_name = expand_device_name($db, $t_device['device_name']);
- $port = $t_device['port'];
- return $device_name . "[" . $port . "]";
- }
- return '';
- }
- function get_connection_string($db, $auth_id)
- {
- $t_device = get_record_sql($db,
- "SELECT D.device_name, DP.port
- FROM devices AS D, device_ports AS DP, connections AS C
- WHERE D.deleted = 0 AND D.id = DP.device_id AND DP.id = C.port_id AND C.auth_id = ?",
- [(int)$auth_id]
- );
-
- if (!empty($t_device) && isset($t_device['device_name'])) {
- return $t_device['device_name'] . "[" . $t_device['port'] . "]";
- }
- return '';
- }
- function get_port($db, $port_id)
- {
- $t_device = get_record_sql($db,
- "SELECT D.device_name, DP.port
- FROM devices AS D, device_ports AS DP
- WHERE D.deleted = 0 AND D.id = DP.device_id AND DP.id = ?",
- [(int)$port_id]
- );
-
- if (!empty($t_device) && isset($t_device['device_name'])) {
- $device_name = expand_device_name($db, $t_device['device_name']);
- return $device_name . "[" . $t_device['port'] . "]";
- }
- return '';
- }
- function print_option_select($db, $option_name)
- {
- echo "<select id=\"" . htmlspecialchars($option_name) . "\" name=\"" . htmlspecialchars($option_name) . "\">\n";
-
- // Неуникальные опции
- $t_option = get_records_sql($db,
- "SELECT id, option_name FROM config_options
- WHERE uniq = 0 AND draft = 0 AND id != 68
- ORDER BY option_name"
- );
-
- if (!empty($t_option)) {
- foreach ($t_option as $row) {
- echo "<option value=\"" . (int)$row['id'] . "\">" . htmlspecialchars($row['option_name']) . "</option>\n";
- }
- }
-
- // Уникальные опции (которые ещё не используются)
- $t_option = get_records_sql($db,
- "SELECT id, option_name FROM config_options
- WHERE draft = 0 AND uniq = 1 AND id != 68 AND id NOT IN (SELECT option_id FROM config WHERE draft = 0)
- ORDER BY option_name"
- );
-
- if (!empty($t_option)) {
- foreach ($t_option as $row) {
- echo "<option value=\"" . (int)$row['id'] . "\">" . htmlspecialchars($row['option_name']) . "</option>\n";
- }
- }
-
- echo "</select>\n";
- }
- function ResolveIP($db, $ip_int)
- {
- $ip_name = "-";
-
- if (empty($ip_int)) {
- return $ip_name;
- }
-
- // Проверяем кэш
- $dns_cache = get_record_sql($db, "SELECT dns FROM dns_cache WHERE ip = ?", [(int)$ip_int]);
-
- if (empty($dns_cache) || empty($dns_cache['dns'])) {
- $ip_str = long2ip((int)$ip_int);
- $ip_name = gethostbyaddr($ip_str);
-
- // Проверяем результат разрешения
- if (empty($ip_name) || $ip_name == $ip_str) {
- $ip_name = "-";
- }
-
- // Сохраняем в кэш
- run_sql($db, "INSERT INTO dns_cache(dns, ip) VALUES(?, ?)", [$ip_name, (int)$ip_int]);
- } else {
- $ip_name = $dns_cache['dns'];
- }
-
- return $ip_name;
- }
- function clean_dns_cache($db)
- {
- $date = time() - 86400; // 24 часа назад
- $clean_date = date('Y-m-d H:i:s', $date);
- run_sql($db, "DELETE FROM dns_cache WHERE ts <= ?", [$clean_date]);
- }
- function clean_unreferensed_rules($db)
- {
- run_sql($db, "DELETE FROM auth_rules WHERE user_id NOT IN (SELECT id FROM user_list)");
- }
- function FormatDateStr($format = 'Y-m-d H:i:s', $date_str)
- {
- $date1 = GetDateTimeFromString($date_str);
- $result = $date1->format($format);
- return $result;
- }
- function GetDateTimeFromString($date_str)
- {
- if (!is_a($date_str, 'DateTime')) {
- $t_date_str = urldecode($date_str);
- $t_date_str = preg_replace('/(\'|\")/', '', $t_date_str);
- $t_date_str = preg_replace('/T/', ' ', $t_date_str);
- $date1 = DateTime::createFromFormat('Y-m-d H:i:s', $t_date_str);
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y.m.d H:i:s', $t_date_str);
- }
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y/m/d H:i:s', $t_date_str);
- }
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y-m-d H:i', $t_date_str);
- }
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y.m.d H:i', $t_date_str);
- }
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y/m/d H:i', $t_date_str);
- }
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y-m-d|', $t_date_str);
- }
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y.m.d|', $t_date_str);
- }
- if (!$date1) {
- $date1 = DateTime::createFromFormat('Y/m/d|', $t_date_str);
- }
- if (!$date1) {
- $date1 = new DateTime;
- $date1->setTime(0, 0, 0, 1);
- }
- } else {
- return $date_str;
- }
- return $date1;
- }
- function GetNowTimeString()
- {
- $now = new DateTimeImmutable('now');
- $result = $now->format('Y-m-d H:i:s');
- return $result;
- }
- function GetNowDayString()
- {
- $now = new DateTimeImmutable('now');
- $result = $now->format('Y-m-d');
- return $result;
- }
- function get_ip_subnet($db, $ip)
- {
- if (empty($ip)) {
- return null;
- }
-
- $ip_aton = ip2long($ip);
- if ($ip_aton === false) {
- return null;
- }
-
- // Исправлено: добавлены скобки для правильного порядка операций
- $user_subnet = get_record_sql($db,
- "SELECT * FROM subnets
- WHERE (hotspot = 1 OR office = 1)
- AND ? >= ip_int_start
- AND ? <= ip_int_stop",
- [$ip_aton, $ip_aton]
- );
-
- if (empty($user_subnet)) {
- return null;
- }
- return $user_subnet;
- }
- function find_mac_in_subnet($db, $ip, $mac)
- {
- if (empty($ip) || empty($mac)) {
- return null;
- }
-
- $ip_subnet = get_ip_subnet($db, $ip);
- if (empty($ip_subnet)) {
- return null;
- }
-
- $t_auth = get_records_sql($db,
- "SELECT id, mac, user_id
- FROM user_auth
- WHERE ip_int >= ?
- AND ip_int <= ?
- AND mac = ?
- AND deleted = 0
- ORDER BY id",
- [$ip_subnet['ip_int_start'], $ip_subnet['ip_int_stop'], $mac]
- );
-
- if (empty($t_auth)) {
- return ['count' => 0, 'users_id' => []];
- }
-
- $result = ['count' => 0, 'users_id' => []];
- foreach ($t_auth as $row) {
- if (!empty($row['id'])) {
- $result['count']++;
- $result[$result['count']] = $row['id'];
- $result['users_id'][] = $row['user_id'];
- }
- }
-
- return $result;
- }
- function apply_auth_rule($db, $auth_record, $user_id)
- {
- if (empty($auth_record)) {
- return null;
- }
-
- if (empty($user_id)) {
- return $auth_record;
- }
-
- $user_rec = get_record($db, 'user_list', "id = ?", [(int)$user_id]);
- if (empty($user_rec)) {
- return $auth_record;
- }
-
- // Set filter and status by user
- $auth_record['ou_id'] = $user_rec['ou_id'];
- $auth_record['user_id'] = $user_rec['id'];
- $auth_record['filter_group_id'] = $user_rec['filter_group_id'];
- $auth_record['queue_id'] = $user_rec['queue_id'];
- $auth_record['enabled'] = $user_rec['enabled'];
- $auth_record['changed'] = 1;
-
- // Maybe fill description?
- if (!empty($user_rec['description']) && empty($auth_record['description'])) {
- $auth_record['description'] = $user_rec['description'];
- }
-
- return $auth_record;
- }
- function fix_auth_rules($db)
- {
- // Cleanup hotspot subnet rules
- $t_hotspot = get_records_sql($db, "SELECT id FROM ou WHERE default_users = 1 OR default_hotspot = 1");
- if (!empty($t_hotspot)) {
- foreach ($t_hotspot as $row) {
- delete_record($db, "auth_rules", "ou_id = ?", [(int)$row['id']]);
- }
- }
-
- $t_hotspot_subnets = get_records_sql($db, "SELECT subnet FROM subnets WHERE hotspot = 1");
- if (!empty($t_hotspot_subnets)) {
- foreach ($t_hotspot_subnets as $row) {
- delete_record($db, "auth_rules", "rule = ?", [$row['subnet']]);
- }
- }
- }
- #---------------------------------------------------------------------------------------------------------------
- function new_user($db, $user_info)
- {
- if (empty($user_info)) {
- return null;
- }
-
- // Формируем логин и ФИО
- if (!empty($user_info['mac'])) {
- $user['login'] = mac_dotted($user_info['mac']);
- } else {
- $user['login'] = $user_info['ip'] ?? '';
- }
-
- if (!empty($user_info['dhcp_hostname'])) {
- $user['description'] = ($user_info['ip'] ?? '') . '[' . $user_info['dhcp_hostname'] . ']';
- } else {
- $user['description'] = $user_info['ip'] ?? '';
- }
-
- // Проверяем существование логина и формируем уникальный
- $base_login = $user['login'];
- $login_count = get_count_records($db, "user_list",
- "(login LIKE ?) OR (login = ?)",
- [$base_login . '(%)', $base_login]
- );
-
- if (!empty($login_count) && $login_count > 0) {
- $user['login'] = $base_login . "(" . ($login_count + 1) . ")";
- }
-
- // Назначаем OU и наследуем настройки
- $user['ou_id'] = (int)($user_info['ou_id'] ?? 0);
-
- if ($user['ou_id'] > 0) {
- $ou_info = get_record_sql($db, "SELECT * FROM ou WHERE id = ?", [$user['ou_id']]);
- if (!empty($ou_info)) {
- $user['enabled'] = isset($ou_info['enabled']) ? (int)$ou_info['enabled'] : 0;
- $user['queue_id'] = isset($ou_info['queue_id']) ? (int)$ou_info['queue_id'] : 0;
- $user['filter_group_id'] = isset($ou_info['filter_group_id']) ? (int)$ou_info['filter_group_id'] : 0;
- } else {
- // Значения по умолчанию, если OU не найден
- $user['enabled'] = 0;
- $user['queue_id'] = 0;
- $user['filter_group_id'] = 0;
- }
- } else {
- // Значения по умолчанию при отсутствии OU
- $user['enabled'] = 0;
- $user['queue_id'] = 0;
- $user['filter_group_id'] = 0;
- }
-
- // Создаём пользователя
- $result = insert_record($db, "user_list", $user);
-
- // Создаём автоматическое правило по MAC (если включено)
- if (!empty($result)) {
- $auto_mac_rule = (int)get_option($db, 64);
- if ($auto_mac_rule && !empty($user_info['mac'])) {
- $auth_rule = [
- 'user_id' => $result,
- 'rule_type' => 2,
- 'rule' => mac_dotted($user_info['mac'])
- ];
- insert_record($db, "auth_rules", $auth_rule);
- }
- }
-
- return $result;
- }
- function new_auth($db, $ip, $mac, $user_id)
- {
- if (empty($ip)) {
- return null;
- }
-
- $ip_aton = ip2long($ip);
- if ($ip_aton === false) {
- return null;
- }
-
- $msg = '';
- $user_id = (int)$user_id;
-
- // Проверяем существование пары IP-MAC
- if (!empty($mac)) {
- $dotted_mac = mac_dotted($mac);
- $auth_record = get_record_sql($db,
- "SELECT * FROM user_auth WHERE ip_int = ? AND mac = ? AND deleted = 0",
- [$ip_aton, $dotted_mac]
- );
-
- if (!empty($auth_record)) {
- LOG_WARNING($db, "Pair ip-mac already exists! Skip creating $ip [$mac] auth_id: " . $auth_record["id"]);
- return $auth_record['id'];
- }
- }
-
- // Настройки сохранения трафика
- $save_traf = (int)get_option($db, 23);
- $resurrection_id = null;
-
- // Ищем удалённую запись с теми же IP и MAC
- if (!empty($mac)) {
- $old_auth_id = get_id_record($db, 'user_auth',
- "deleted = 1 AND ip_int = ? AND mac = ?",
- [$ip_aton, $mac]
- );
- } else {
- $old_auth_id = get_id_record($db, 'user_auth',
- "deleted = 1 AND ip_int = ? AND mac IS NULL",
- [$ip_aton]
- );
- }
-
- if (!empty($old_auth_id)) {
- $resurrection_id = $old_auth_id;
- $msg .= "Recovered auth_id: $resurrection_id with ip: $ip and mac: $mac ";
- $auth = [
- 'user_id' => $user_id,
- 'deleted' => 0,
- 'save_traf' => $save_traf
- ];
- update_record($db, "user_auth", "id = ?", $auth, [$resurrection_id]);
- } else {
- // Создаём новую запись
- $msg .= "Create new ip record \r\nip: $ip\r\nmac: $mac\r\n";
- $auth = [
- 'deleted' => 0,
- 'user_id' => $user_id,
- 'ip' => $ip,
- 'ip_int' => $ip_aton,
- 'save_traf' => $save_traf
- ];
-
- if (!empty($mac)) {
- $auth['mac'] = $mac;
- }
-
- $resurrection_id = insert_record($db, "user_auth", $auth);
- }
-
- // Применяем правила и обновляем запись
- if (!empty($resurrection_id)) {
- $auth_final = apply_auth_rule($db, $auth, $user_id);
- update_record($db, "user_auth", "id = ?", $auth_final, [$resurrection_id]);
-
- if (!is_hotspot($db, $ip) && !empty($msg)) {
- LOG_WARNING($db, $msg);
- }
- if (is_hotspot($db, $ip) && !empty($msg)) {
- LOG_INFO($db, $msg);
- }
- }
-
- return $resurrection_id;
- }
- function resurrection_auth($db, $ip_record)
- {
- if (empty($ip_record) || empty($ip_record['ip'])) {
- return null;
- }
-
- $ip = $ip_record['ip'];
- $mac = $ip_record['mac'] ?? '';
- $action = $ip_record['type'] ?? '';
- $dhcp_hostname = $ip_record['hostname'] ?? '';
- $hotspot_found = !empty($ip_record['hotspot']);
-
- $ip_aton = ip2long($ip);
- if ($ip_aton === false) {
- return null;
- }
-
- // Проверяем существующую активную запись с теми же IP и MAC
- $auth_record = get_record_sql($db,
- "SELECT * FROM user_auth WHERE ip_int = ? AND mac = ? AND deleted = 0",
- [$ip_aton, $mac]
- );
-
- if (!empty($auth_record)) {
- $user_info = get_record_sql($db,
- "SELECT * FROM user_list WHERE id = ?",
- [(int)$auth_record['user_id']]
- );
-
- LOG_DEBUG($db, "external dhcp user " . ($user_info['login'] ?? '') . " [" . $ip . "] auth_id: " . $auth_record['id']);
-
- $auth_update = [];
- if (isset($dhcp_hostname) && !empty($dhcp_hostname)) {
- $auth_update['dhcp_hostname'] = $dhcp_hostname;
- }
- $auth_update['dhcp_action'] = $action;
- $auth_update['dhcp_time'] = GetNowTimeString();
-
- if ($action === 'add') {
- $auth_update['last_found'] = GetNowTimeString();
- }
-
- update_record($db, "user_auth", "id = ?", $auth_update, [$auth_record['id']]);
- return $auth_record['id'];
- }
-
- // Проверяем статическую подсеть
- $ip_subnet = get_ip_subnet($db, $ip);
- if (!empty($ip_subnet) && !empty($ip_subnet['static'])) {
- LOG_WARNING($db, "Unknown pair ip+mac in static subnet! ip: $ip mac: [" . mac_dotted($mac) . "]. Skip");
- return null;
- }
-
- $msg = '';
-
- // Ищем запись с тем же IP (возможно, другой MAC)
- $auth_record = get_record_sql($db,
- "SELECT * FROM user_auth WHERE ip_int = ? AND deleted = 0",
- [$ip_aton]
- );
-
- if (!empty($auth_record)) {
- if (empty($auth_record['mac'])) {
- // Обновляем пустой MAC
- $auth_update = [
- 'mac' => mac_dotted($mac),
- 'dhcp_action' => $action,
- 'dhcp_time' => GetNowTimeString()
- ];
-
- if (!empty($dhcp_hostname)) {
- $auth_update['dhcp_hostname'] = $dhcp_hostname;
- }
- if ($action === 'add') {
- $auth_update['last_found'] = GetNowTimeString();
- }
-
- LOG_INFO($db, "for ip: $ip mac not found! Use empty record...");
- update_record($db, "user_auth", "id = ?", $auth_update, [$auth_record['id']]);
- return $auth_record['id'];
- } else {
- // MAC изменился - помечаем старую запись как удалённую
- if (!$hotspot_found) {
- LOG_WARNING($db, "for ip: $ip mac change detected! Old mac: [" . $auth_record['mac'] . "] New mac: [" . mac_dotted($mac) . "]. Disable old auth_id: " . $auth_record['id']);
- }
- update_record($db, "user_auth", "id = ?", ['changed' => 1, 'deleted' => 1], [$auth_record['id']]);
- }
- }
-
- // Создаём/находим пользователя
- $new_user_info = get_new_user_id($db, $ip, $mac, $dhcp_hostname);
- $new_user_id = null;
-
- if (!empty($new_user_info['user_id'])) {
- $new_user_id = $new_user_info['user_id'];
- }
- if (empty($new_user_id)) {
- $new_user_id = new_user($db, $new_user_info);
- }
-
- if (empty($new_user_id)) {
- return null;
- }
-
- $new_user_id = (int)$new_user_id;
- $save_traf = (int)get_option($db, 23);
- $resurrection_id = null;
-
- // Ищем удалённую запись с теми же IP и MAC для восстановления
- $auth_record = get_record_sql($db,
- "SELECT * FROM user_auth WHERE ip_int = ? AND mac = ?",
- [$ip_aton, $mac]
- );
-
- if (!empty($auth_record)) {
- // Восстанавливаем существующую запись
- $resurrection_id = $auth_record['id'];
- $msg .= "Recovered auth_id: $resurrection_id with ip: $ip and mac: $mac ";
- $auth = [
- 'dhcp_action' => $action,
- 'user_id' => $new_user_id,
- 'deleted' => 0,
- 'dhcp_time' => GetNowTimeString(),
- 'save_traf' => $save_traf
- ];
-
- if (!empty($dhcp_hostname)) {
- $auth['dhcp_hostname'] = $dhcp_hostname;
- }
- if ($action === 'add') {
- $auth['last_found'] = GetNowTimeString();
- }
-
- update_record($db, "user_auth", "id = ?", $auth, [$resurrection_id]);
- } else {
- // Создаём новую запись
- $msg .= "Создаём новый ip-адрес \r\nip: $ip\r\nmac: $mac\r\n";
- $auth = [
- 'deleted' => 0,
- 'user_id' => $new_user_id,
- 'ip' => $ip,
- 'ip_int' => $ip_aton,
- 'mac' => $mac,
- 'dhcp_action' => $action,
- 'dhcp_time' => GetNowTimeString(),
- 'save_traf' => $save_traf
- ];
-
- if (!empty($dhcp_hostname)) {
- $auth['dhcp_hostname'] = $dhcp_hostname;
- }
- if ($action === 'add') {
- $auth['last_found'] = GetNowTimeString();
- }
-
- $resurrection_id = insert_record($db, "user_auth", $auth);
- }
-
- // Применяем правила авторизации
- if (!empty($resurrection_id)) {
- $auth_final = apply_auth_rule($db, $auth, $new_user_id);
- update_record($db, "user_auth", "id = ?", $auth_final, [$resurrection_id]);
-
- $msg .= "filter: " . ($auth_final['filter_group_id'] ?? '') .
- "\r\n queue_id: " . ($auth_final['queue_id'] ?? '') .
- "\r\n enabled: " . ($auth_final['enabled'] ?? '') .
- "\r\nid: $resurrection_id";
-
- if (!$hotspot_found && !empty($msg)) {
- LOG_WARNING($db, $msg);
- }
- if ($hotspot_found && !empty($msg)) {
- LOG_INFO($db, $msg);
- }
- }
-
- return $resurrection_id;
- }
- function get_auth($db, $current_auth)
- {
- if (!isset($current_auth) || $current_auth == 0) {
- return null;
- }
-
- $t_login = get_record_sql($db,
- "SELECT U.login, A.ip
- FROM user_list AS U, user_auth AS A
- WHERE A.user_id = U.id AND A.id = ?",
- [(int)$current_auth]
- );
-
- if (!empty($t_login) && isset($t_login['login'])) {
- return $t_login['login'] . "[" . $t_login['ip'] . "]";
- }
- return '';
- }
- function get_auth_by_mac($db, $mac)
- {
- if (empty($mac)) {
- return ['auth' => 'Unknown', 'mac' => ''];
- }
-
- $mac_dotted = mac_dotted($mac);
- $t_login = get_record_sql($db,
- "SELECT U.id, U.login, A.id as auth_id, A.ip
- FROM user_list AS U, user_auth AS A
- WHERE A.user_id = U.id AND A.mac = ? AND A.deleted = 0
- ORDER BY A.last_found DESC",
- [$mac_dotted]
- );
-
- if (!empty($t_login) && isset($t_login['id'])) {
- $user_id = (int)$t_login['id'];
- $auth_id = (int)$t_login['auth_id'];
- $login = htmlspecialchars($t_login['login']);
- $ip = htmlspecialchars($t_login['ip']);
- $result['auth'] = '<a href="/admin/users/edituser.php?id=' . $user_id . '">' . $login . '</a> / ip: <a href="/admin/users/editauth.php?id=' . $auth_id . '">' . $ip . '</a>';
- } else {
- $result['auth'] = 'Unknown';
- }
-
- $result['mac'] = expand_mac($db, $mac_dotted);
- return $result;
- }
- function get_auth_mac($db, $current_auth)
- {
- if (!isset($current_auth) || $current_auth == 0) {
- return null;
- }
-
- $t_login = get_record_sql($db,
- "SELECT U.login, A.mac
- FROM user_list AS U, user_auth AS A
- WHERE A.user_id = U.id AND A.id = ?",
- [(int)$current_auth]
- );
-
- // Исправлена опечатка: было $t_loing, стало $t_login
- if (!empty($t_login) && isset($t_login['login'])) {
- return $t_login['login'] . " [" . $t_login['mac'] . "]";
- }
- return '';
- }
- function add_auth_rule($db, $rule, $type, $user_id)
- {
- $user_id = (int)$user_id;
- $type = (int)$type;
-
- // Проверяем существование правила
- $auth_rules = get_record_sql($db,
- "SELECT * FROM auth_rules WHERE rule = ? AND rule_type = ?",
- [$rule, $type]
- );
-
- if (empty($auth_rules)) {
- // Создаём новое правило
- $new = [
- 'user_id' => $user_id,
- 'rule_type' => $type,
- 'rule' => $rule
- ];
- $rule_id = insert_record($db, "auth_rules", $new);
- LOG_INFO($db, "Create auto rule for user_id: " . $user_id . " rule: " . $rule . " rule_type: " . $type);
- } else {
- if ($auth_rules['user_id'] !== $user_id) {
- LOG_WARNING($db, "Create auto rule for user_id: " . $user_id . " rule: " . $rule . " rule_type: " . $type . " failed! Already exists at user_id: " . $auth_rules['user_id']);
- $rule_id = 0;
- } else {
- $rule_id = $auth_rules['id'];
- }
- }
- return $rule_id;
- }
- function update_auth_rule($db, $new, $rule_id = 0)
- {
- if (empty($new) || !isset($new['rule_type']) || !isset($new['rule'])) {
- return 0;
- }
-
- $rule_id = (int)$rule_id;
- $type = (int)$new['rule_type'];
- $rule = $new['rule'];
-
- // Проверяем существование другого правила с теми же параметрами
- $auth_rules = get_record_sql($db,
- "SELECT * FROM auth_rules WHERE rule = ? AND rule_type = ? AND id != ?",
- [$rule, $type, $rule_id]
- );
-
- if (empty($auth_rules)) {
- // Обновляем правило
- $updated_id = update_record($db, "auth_rules", "id = ?", $new, [$rule_id]);
- return $updated_id !== false ? $rule_id : 0;
- } else {
- // Правило уже существует у другого пользователя
- LOG_WARNING($db, "Update auto rule id: " . $rule_id . " rule: " . $rule . " rule_type: " . $type . " failed! Already exists at user_id: " . $auth_rules['user_id']);
- return 0;
- }
- }
- function LOG_INFO($db, $msg, $auth_id = 0)
- {
- if (get_const('log_level') < L_INFO) {
- return;
- }
- write_log($db, $msg, L_INFO, $auth_id);
- }
- function LOG_ERROR($db, $msg, $auth_id = 0)
- {
- if (get_const('log_level') < L_ERROR) {
- return;
- }
- email(L_ERROR,$msg);
- write_log($db, $msg, L_ERROR, $auth_id);
- }
- function LOG_VERBOSE($db, $msg, $auth_id = 0)
- {
- if (get_const('log_level') < L_VERBOSE) {
- return;
- }
- write_log($db, $msg, L_VERBOSE, $auth_id);
- }
- function LOG_WARNING($db, $msg, $auth_id = 0)
- {
- if (get_const('log_level') < L_WARNING) {
- return;
- }
- write_log($db, $msg, L_WARNING, $auth_id);
- }
- function LOG_DEBUG($db, $msg, $auth_id = 0)
- {
- if (!empty(get_const('debug')) and get_const('debug')) {
- write_log($db, $msg, L_DEBUG, $auth_id);
- }
- }
- function truncateByWords($string, $length = 100)
- {
- if (strlen($string) <= $length) {
- return $string;
- }
- $wrapped = wordwrap($string, $length);
- $shortened = substr($wrapped, 0, strpos($wrapped, "\n"));
- return $shortened;
- }
- function get_first_line($msg)
- {
- if (empty($msg)) {
- return;
- }
- preg_match('/(.*)(\n|\<br\>)/', $msg, $matches);
- if (!empty($matches[1])) {
- return $matches[1];
- }
- return truncateByWords($msg, 80);
- }
- function email($level = L_WARNING, $msg = '') {
- if (empty($msg)) { return; }
- // Безопасное получение данных сессии
- $currentIp = filter_var($_SESSION['ip'] ?? '127.0.0.1', FILTER_VALIDATE_IP) ?: '127.0.0.1';
- $currentLogin = htmlspecialchars($_SESSION['login'] ?? 'http', ENT_QUOTES, 'UTF-8');
- // Обработка сообщения
- $subjectPrefix = ($level === L_WARNING) ? "WARN: " : "ERROR: ";
- $subject = $subjectPrefix . htmlspecialchars(get_first_line($msg), ENT_QUOTES, 'UTF-8') . "...";
- $messageType = ($level === L_WARNING) ? 'WARNING' : 'ERROR';
- // Формирование HTML-сообщения с экранированием
- $safeMsg = nl2br(htmlspecialchars($msg, ENT_QUOTES, 'UTF-8'));
- $htmlMessage = "<html>
- <body>
- <h1>$messageType!</h1>
- <p>Manager: $currentLogin</p>
- <p>From: $currentIp</p>
- <div>$safeMsg</div>
- </body>
- </html>";
- // Заголовки письма
- $senderEmail = filter_var(get_const('sender_email'), FILTER_VALIDATE_EMAIL);
- if (!$senderEmail) {
- error_log("Invalid sender email address");
- return;
- }
- $boundary = md5(uniqid(time(), true));
- $headers = [
- 'From' => $senderEmail,
- 'Reply-To' => $senderEmail,
- 'X-Mailer' => 'PHP',
- 'MIME-Version' => '1.0',
- 'Content-Type' => 'multipart/mixed; boundary=' . $boundary,
- 'Content-Transfer-Encoding' => 'base64'
- ];
- // Формирование тела письма
- $message = "--$boundary\r\n" .
- "Content-Type: text/html; charset=UTF-8\r\n" .
- "Content-Transfer-Encoding: base64\r\n\r\n" .
- chunk_split(base64_encode($htmlMessage)) . "\r\n" .
- "--$boundary--";
- // Отправка письма
- $adminEmail = filter_var(get_const('admin_email'), FILTER_VALIDATE_EMAIL);
- $additional_parameters = "-f ".$senderEmail;
- if ($adminEmail) {
- if (!mail($adminEmail, $subject, $message, $headers, $additional_parameters)) {
- error_log("Failed to send email to $adminEmail");
- }
- } else {
- error_log("Invalid admin email address");
- }
- }
- function write_log($db, $msg, $level = L_INFO, $auth_id = 0)
- {
- if (!isset($msg)) { return; }
- // Безопасное получение данных сессии
- $currentIp = filter_var($_SESSION['ip'] ?? '127.0.0.1', FILTER_VALIDATE_IP) ?: '127.0.0.1';
- $currentLogin = htmlspecialchars($_SESSION['login'] ?? 'http', ENT_QUOTES, 'UTF-8');
- // Для уровня L_DEBUG пишем в error_log
- if ($level === L_DEBUG) {
- error_log("DEBUG: " . $msg);
- return;
- }
- try {
- // Используем подготовленный запрос PDO напрямую
- $stmt = $db->prepare("INSERT INTO worklog(customer, message, level, auth_id, ip)
- VALUES (:customer, :message, :level, :auth_id, :ip)");
-
- $result = $stmt->execute([
- ':customer' => $currentLogin,
- ':message' => $msg,
- ':level' => $level,
- ':auth_id' => $auth_id,
- ':ip' => $currentIp
- ]);
-
- return $result;
-
- } catch (PDOException $e) {
- // В случае ошибки логируем в error_log, чтобы избежать рекурсии
- error_log("Error writing log to database: " . $e->getMessage());
- return false;
- }
- }
- function print_year_select($year_name, $year)
- {
- print "<select id=\"$year_name\" name=\"$year_name\" >\n";
- for ($i = $year - 10; $i <= $year + 10; $i++) {
- print_select_item($i, $i, $year);
- }
- print "</select>\n";
- }
- function print_date_select($dd, $mm, $yy)
- {
- if ($dd >= 1) {
- print "<b>День</b>\n";
- print "<select id=\"day\" name=\"day\" >\n";
- for ($i = 1; $i <= 31; $i++) {
- print_select_item($i, $i, $dd);
- }
- print "</select>\n";
- }
- if ($mm >= 1) {
- print "<b>Месяц</b>\n";
- print "<select id=\"month\" name=\"month\" >\n";
- for ($i = 1; $i <= 12; $i++) {
- $tmp_date = DateTimeImmutable::createFromFormat('U', strtotime("$i/01/$yy"));
- $month_name = $tmp_date->format('F');
- print_select_item($month_name, $i, $mm);
- }
- print "</select>\n";
- }
- print "<b>Год</b>\n";
- print_year_select('year', $yy);
- }
- function print_date_select2($dd, $mm, $yy)
- {
- if ($dd >= 1) {
- print "<b>День</b>\n";
- print "<select id=\"day2\" name=\"day2\" >\n";
- for ($i = 1; $i <= 31; $i++) {
- print_select_item($i, $i, $dd);
- }
- print "</select>\n";
- }
- if ($mm >= 1) {
- print "<b>Месяц</b>\n";
- print "<select id=\"month2\" name=\"month2\" >\n";
- for ($i = 1; $i <= 12; $i++) {
- $tmp_date = DateTimeImmutable::createFromFormat('U', strtotime("$i/01/$yy"));
- $month_name = $tmp_date->format('F');
- print_select_item($month_name, $i, $mm);
- }
- print "</select>\n";
- }
- print "<b>Год</b>\n";
- print_year_select('year2', $yy);
- }
- function is_up($ip)
- {
- if (!isset($ip) or strlen($ip) == 0) {
- return false;
- }
- exec(sprintf('ping -i .3 -c 1 -W 5 %s', escapeshellarg($ip)), $res, $rval);
- return $rval == 0;
- }
- function apply_device_lock($db, $device_id, $iteration = 0)
- {
- $iteration++;
- if ($iteration > 2) {
- return false;
- }
-
- // Извлекаем исходную временную метку (без UNIX_TIMESTAMP)
- $dev = get_record_sql($db,
- 'SELECT discovery_locked, locked_timestamp FROM devices WHERE id = ? AND discovery_locked > 0',
- [(int)$device_id]
- );
-
- // Проверяем, есть ли запись и валидна ли временная метка
- if (empty($dev) || empty($dev['locked_timestamp']) || $dev['locked_timestamp'] === '0000-00-00 00:00:00') {
- LOG_DEBUG($db, "Snmp discovery lock not found. Set and discovery.");
- return set_lock_discovery($db, (int)$device_id);
- }
-
- // Преобразуем строку даты в Unix timestamp
- try {
- // Удаляем микросекунды (если есть, как в PostgreSQL)
- $ts_str = preg_replace('/\.\d+$/', '', $dev['locked_timestamp']);
- $dt = new DateTime($ts_str);
- $u_locked_timestamp = $dt->getTimestamp();
- } catch (Exception $e) {
- // Если парсинг не удался — считаем блокировку недействительной
- LOG_DEBUG($db, "Invalid lock timestamp format. Resetting lock.");
- return set_lock_discovery($db, (int)$device_id);
- }
-
- $now = time();
- $wait_time = ($u_locked_timestamp + SNMP_LOCK_TIMEOUT) - $now;
-
- LOG_DEBUG($db, "Check snmp lock for device id: " . $device_id . ". Lock timestamp: " . $u_locked_timestamp . ", now: " . $now);
-
- if ($wait_time <= 0) {
- LOG_DEBUG($db, "The lock is already expired. Set new lock.");
- return set_lock_discovery($db, (int)$device_id);
- }
-
- LOG_VERBOSE($db, "Snmp discovery lock for device id: $device_id found! Need wait " . $wait_time . " sec.");
- sleep($wait_time);
- LOG_VERBOSE($db, "Try set new lock and continue discovery for device id: " . $device_id);
-
- return apply_device_lock($db, (int)$device_id, $iteration);
- }
- function set_lock_discovery($db, $device_id)
- {
- $new['discovery_locked'] = 1;
- $new['locked_timestamp'] = GetNowTimeString();
- if (update_record($db, 'devices', 'id = ?', $new, [(int)$device_id])) {
- return true;
- }
- return false;
- }
- function unset_lock_discovery($db, $device_id)
- {
- $new['discovery_locked'] = 0;
- $new['locked_timestamp'] = GetNowTimeString();
- if (update_record($db, 'devices', 'id = ?', $new, [(int)$device_id])) {
- return true;
- }
- return false;
- }
- function set_port_for_group($db, $group_id, $place_id, $state)
- {
- $group_id = (int)$group_id;
- $place_id = (int)$place_id;
- $state = (int)$state;
-
- // Получаем список авторизаций для группы
- $auth_list = get_records_sql($db,
- 'SELECT user_auth.id, user_auth.dns_name, user_auth.ip
- FROM user_auth, user_list
- WHERE user_auth.user_id = user_list.id
- AND user_auth.deleted = 0
- AND user_list.ou_id = ?',
- [$group_id]
- );
-
- LOG_VERBOSE($db, 'Mass port state change started!');
-
- // Обработка списка авторизаций
- foreach ($auth_list as $row) {
- $auth_id = (int)$row['id'];
-
- // Формируем фильтр по месту
- if ($place_id == 0) {
- $place_condition = '1=1';
- $place_params = [];
- } else {
- $place_condition = 'D.building_id = ?';
- $place_params = [$place_id];
- }
-
- // Получение информации об устройстве
- $devSQL = 'SELECT D.id, D.device_name, D.vendor_id, D.device_model, D.ip,
- DP.port, DP.snmp_index
- FROM devices AS D, device_ports AS DP, connections AS C
- WHERE ' . $place_condition . '
- AND D.id = DP.device_id
- AND DP.id = C.port_id
- AND C.auth_id = ?';
-
- $params = array_merge($place_params, [$auth_id]);
- $dev_info = get_record_sql($db, $devSQL, $params);
-
- if (empty($dev_info)) {
- continue;
- }
-
- // Получение устройства
- $device = get_record($db, 'devices', "id = ?", [(int)$dev_info['id']]);
- $snmp = getSnmpAccess($device);
-
- // Определение режима и обновление nagios_handler
- if ($state == 1) {
- $mode = 'enable';
- update_record($db, 'user_auth',
- 'id = ? AND nagios_handler = ?',
- ['nagios_handler' => 'restart-port'],
- [$auth_id, 'manual-mode']
- );
- } else {
- $mode = 'disable';
- update_record($db, 'user_auth',
- 'id = ? AND nagios_handler = ?',
- ['nagios_handler' => 'manual-mode'],
- [$auth_id, 'restart-port']
- );
- }
-
- // Логирование
- LOG_INFO($db, "At device " . htmlspecialchars($dev_info['device_name']) .
- " [" . htmlspecialchars($dev_info['ip']) . "] " .
- $mode . " port " . htmlspecialchars($dev_info['port']) .
- " for auth_id: " . $auth_id .
- " (" . htmlspecialchars($row['ip']) . " [" . htmlspecialchars($row['dns_name']) . "])");
-
- // Установка состояния порта
- set_port_state($dev_info['vendor_id'], $dev_info['snmp_index'],
- $dev_info['ip'], $snmp, $state);
-
- // Установка состояния PoE
- set_port_poe_state($dev_info['vendor_id'], $dev_info['port'],
- $dev_info['snmp_index'], $dev_info['ip'],
- $snmp, $state);
- }
-
- LOG_VERBOSE($db, 'Mass port state change stopped.');
- }
- function get_mac_vendor($db, $mac)
- {
- if (empty($mac)) {
- return '';
- }
-
- $mac = mac_dotted($mac);
- $mac_prefixes = [
- $mac, // полный MAC
- substr($mac, 0, 14), // OUI + 2 байта
- substr($mac, 0, 11), // OUI + 1 байт
- substr($mac, 0, 8) // только OUI
- ];
-
- $vendor = null;
- foreach ($mac_prefixes as $oui) {
- if (empty($oui)) continue;
- $vendor = get_record_sql($db, 'SELECT companyname,companyaddress FROM mac_vendors WHERE oui = ?', [$oui]);
- if (!empty($vendor)) { break; }
- }
- if (empty($vendor)) { return ''; }
- $address = $vendor['companyaddress'] ?? null;
- $name = $vendor['companyname'] ?? null;
-
- if (!empty($address)) {
- return $address;
- }
- return $name ?? '';
- }
- function strHexToBin($number)
- {
- $result = '';
- for ($i = 0; $i < strlen($number); $i++) {
- $conv = base_convert($number[$i], 16, 2);
- $result .= str_pad($conv, 4, '0', STR_PAD_LEFT);
- }
- return $result;
- }
- function dec_to_hex($mac)
- {
- if (!isset($mac)) {
- return;
- }
- $mac_array = explode('.', $mac);
- for ($i = 0; $i < count($mac_array); $i++) {
- $hex_i = dechex($mac_array[$i]);
- if (strlen($hex_i) == 1) {
- $hex_i = "0" . $hex_i;
- }
- $mac_array[$i] = $hex_i;
- }
- $hex_mac = implode(':', $mac_array);
- return $hex_mac;
- }
- function mac_simplify($mac)
- {
- if (!isset($mac)) {
- return;
- }
- $mac = strtolower(trim($mac));
- $mac = preg_replace('/(\.|:|-)/', '', $mac);
- return $mac;
- }
- function mac_dotted($mac)
- {
- if (!isset($mac)) {
- return;
- }
- $mac = mac_simplify($mac);
- $mac = preg_replace('/(\S{2})(\S{2})?(\S{2})?(\S{2})?(\S{2})?(\S{2})?/', '$1:$2:$3:$4:$5:$6', $mac);
- $mac = preg_replace('/\:+$/', '', $mac, 5);
- return $mac;
- }
- function unbind_ports($db, $device_id)
- {
- $device_id = (int)$device_id;
-
- $target = get_records_sql($db,
- "SELECT target_port_id, id FROM device_ports WHERE device_id = ?",
- [$device_id]
- );
-
- foreach ($target as $row) {
- $port_id = (int)$row['id'];
- $target_port_id = (int)$row['target_port_id'];
-
- // Обнуляем ссылки на этот порт у других портов
- update_record($db, "device_ports", "target_port_id = ?", ['target_port_id' => 0], [$port_id]);
-
- // Обнуляем ссылку этого порта на другой порт
- update_record($db, "device_ports", "id = ?", ['target_port_id' => 0], [$port_id]);
- }
- }
- function bind_ports($db, $port_id, $target_id)
- {
- $port_id = (int)$port_id;
- $target_id = (int)$target_id;
-
- // Отвязываем текущее соединение
- $new = ['target_port_id' => 0];
- $old_target = get_record_sql($db,
- "SELECT target_port_id FROM device_ports WHERE id = ?",
- [$port_id]
- );
-
- if (!empty($old_target) && !empty($old_target['target_port_id'])) {
- $old_target_id = (int)$old_target['target_port_id'];
- update_record($db, "device_ports", "id = ?", $new, [$old_target_id]);
- }
-
- // Обнуляем текущий порт
- update_record($db, "device_ports", "id = ?", $new, [$port_id]);
-
- // Создаём новое соединение
- if ($target_id > 0) {
- // Связываем port_id -> target_id
- update_record($db, "device_ports", "id = ?", ['target_port_id' => $target_id], [$port_id]);
- // Связываем target_id -> port_id
- update_record($db, "device_ports", "id = ?", ['target_port_id' => $port_id], [$target_id]);
- }
- }
- function expand_device_name($db, $name)
- {
- if (empty($name)) {
- return '';
- }
-
- $device_id = get_device_id($db, $name);
- if (isset($device_id) && $device_id > 0) {
- $safe_name = htmlspecialchars($name);
- $safe_id = (int)$device_id;
- return '<a href="/admin/devices/editdevice.php?id=' . $safe_id . '">' . $safe_name . '</a>';
- }
- return $name;
- }
- function expand_mac($db, $mac)
- {
- if (empty($mac)) {
- return '';
- }
-
- $mac = mac_dotted($mac);
- $safe_vendor = get_mac_vendor($db, $mac);
- $safe_mac = $mac;
- $safe_url_mac = urlencode($mac);
- if (!empty($safe_vendor)) {
- return '<a href="/admin/logs/mac.php?mac=' . $safe_url_mac . '"><p title="' . $safe_vendor . '">' . $safe_mac . '</p></a>';
- } else {
- return '<a href="/admin/logs/mac.php?mac=' . $safe_url_mac . '">' . $safe_mac . '</a>';
- }
- }
- function expand_log_str($db, $msg)
- {
- if (empty($msg)) {
- return '';
- }
-
- $result = $msg;
- // === Замена auth_id ===
- $auth_pattern = '/(auth_id:|auth|auth id:|auth id)\s+(\d+)/i';
- $result = preg_replace_callback($auth_pattern, function($matches) {
- $id = (int)$matches[2];
- $safe_id = htmlspecialchars($id, ENT_QUOTES, 'UTF-8');
- return '<a href="/admin/users/editauth.php?id=' . $id . '">auth_id:' . $safe_id . '</a>';
- }, $result);
- // === Замена user_id ===
- $user_pattern = '/(user_id:|user|user id:|user id)\s+(\d+)/i';
- $result = preg_replace_callback($user_pattern, function($matches) {
- $id = (int)$matches[2];
- $safe_id = htmlspecialchars($id, ENT_QUOTES, 'UTF-8');
- return '<a href="/admin/users/edituser.php?id=' . $id . '">user_id:' . $safe_id . '</a>';
- }, $result);
- // === Замена MAC-адресов в формате [1234567890ab] ===
- $mac_pattern1 = '/\s*\[(\w{12})\]\s*/i';
- $result = preg_replace_callback($mac_pattern1, function($matches) {
- $mac_raw = $matches[1];
- $mac_dotted = mac_dotted($mac_raw);
- $safe_mac = htmlspecialchars($mac_dotted, ENT_QUOTES, 'UTF-8');
- $url_mac = urlencode($mac_dotted);
- return ' <a href="/admin/logs/mac.php?mac=' . $url_mac . '">' . $safe_mac . '</a> ';
- }, $result);
- // === Замена MAC-адресов в формате "mac: xx:xx:xx:xx:xx:xx" ===
- $mac_pattern2 = '/\s*mac:\s+([\w:]{17})/i';
- $result = preg_replace_callback($mac_pattern2, function($matches) {
- $mac_raw = $matches[1];
- $mac_dotted = mac_dotted($mac_raw);
- $safe_mac = htmlspecialchars($mac_dotted, ENT_QUOTES, 'UTF-8');
- $url_mac = urlencode($mac_dotted);
- return ' mac: <a href="/admin/logs/mac.php?mac=' . $url_mac . '">' . $safe_mac . '</a> ';
- }, $result);
- // === Замена device name ===
- $device_pattern1 = '/at device\s+([\w.\-]+)/i';
- $result = preg_replace_callback($device_pattern1, function($matches) use ($db) {
- $device_name = $matches[1];
- $device_id = get_device_id($db, $device_name);
- if ($device_id && $device_id > 0) {
- $safe_name = htmlspecialchars($device_name, ENT_QUOTES, 'UTF-8');
- return 'at device <a href="/admin/devices/editdevice.php?id=' . (int)$device_id . '">' . $safe_name . '</a>';
- }
- return $matches[0];
- }, $result);
- // === Замена device_id ===
- $device_pattern2 = '/(device_id:|device id:|device id|device_id)\s+(\d+)/i';
- $result = preg_replace_callback($device_pattern2, function($matches) {
- $id = (int)$matches[2];
- $safe_id = htmlspecialchars($id, ENT_QUOTES, 'UTF-8');
- return 'device_id: <a href="/admin/devices/editdevice.php?id=' . $id . '">' . $safe_id . '</a>';
- }, $result);
- // === Замена IP-адресов ===
- $ip_pattern = '/\s*ip:\s+(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\s*/i';
- $result = preg_replace_callback($ip_pattern, function($matches) use ($db) {
- $ip = $matches[1];
- if (filter_var($ip, FILTER_VALIDATE_IP)) {
- $auth_id = get_auth_by_ip($db, $ip);
- if ($auth_id && $auth_id > 0) {
- $safe_ip = htmlspecialchars($ip, ENT_QUOTES, 'UTF-8');
- return ' ip: <a href="/admin/users/editauth.php?id=' . (int)$auth_id . '">' . $safe_ip . '</a> ';
- }
- }
- return $matches[0];
- }, $result);
- return $result;
- }
- function is_auth_bind_changed($db, $id, $ip, $mac)
- {
- $old_record = get_record_sql($db,
- "SELECT ip, mac FROM user_auth WHERE id = ?",
- [(int)$id]
- );
-
- if (empty($old_record) || empty($old_record["ip"]) || empty($old_record["mac"])) {
- return 0;
- }
-
- if ($old_record["ip"] !== $ip || $old_record["mac"] !== $mac) {
- LOG_VERBOSE($db, "Changed ip or mac for auth record!");
- return 1;
- }
-
- return 0;
- }
- function copy_auth($db, $id, $new_auth)
- {
- $id = (int)$id;
- $old_record = get_record_sql($db,
- "SELECT * FROM user_auth WHERE id = ?",
- [$id]
- );
-
- if (empty($old_record)) {
- return null;
- }
-
- delete_record($db, "user_auth", "id = ?", [$id]);
-
- $new_auth["user_id"] = $old_record["user_id"];
- $new_auth["changed"] = 1;
- $new_auth["changed_time"] = GetNowTimeString();
-
- $new_id = insert_record($db, "user_auth", $new_auth);
-
- if (!empty($new_id)) {
- LOG_VERBOSE($db, "Old record with id: $id deleted. Created new auth record for new ip+mac id: $new_id!");
- }
-
- return $new_id;
- }
- function get_dns_name($db, $id)
- {
- $auth_record = get_record_sql($db,
- "SELECT dns_name FROM user_auth WHERE id = ?",
- [(int)$id]
- );
-
- if (!empty($auth_record) && !empty($auth_record['dns_name'])) {
- return $auth_record['dns_name'];
- }
-
- return '';
- }
- function get_cacti_graph($host_ip, $port_index)
- {
- // Проверка конфигурации Cacti
- if (empty(get_const('cacti_url'))) {
- return null;
- }
-
- if (empty(CACTI_DB_HOST) || empty(CACTI_DB_USER) || empty(CACTI_DB_PASS) || empty(CACTI_DB_NAME)) {
- return null;
- }
-
- // Установка соединения с БД Cacti
- $cacti_db_link = new_connection('mysql', CACTI_DB_HOST, CACTI_DB_USER, CACTI_DB_PASS, CACTI_DB_NAME);
- if (!$cacti_db_link) {
- return false;
- }
-
- // Поиск хоста по IP-адресу
- $cacti_host = get_record_sql($cacti_db_link,
- "SELECT * FROM host WHERE hostname = ?",
- [$host_ip]
- );
-
- if (empty($cacti_host) || empty($cacti_host["id"])) {
- return null;
- }
-
- $host_id = (int)$cacti_host["id"];
- $port_index = (string)$port_index; // SNMP index может быть строкой
-
- // Получение ID шаблонов графиков для трафика интерфейсов
- $traffic_templates = get_records_sql($cacti_db_link,
- "SELECT id FROM graph_templates WHERE name LIKE 'Interface - Traffic%'"
- );
-
- if (empty($traffic_templates)) {
- return null;
- }
-
- $template_ids = [];
- foreach ($traffic_templates as $template) {
- $template_ids[] = (int)$template['id'];
- }
-
- // Формирование условия IN для параметризованного запроса
- $placeholders = str_repeat('?,', count($template_ids) - 1) . '?';
-
- // Поиск графика по хосту, SNMP-индексу и шаблону
- $cacti_graph = get_record_sql($cacti_db_link,
- "SELECT * FROM graph_local
- WHERE host_id = ?
- AND snmp_index = ?
- AND graph_template_id IN ($placeholders)
- ORDER BY id ASC",
- array_merge([$host_id, $port_index], $template_ids)
- );
-
- if (empty($cacti_graph) || empty($cacti_graph["id"])) {
- return null;
- }
-
- $graph_id = (int)$cacti_graph["id"];
- $result = rtrim(get_const('cacti_url'), '/') . "/graph_image.php?local_graph_id=" . $graph_id;
-
- return $result;
- }
- function print_select_item($description, $value, $current)
- {
- if ((string)$value === (string)$current) {
- print "<option value='" . $value . "' selected>$description</option>";
- } else {
- print "<option value='" . $value . "'>$description</option>";
- }
- }
- function print_select_simple($description, $value)
- {
- print "<option value=$value>$description</option>";
- }
- function print_select_item_ext($description, $value, $current, $disabled)
- {
- if ((string)$value === (string)$current) {
- print "<option value=$value selected>$description</option>";
- } else {
- if (!$disabled) {
- print "<option value=$value>$description</option>";
- } else {
- print "<option disabled value=$value>$description</option>";
- }
- }
- }
- function print_row_at_pages($name, $value)
- {
- print "<select id='" . $name . "' name='" . $name . "'>\n";
- print_select_item(WEB_select_item_more, pow(10, 10), $value);
- print_select_item('25', 25, $value);
- print_select_item('50', 50, $value);
- print_select_item('100', 100, $value);
- print_select_item('200', 200, $value);
- print_select_item('500', 500, $value);
- print_select_item('1000', 1000, $value);
- print_select_item('2000', 2000, $value);
- print "</select>\n";
- }
- function print_navigation($url, $page, $displayed, $count_records, $total)
- {
- if ($total <= 1) {
- print "<div align=left class=records >";
- print "| Total records: $count_records";
- print "</div>";
- return;
- }
- $v_char = "?";
- if (preg_match('/\.php\?/', $url)) {
- $v_char = "&";
- }
- //две назад
- print "<div align=left class=records >";
- if (($page - 2) > 0) :
- $pagetwoleft = "<a class='first_page_link' href=" . $url . $v_char . "page=" . ($page - 2) . ">" . ($page - 2) . "</a> ";
- else :
- $pagetwoleft = null;
- endif;
- //одна назад
- if (($page - 1) > 0) :
- $pageoneleft = "<a class='first_page_link' href=" . $url . $v_char . "page=" . ($page - 1) . ">" . ($page - 1) . "</a> ";
- $pagetemp = ($page - 1);
- else :
- $pageoneleft = null;
- $pagetemp = null;
- endif;
- //две вперед
- if (($page + 2) <= $total) :
- $pagetworight = " <a class='first_page_link' href=" . $url . $v_char . "page=" . ($page + 2) . ">" . ($page + 2) . "</a>";
- else :
- $pagetworight = null;
- endif;
- //одна вперед
- if (($page + 1) <= $total) :
- $pageoneright = " <a class='first_page_link' href=" . $url . $v_char . "page=" . ($page + 1) . ">" . ($page + 1) . "</a>";
- $pagetemp2 = ($page + 1);
- else :
- $pageoneright = null;
- $pagetemp2 = null;
- endif;
- // в начало
- if ($page != 1 && $pagetemp != 1 && $pagetemp != 2) :
- $pagerevp = "<a href=" . $url . $v_char . "page=1 class='first_page_link' title='В начало'><<</a> ";
- else :
- $pagerevp = null;
- endif;
- //в конец (последняя)
- if ($page != $total && $pagetemp2 != ($total - 1) && $pagetemp2 != $total) :
- $nextp = " ... <a href=" . $url . $v_char . "page=" . $total . " class='first_page_link'>$total</a>";
- else :
- $nextp = null;
- endif;
- print $pagerevp . $pagetwoleft . $pageoneleft . '<span class="num_page_not_link"><b>' . $page . '</b></span>' . $pageoneright . $pagetworight . $nextp;
- print " | Total records: $count_records";
- print "</div>";
- }
- function get_option($db, $option_id)
- {
- // Валидация входного параметра
- if (!is_numeric($option_id) || $option_id <= 0) {
- return null;
- }
-
- $sql = "
- SELECT
- COALESCE(c.value, co.default_value) AS value,
- co.option_type
- FROM config_options co
- LEFT JOIN config c ON c.option_id = co.id
- WHERE co.id = ?
- ";
- $record = get_record_sql($db, $sql, [(int)$option_id]);
-
- if ($record && isset($record['value'])) {
- return $record['value'];
- }
- return null;
- }
- function is_option($db, $option_id)
- {
- if (!is_numeric($option_id) || $option_id <= 0) {
- return false;
- }
-
- $option = get_record($db, "config", "option_id = ?", [(int)$option_id]);
- if (empty($option) || empty($option['value'])) {
- return false;
- }
- return true;
- }
- function set_option($db, $option_id, $value)
- {
- if (!is_numeric($option_id) || $option_id <= 0) {
- return false;
- }
-
- $option = ['value' => $value];
- $result = update_record($db, 'config', "option_id = ?", $option, [(int)$option_id]);
- return $result !== false;
- }
- function is_subnet_aton($subnet, $ip)
- {
- if (empty($subnet) || empty($ip)) {
- return false;
- }
-
- // Проверяем корректность IP-адреса
- if (!is_numeric($ip)) {
- return false;
- }
-
- $range = cidrToRange($subnet);
- if ($range === false) {
- return false;
- }
-
- $ip_start = ip2long($range[0]);
- $ip_end = ip2long($range[1]);
-
- if ($ip_start === false || $ip_end === false) {
- return false;
- }
-
- if ($ip >= $ip_start && $ip <= $ip_end) {
- return true;
- }
- return false;
- }
- function get_new_user_id($db, $ip, $mac, $hostname)
- {
- $result = [
- 'ip' => $ip,
- 'mac' => !empty($mac) ? mac_dotted($mac) : '',
- 'hostname' => $hostname,
- 'user_id' => null,
- 'ou_id' => null
- ];
-
- $ip_aton = ip2long($ip);
- if ($ip_aton === false) {
- // Некорректный IP - используем значения по умолчанию
- if (empty($result['ou_id'])) {
- $result['ou_id'] = get_const('default_user_ou_id');
- }
- return $result;
- }
-
- // Проверка hotspot
- if (is_hotspot($db, $ip)) {
- $result['ou_id'] = get_const('default_hotspot_ou_id');
- return $result;
- }
-
- // === Правила для пользователей ===
-
- // IP правила (rule_type = 1)
- if (!empty($ip)) {
- $t_rules = get_records_sql($db,
- "SELECT * FROM auth_rules WHERE rule_type = 1 AND LENGTH(rule) > 0 AND user_id IS NOT NULL"
- );
- foreach ($t_rules as $row) {
- if (!empty($row['rule']) && is_subnet_aton($row['rule'], $ip_aton)) {
- $result['user_id'] = (int)$row['user_id'];
- return $result;
- }
- }
- }
-
- // MAC правила (rule_type = 2)
- if (!empty($mac)) {
- $mac_simplified = mac_simplify($mac);
- $mac_rules = get_records_sql($db,
- "SELECT * FROM auth_rules WHERE rule_type = 2 AND LENGTH(rule) > 0 AND user_id IS NOT NULL"
- );
- foreach ($mac_rules as $row) {
- if (!empty($row['rule'])) {
- $pattern = '/' . preg_quote(mac_simplify($row['rule']), '/') . '/';
- if (preg_match($pattern, $mac_simplified)) {
- $result['user_id'] = (int)$row['user_id'];
- return $result;
- }
- }
- }
- }
-
- // Hostname правила (rule_type = 3)
- if (!empty($hostname)) {
- $hostname_rules = get_records_sql($db,
- "SELECT * FROM auth_rules WHERE rule_type = 3 AND LENGTH(rule) > 0 AND user_id IS NOT NULL"
- );
- foreach ($hostname_rules as $row) {
- if (!empty($row['rule'])) {
- // Добавляем делимитеры к регулярному выражению, если их нет
- $pattern = $row['rule'];
- if (@preg_match($pattern, '') === false) {
- // Если шаблон некорректен, пропускаем
- continue;
- }
- if (preg_match($pattern, $hostname)) {
- $result['user_id'] = (int)$row['user_id'];
- return $result;
- }
- }
- }
- }
-
- // === Правила для OU ===
-
- // IP правила для OU (rule_type = 1)
- if (!empty($ip)) {
- $t_rules = get_records_sql($db,
- "SELECT * FROM auth_rules WHERE rule_type = 1 AND LENGTH(rule) > 0 AND ou_id IS NOT NULL"
- );
- foreach ($t_rules as $row) {
- if (!empty($row['rule']) && is_subnet_aton($row['rule'], $ip_aton)) {
- $result['ou_id'] = (int)$row['ou_id'];
- return $result;
- }
- }
- }
-
- // MAC правила для OU (rule_type = 2)
- if (!empty($mac)) {
- $mac_simplified = mac_simplify($mac);
- $mac_rules = get_records_sql($db,
- "SELECT * FROM auth_rules WHERE rule_type = 2 AND LENGTH(rule) > 0 AND ou_id IS NOT NULL"
- );
- foreach ($mac_rules as $row) {
- if (!empty($row['rule'])) {
- $pattern = '/' . preg_quote(mac_simplify($row['rule']), '/') . '/';
- if (preg_match($pattern, $mac_simplified)) {
- $result['ou_id'] = (int)$row['ou_id'];
- return $result;
- }
- }
- }
- }
-
- // Hostname правила для OU (rule_type = 3)
- if (!empty($hostname)) {
- $hostname_rules = get_records_sql($db,
- "SELECT * FROM auth_rules WHERE rule_type = 3 AND LENGTH(rule) > 0 AND ou_id IS NOT NULL"
- );
- foreach ($hostname_rules as $row) {
- if (!empty($row['rule'])) {
- $pattern = $row['rule'];
- if (@preg_match($pattern, '') === false) {
- continue;
- }
- if (preg_match($pattern, $hostname)) {
- $result['ou_id'] = (int)$row['ou_id'];
- return $result;
- }
- }
- }
- }
-
- // Значение по умолчанию
- if (empty($result['ou_id'])) {
- $result['ou_id'] = get_const('default_user_ou_id');
- }
-
- return $result;
- }
- function get_subnet_range($db, $subnet_id)
- {
- if (empty($subnet_id)) {
- return null;
- }
-
- $t_option = get_record_sql($db,
- "SELECT ip_int_start, ip_int_stop FROM subnets WHERE id = ?",
- [(int)$subnet_id]
- );
-
- if (empty($t_option)) {
- return null;
- }
-
- return [
- 'start' => isset($t_option['ip_int_start']) ? (int)$t_option['ip_int_start'] : 0,
- 'stop' => isset($t_option['ip_int_stop']) ? (int)$t_option['ip_int_stop'] : 0
- ];
- }
- function int_between($value, $start, $end)
- {
- return in_array($value, range($start, $end));
- }
- function is_gray_network($ip)
- {
- if (empty($ip)) {
- return 0;
- }
- $ip_aton = ip2long($ip);
- $gray_nets = array('10.0.0.0/8', '192.168.0.0/16', '172.16.0.0/12', '100.64.0.0/10');
- foreach ($gray_nets as &$net) {
- $net_cidr = cidrToRange($net);
- if (int_between($ip_aton, ip2long($net_cidr[0]), ip2long($net_cidr[1]))) {
- return $net;
- }
- }
- return 0;
- }
- function is_hotspot($db, $ip)
- {
- if (empty($ip)) {
- return false;
- }
-
- $ip_aton = ip2long($ip);
- if ($ip_aton === false) {
- LOG_DEBUG($db, "Invalid IP address: $ip");
- return false;
- }
-
- LOG_DEBUG($db, "Check hotspot network for ip: $ip");
- $t_option = get_records_sql($db, "SELECT subnet, ip_int_start, ip_int_stop FROM subnets WHERE hotspot = 1");
-
- foreach ($t_option as $row) {
- if ($ip_aton >= (int)$row['ip_int_start'] && $ip_aton <= (int)$row['ip_int_stop']) {
- LOG_DEBUG($db, "ip: $ip [$ip_aton] found in hotspot network " . $row['subnet'] . ": [" . $row['ip_int_start'] . ".." . $row['ip_int_stop'] . "]");
- return true;
- }
- }
-
- LOG_DEBUG($db, "ip $ip not found in hotspot network!");
- return false;
- }
- function is_office($db, $ip)
- {
- if (empty($ip)) {
- return false;
- }
-
- $ip_aton = ip2long($ip);
- if ($ip_aton === false) {
- LOG_DEBUG($db, "Invalid IP address: $ip");
- return false;
- }
-
- LOG_DEBUG($db, "Check office network for ip: $ip");
- $t_option = get_records_sql($db, "SELECT subnet, ip_int_start, ip_int_stop FROM subnets WHERE office = 1");
-
- foreach ($t_option as $row) {
- if ($ip_aton >= (int)$row['ip_int_start'] && $ip_aton <= (int)$row['ip_int_stop']) {
- LOG_DEBUG($db, "ip: $ip [$ip_aton] found in office network " . $row['subnet'] . ": [" . $row['ip_int_start'] . ".." . $row['ip_int_stop'] . "]");
- return true;
- }
- }
-
- LOG_DEBUG($db, "ip $ip not found in office network!");
- return false;
- }
- function get_office_subnet($db, $ip)
- {
- if (empty($ip)) {
- return null;
- }
-
- $ip_aton = ip2long($ip);
- if ($ip_aton === false) {
- LOG_DEBUG($db, "Invalid IP address: $ip");
- return null;
- }
-
- LOG_DEBUG($db, "Check office network for ip: $ip");
- $subnets = get_records_sql($db, 'SELECT * FROM subnets WHERE office = 1');
-
- foreach ($subnets as $row) {
- if ($ip_aton >= (int)$row['ip_int_start'] && $ip_aton <= (int)$row['ip_int_stop']) {
- LOG_DEBUG($db, "ip: $ip [$ip_aton] found in office {$row['subnet']}: [" . $row['ip_int_start'] . ".." . $row['ip_int_stop'] . "]");
- return $row;
- }
- }
-
- LOG_DEBUG($db, "ip $ip not found in office network!");
- return null;
- }
- function get_notify_subnet($db, $ip)
- {
- if (empty($ip)) {
- return 0;
- }
-
- $office_subnet = get_office_subnet($db, $ip);
- if ($office_subnet && isset($office_subnet['notify'])) {
- return (int)$office_subnet['notify'];
- }
- return 0;
- }
- function is_our_network($db, $ip)
- {
- if (!isset($ip)) {
- return 0;
- }
- if (is_hotspot($db, $ip)) {
- return 1;
- }
- if (is_office($db, $ip)) {
- return 1;
- }
- return 0;
- }
- function get_const($const_name)
- {
- global $config;
- if (isset($config[$const_name])) {
- return $config[$const_name];
- }
- return NULL;
- }
- function get_eye_version($db)
- {
- $v_table = get_record_sql($db, "SELECT version FROM version");
- if (!empty($v_table)) {
- return $v_table['version'];
- }
- return NULL;
- }
- function getNotifyFlags(): array {
- return [
- WEB_NOTIFY_NONE => NOTIFY_NONE,
- WEB_NOTIFY_CREATE => NOTIFY_CREATE,
- WEB_NOTIFY_UPDATE => NOTIFY_UPDATE,
- WEB_NOTIFY_DELETE => NOTIFY_DELETE,
- ];
- }
- function getNotifyLabels(): array {
- return [
- NOTIFY_NONE => WEB_NOTIFY_NONE,
- NOTIFY_CREATE => WEB_NOTIFY_CREATE,
- NOTIFY_UPDATE => WEB_NOTIFY_UPDATE,
- NOTIFY_DELETE => WEB_NOTIFY_DELETE,
- ];
- }
- function printFlagsByFirstLetter(int $flags): string {
- if ($flags === 0) {
- return 'x';
- }
- $flagLabels = getNotifyLabels();
-
- $activeLetters = [];
- $fullLabels = [];
-
- foreach ($flagLabels as $flagValue => $label) {
- if ($flagValue === 0) continue;
-
- if (($flags & $flagValue) === $flagValue) {
- $firstLetter = mb_substr($label, 0, 1, 'UTF-8');
- $activeLetters[] = $firstLetter;
- $fullLabels[] = $label;
- }
- }
-
- sort($activeLetters);
- $letters = implode('', $activeLetters);
- $tooltipText = implode(', ', $fullLabels);
-
- return '<span title="' . htmlspecialchars($tooltipText) . '">' . htmlspecialchars($letters) . '</span>';
- }
- function renderNotifyCombobox(string $name, int $selectedFlags = 0, array $attributes = []): string {
- $labels = getNotifyLabels();
- $flags = getNotifyFlags();
-
- // Собираем атрибуты
- $attrString = '';
- foreach ($attributes as $key => $value) {
- $attrString .= ' ' . htmlspecialchars($key) . '="' . htmlspecialchars($value) . '"';
- }
-
- // Предопределенные комбинации с читаемыми названиями
- $combinations = [
- NOTIFY_NONE => $labels[NOTIFY_NONE],
- NOTIFY_CREATE => $labels[NOTIFY_CREATE],
- NOTIFY_UPDATE => $labels[NOTIFY_UPDATE],
- NOTIFY_DELETE => $labels[NOTIFY_DELETE],
- NOTIFY_CREATE | NOTIFY_UPDATE => $labels[NOTIFY_CREATE] . ' + ' . $labels[NOTIFY_UPDATE],
- NOTIFY_CREATE | NOTIFY_DELETE => $labels[NOTIFY_CREATE] . ' + ' . $labels[NOTIFY_DELETE],
- NOTIFY_UPDATE | NOTIFY_DELETE => $labels[NOTIFY_UPDATE] . ' + ' . $labels[NOTIFY_DELETE],
- NOTIFY_CREATE | NOTIFY_UPDATE | NOTIFY_DELETE => $labels[NOTIFY_CREATE] . ' + ' . $labels[NOTIFY_UPDATE] . ' + ' . $labels[NOTIFY_DELETE],
- ];
-
- $html = '<select name="' . htmlspecialchars($name) . '"' . $attrString . '>';
-
- foreach ($combinations as $value => $label) {
- $isSelected = ($selectedFlags === $value);
- $selected = $isSelected ? ' selected' : '';
-
- $html .= '<option value="' . $value . '"' . $selected . '>'
- . htmlspecialchars($label)
- . '</option>';
- }
-
- $html .= '</select>';
- return $html;
- }
- /**
- * Проверяет, установлен ли флаг создания
- */
- function isNotifyCreate(int $flags): bool {
- return ($flags & NOTIFY_CREATE) === NOTIFY_CREATE;
- }
- /**
- * Проверяет, установлен ли флаг изменения
- */
- function isNotifyUpdate(int $flags): bool {
- return ($flags & NOTIFY_UPDATE) === NOTIFY_UPDATE;
- }
- /**
- * Проверяет, установлен ли флаг удаления
- */
- function isNotifyDelete(int $flags): bool {
- return ($flags & NOTIFY_DELETE) === NOTIFY_DELETE;
- }
- /**
- * Проверяет, отключены ли все уведомления
- */
- function isNotifyNone(int $flags): bool {
- return $flags === NOTIFY_NONE;
- }
- /**
- * Проверяет, установлен ли конкретный флаг
- */
- function hasNotifyFlag(int $flags, int $flagToCheck): bool {
- return ($flags & $flagToCheck) === $flagToCheck;
- }
- /**
- * Устанавливает флаг(и)
- */
- function setNotifyFlag(int &$flags, int $flagToSet): void {
- $flags |= $flagToSet;
- }
- /**
- * Снимает флаг(и)
- */
- function unsetNotifyFlag(int &$flags, int $flagToUnset): void {
- $flags &= ~$flagToUnset;
- }
- /**
- * Преобразует массив выбранных значений в битовую маску
- */
- function arrayToNotifyFlags(array $selectedValues): int {
- $flags = NOTIFY_NONE;
- foreach ($selectedValues as $value) {
- $flags |= (int)$value;
- }
- return $flags;
- }
- /**
- * Проверяет, является ли OU системным (используется по умолчанию для пользователей или хотспотов)
- *
- * @param PDO $db
- * @param int $ou_id
- * @return bool
- */
- function is_system_ou($db, $ou_id = null) {
- if (empty($ou_id) || !is_numeric($ou_id) || $ou_id <= 0) {
- return false;
- }
- $sql = "SELECT 1 FROM ou WHERE id = ? AND (default_users = 1 OR default_hotspot = 1)";
- return !empty(get_record_sql($db, $sql, [$ou_id]));
- }
- $config["org_name"] = get_option($db_link, 32);
- $config["version"] = get_eye_version($db_link);
- $config["KB"] = get_option($db_link, 1);
- if ($config["KB"] == 0) {
- $config["KB"] = 1000;
- }
- if ($config["KB"] == 1) {
- $config["KB"] = 1024;
- }
- $config["debug"] = get_option($db_link, 34);
- $config["log_level"] = get_option($db_link, 53);
- if ($config["debug"]) {
- $config["log_level"] = 255;
- }
- $config["send_email"] = get_option($db_link, 51);
- $config["admin_email"] = get_option($db_link, 21);
- $config["sender_email"] = get_option($db_link, 52);
- $config["snmp_default_version"] = get_option($db_link, 9);
- $config["snmp_default_community"] = get_option($db_link, 11);
- $config["auto_mac_rule"] = get_option($db_link, 64);
- $config["traffic_ipstat_history"] = get_option($db_link, 56);
- $config["cacti_url"] = rtrim(get_option($db_link, 58), '/');
- if (preg_match('/127.0.0.1/', $config["cacti_url"])) {
- $config["cacti_url"] = NULL;
- }
- $config["nagios_url"] = rtrim(get_option($db_link, 57), '/') . '/cgi-bin/';
- if (preg_match('/127.0.0.1/', $config["nagios_url"])) {
- $config["nagios_url"] = NULL;
- }
- $config["torrus_url"] = rtrim(get_option($db_link, 59), '/') . '?nodeid=if//HOST_IP//IF_NAME////inoutbps';
- if (preg_match('/127.0.0.1/', $config["torrus_url"])) {
- $config["torrus_url"] = NULL;
- }
- $config["dns_server"] = get_option($db_link, 3);
- $config["dns_server_type"] = get_option($db_link, 70);
- $ou = get_record_sql($db_link, "SELECT id FROM ou WHERE default_users = 1");
- if (empty($ou)) {
- $config["default_user_ou_id"] = 0;
- } else {
- $config["default_user_ou_id"] = $ou['id'];
- }
- $ou = get_record_sql($db_link, "SELECT id FROM ou WHERE default_hotspot=1");
- if (empty($ou)) {
- $config["default_hotspot_ou_id"] = $config["default_user_ou_id"];
- } else {
- $config["default_hotspot_ou_id"] = $ou['id'];
- }
- $config["init"] = 1;
- clean_dns_cache($db_link);
- //clean_unreferensed_rules($db_link);
- $config["debug"] = 1;
|