| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145 |
- <?php
- /* -------------------------------------------------------------------------- */
- /* CONFIGURATION */
- /* -------------------------------------------------------------------------- */
- date_default_timezone_set("Australia/Hobart");
- //error_reporting(E_ERROR | E_PARSE);
- error_reporting(E_ALL);
- ini_set('display_errors', '0');
- ini_set('log_errors', '1');
- require_once 'connection.php';
- include_once "vendor/autoload.php";
- if (session_status() !== PHP_SESSION_ACTIVE) session_start();
- if (empty($_SESSION['csrf'])) $_SESSION['csrf'] = bin2hex(random_bytes(16));
- $csrf = $_SESSION['csrf'];
- $accessToken = 'pat-na1-64db9489-15fe-461d-b64c-941c4d80ba8a';
- #$enquiry_date = date("l dS M \'y");
- $drg = isset($_GET['drg']) ? $_GET['drg'] : '';
- if (!empty($_GET['drg'])) {
- include "table.php";
- }
- // CHECK NEXT AVAILABLE Drawing NUMBER
- $nextQ = mysqli_query($con, "SELECT MAX(drg) AS maxdrg FROM details");
- if (!$nextQ) { printf("Error: %s\n", mysqli_error($con)); exit; }
- $MQrow = mysqli_fetch_assoc($nextQ);
- $maxQ = isset($MQrow['maxdrg']) ? ((int)$MQrow['maxdrg'] + 1) : 1;
- /* -------------------------------------------------------------------------- */
- /* API MODE */
- /* -------------------------------------------------------------------------- */
- if (!defined('SITE_ROOT')) define('SITE_ROOT', dirname(__DIR__));
- // ===== LOA markdown creation helpers and API =====
- if (!defined('CONTRACTS_DIR')) define('CONTRACTS_DIR', SITE_ROOT . '/contracts/contracts');
- // ===== LOA config (must match contracts-admin/loa.php) =====
- if (!defined('LOA_DIR')) define('LOA_DIR', SITE_ROOT . '/contracts/loa');
- if (!defined('LOA_BASE_URL')) define('LOA_BASE_URL', 'https://modulosdesign.com.au/contracts'); // where loa.php lives
- if (!defined('LOA_TOKEN_SECRET')) define('LOA_TOKEN_SECRET', 'd1Epy6ryzgLYjLEBlpiHFrgST8JbAjgksjj3hIO5zCK5DChqYpWUdr8jeWR7xEgd'); // same as loa.php
- if (!function_exists('json_response')) {
- function json_response(array $data, int $code = 200) {
- header('Content-Type: application/json; charset=utf-8');
- http_response_code($code);
- echo json_encode($data);
- }
- }
- if (!function_exists('safe_clientid')) {
- function safe_clientid(string $s): string {
- // collapse whitespace to hyphen, strip invalid chars
- $s = preg_replace('/\s+/', '-', $s);
- $s = preg_replace('/[^A-Za-z0-9\-_]+/', '-', $s);
- $s = preg_replace('/-+/', '-', $s);
- return trim($s, '-_');
- }
- }
- if (!function_exists('contract_path')) {
- function contract_path(string $clientid): string {
- return rtrim(CONTRACTS_DIR, '/\\') . DIRECTORY_SEPARATOR . $clientid . '.md';
- }
- }
- function loa_path(string $job): string {
- $id = preg_replace('/\D+/', '', $job); // digits only to match loa.php
- return rtrim(LOA_DIR, '/\\') . DIRECTORY_SEPARATOR . $id . '.md';
- }
- function loa_public_url(string $job): string {
- $jobClean = preg_replace('/\D+/', '', $job); // digits only
- $token = hash_hmac('sha256', 'loa|' . $jobClean, LOA_TOKEN_SECRET);
- return rtrim(LOA_BASE_URL, '/') . '/loa.php?job=' . rawurlencode($jobClean) . '&token=' . rawurlencode($token);
- }
- /** Minimal front-matter pulls for LOA */
- function extract_loa_fields(string $file): array {
- $out = ['client_name'=>'','client_email'=>'','property_address'=>''];
- $txt = @file_get_contents($file);
- if (!$txt) return $out;
- if (!preg_match('/^---\s*\R(.*?)\R---/s', $txt, $m)) return $out;
- $fm = $m[1]; $ctx = null;
- foreach (preg_split('/\R/', $fm) as $line) {
- if (preg_match('/^\s*client\s*:\s*$/', $line)) { $ctx='client'; continue; }
- if (preg_match('/^\s*property\s*:\s*$/', $line)) { $ctx='property'; continue; }
- if ($ctx==='client') {
- if (preg_match('/^\s*name\s*:\s*(.+)$/', $line, $mm)) $out['client_name'] = trim($mm[1], " \t\"'");
- if (preg_match('/^\s*email\s*:\s*(.+)$/', $line, $mm)) $out['client_email']= trim($mm[1], " \t\"'");
- } elseif ($ctx==='property') {
- if (preg_match('/^\s*address\s*:\s*(.+)$/', $line, $mm)) $out['property_address']= trim($mm[1], " \t\"'");
- }
- }
- return $out;
- }
- /** Tiny contract front-matter extractor used by lookup */
- function extract_front_matter_fields(string $file): array {
- $out = [];
- $txt = @file_get_contents($file);
- if (!$txt) return $out;
- if (!preg_match('/^---\s*\R(.*?)\R---/s', $txt, $m)) return $out;
- $fm = $m[1];
- if (preg_match('/^\s*client\s*:\s*$(.*?)^(?=\S)/ms', $fm."\nX", $block)) {
- $clientBlock = $block[1];
- if (preg_match('/^\s*name\s*:\s*["\']?([^"\'\r\n]+)["\']?/mi', $clientBlock, $mm)) $out['client_name'] = trim($mm[1]);
- if (preg_match('/^\s*email\s*:\s*["\']?([^"\'\r\n]+)["\']?/mi', $clientBlock, $mm)) $out['client_email'] = trim($mm[1]);
- if (preg_match('/^\s*address\s*:\s*["\']?([^"\'\r\n]+)["\']?/mi',$clientBlock, $mm)) $out['client_address']= trim($mm[1]);
- }
- if (preg_match('/^\s*project\s*:\s*["\']?([^"\'\r\n]+)["\']?/mi', $fm, $mm)) $out['project'] = trim($mm[1]);
- if (preg_match('/^\s*job\s*:\s*["\']?([^"\'\r\n]+)["\']?/mi', $fm, $mm)) $out['job'] = trim($mm[1]);
- return $out;
- }
- /** Find best-known client + address for a job (checks existing LOA, then contracts) */
- function lookup_job_for_loa(string $job): array {
- $job = preg_replace('/\D+/', '', (string)($_POST['job'] ?? $drg ?? ''));
- $empty = ['client_name'=>'','client_email'=>'','property_address'=>'','source'=>null];
- // Prefer existing LOA
- $loaFile = loa_path($job);
- if (is_file($loaFile)) {
- return extract_loa_fields($loaFile) + ['source'=>'loa'];
- }
- // Scan contracts for a matching job or filename
- foreach (glob(rtrim(CONTRACTS_DIR,'/\\').'/*.md') as $file) {
- $fm = extract_front_matter_fields($file);
- $fname_id = preg_replace('/\.md$/i','',basename($file));
- if (($fm['job'] ?? '') === $job || $fname_id === $job) {
- $addr = $fm['client_address'] ?? '';
- return [
- 'client_name' => $fm['client_name'] ?? '',
- 'client_email' => $fm['client_email'] ?? '',
- 'property_address' => $addr,
- 'source' => 'contract',
- 'clientid' => $fname_id,
- ];
- }
- }
- return $empty;
- }
- /* ------------------------ FUNCTIONS ------------------------ */
- /** Build a starter Markdown file with YAML front matter. */
- if (!function_exists('build_markdown_template')) {
- function build_markdown_template(string $clientid, ?string $name, ?string $email, ?string $design_style, ?string $phone, ?string $site_address): string {
- $today = date('Y-m-d');
- $name = $name ?? '';
- $email = $email ?? '';
- $design_style = $design_style ?? '';
- $phone = $phone ?? '';
- $site_address = $site_address ?? '';
- // Generate secure random credentials
- $adminUser = bin2hex(random_bytes(4)); // 8 hex chars
- $adminPass = bin2hex(random_bytes(8)); // 16 hex chars
- $adminSecret = bin2hex(random_bytes(16)); // 32 hex chars
- $frontMatter = <<<YAML
- ---
- client:
- id: "{$clientid}"
- name: "{$name}"
- email: "{$email}"
- phone: "{$phone}"
- address: "{$site_address}"
- project: "{$design_style}"
- dates:
- prepared: "{$today}"
- dev:
- name: 'Modulos Design'
- email: 'ben@modulos.com.au'
- phone: '0402 984 082'
- address: '34 Coplestone Street, Scottsdale, Tas 7260'
- version: 1
- quote:
- number: "{$clientid}"
- admin:
- user: "{$adminUser}"
- pass: "{$adminPass}"
- secret: "{$adminSecret}"
- ---
- YAML;
- $body = <<<MD
- # Contract of work
- This Contract is made and entered into as of the date above by and between **[dev.name]** and **[client.name]** (hereinafter referred to as "Client").
- ##### 1. Scope of Services
- MD;
- return $frontMatter . $body;
- }
- }
- function yaml_q($v){ return '"'.str_replace(['\\','"'], ['\\\\','\\"'], (string)$v).'"'; }
- /** Upsert a top-level key like: job: "123" */
- function yaml_upsert_top(string $yaml, string $key, string $val): string {
- if ($val === '' || $val === null) return $yaml;
- $re = '/^\s*'.preg_quote($key,'/').'\s*:\s*.*/mi';
- if (preg_match($re, $yaml)) return preg_replace($re, $key.': '.yaml_q($val), $yaml, 1);
- return rtrim($yaml)."\n".$key.': '.yaml_q($val)."\n";
- }
- /** Upsert keys inside a block (client:, property:, dates:) with two-space indentation */
- function yaml_upsert_block(string $yaml, string $block, array $pairs): string {
- $blockRe = '/(^\s*'.preg_quote($block,'/').'\s*:\s*\R(?:[ \t].*\R)*)(?=^\S|\z)/m';
- if (preg_match($blockRe, $yaml, $m, PREG_OFFSET_CAPTURE)) {
- $start = $m[0][1]; $len = strlen($m[0][0]); $blk = $m[0][0];
- foreach ($pairs as $k=>$v) {
- if ($v === '' || $v === null) continue;
- $lineRe = '/^\s*'.preg_quote($k,'/').'\s*:\s*.*/mi';
- $rep = ' '.$k.': '.yaml_q($v);
- $blk = preg_replace($lineRe, $rep, $blk, 1, $count);
- if ($count === 0) $blk = rtrim($blk)."\n".$rep."\n";
- }
- return substr_replace($yaml, $blk, $start, $len);
- } else {
- $out = rtrim($yaml)."\n".$block.":\n";
- foreach ($pairs as $k=>$v) if ($v !== '' && $v !== null) $out .= ' '.$k.': '.yaml_q($v)."\n";
- return $out;
- }
- }
- /** Given a full .md file, update its front matter and return updated text */
- function update_front_matter_text(string $md, array $kv_top, array $kv_blocks): string {
- if (!preg_match('/^---\R(.*?)\R---(\R|$)/s', $md, $m, PREG_OFFSET_CAPTURE)) {
- // add a front matter header if missing
- $yaml = "";
- foreach ($kv_top as $k=>$v) $yaml = yaml_upsert_top($yaml, $k, $v);
- foreach ($kv_blocks as $b=>$p) $yaml = yaml_upsert_block($yaml, $b, $p);
- return "---\n".rtrim($yaml)."\n---\n".ltrim($md);
- }
- $yaml = $m[1][0];
- $start = $m[0][1];
- $len = strlen($m[0][0]);
- foreach ($kv_top as $k=>$v) $yaml = yaml_upsert_top($yaml, $k, $v);
- foreach ($kv_blocks as $b=>$p) $yaml = yaml_upsert_block($yaml, $b, $p);
- $newHeader = "---\n".rtrim($yaml)."\n---\n";
- return substr_replace($md, $newHeader, $start, $len);
- }
- /* -------------------------------------------------------------------------- */
- /* API MODE */
- /* -------------------------------------------------------------------------- */
- $__action = $_GET['action'] ?? $_POST['action'] ?? null;
- if ($__action === 'loa_create') {
- try {
- $job = safe_clientid($_POST['job'] ?? (string)($drg ?? ''));
- if (!$job) { json_response(['ok'=>false,'error'=>'Missing job #'], 400); exit; }
- // Form inputs (fall back to blanks)
- $name = trim($_POST['client_name'] ?? '');
- $email = trim($_POST['client_email'] ?? '');
- $clientPhone = trim($_POST['client_phone'] ?? ($_POST['client_mobile'] ?? ''));
- $clientAddress = trim($_POST['client_address'] ?? ($_POST['postal_address'] ?? ''));
- $addr = trim($_POST['property_address'] ?? ($_POST['site_address'] ?? ''));
- $propPid = trim($_POST['property_pid'] ?? ($_POST['property_id'] ?? ''));
- $propTitleRaw = trim($_POST['property_title'] ?? ($_POST['title_id'] ?? ''));
- // Split things like "140687/4", "140687 - 4", "140687 4"
- $propVol = ''; $propFolio = '';
- if ($propTitleRaw !== '') {
- if (preg_match('/^\s*([A-Za-z0-9]+)\s*[\/\-\s]\s*([A-Za-z0-9]+)\s*$/', $propTitleRaw, $mm)) {
- $propVol = $mm[1];
- $propFolio = $mm[2];
- } else {
- // If it doesn't split, keep the whole thing in vol so you don't lose info
- $propVol = $propTitleRaw;
- }
- }
- $dateStart = trim($_POST['start_date'] ?? '');
- $dateEnd = trim($_POST['end_date'] ?? '');
- $overwrite = (int)($_POST['overwrite'] ?? 0);
- $dst = loa_path($job);
- if (!is_dir(LOA_DIR)) @mkdir(LOA_DIR, 0775, true);
- // What we want in the YAML
- $top = ['job' => $job];
- $blocks = [
- 'client' => [
- 'name' => $name,
- 'email' => $email,
- 'phone' => $clientPhone,
- 'address' => $clientAddress,
- ],
- 'property' => [
- 'address' => $addr,
- 'pid' => $propPid,
- 'title' => $propTitleRaw,
- ],
- 'dates' => [
- 'start' => $dateStart,
- 'end' => $dateEnd,
- ],
- ];
- // Create new or update existing
- if (!file_exists($dst)) {
- // Load template, then inject values into its front matter
- $tplPath = rtrim(LOA_DIR,'/\\').'/default-authorisation.md';
- $tpl = @file_get_contents($tplPath);
- if ($tpl === false || $tpl === '') $tpl = "# Authorisation\n";
- $out = update_front_matter_text($tpl, $top, $blocks);
- if (@file_put_contents($dst, $out, LOCK_EX) === false) {
- json_response(['ok'=>false,'error'=>'Write failed'], 500); exit;
- }
- json_response(['ok'=>true,'job'=>$job,'path'=>$dst,'public_url'=>loa_public_url($job),'created'=>true]);
- } else {
- if ($overwrite) {
- // Overwrite from template
- $tplPath = rtrim(LOA_DIR,'/\\').'/default-authorisation.md';
- $tpl = @file_get_contents($tplPath);
- if ($tpl === false || $tpl === '') $tpl = "# Authorisation\n";
- $out = update_front_matter_text($tpl, $top, $blocks);
- } else {
- // Update front matter only in the existing file
- $existing = @file_get_contents($dst) ?: '';
- $out = update_front_matter_text($existing, $top, $blocks);
- }
- if (@file_put_contents($dst, $out, LOCK_EX) === false) {
- json_response(['ok'=>false,'error'=>'Write failed'], 500); exit;
- }
- json_response([
- 'ok'=>true,'job'=>$job,'path'=>$dst,'public_url'=>loa_public_url($job),
- 'created'=>false,'updated_frontmatter'=>!$overwrite
- ]);
- }
- } catch (Throwable $e) {
- json_response(['ok'=>false,'error'=>$e->getMessage()], 500);
- }
- exit;
- }
- // ===== end LOA helpers and API =====
- // Create the LOA markdown from default-authorisation.md
- if ($__action === 'loa_create') {
- try {
- $job = safe_clientid($_POST['job'] ?? (string)($drg ?? ''));
- if (!$job) { json_response(['ok'=>false,'error'=>'Missing job #'], 400); exit; }
- // Prefer explicit POST values; otherwise use current form values already on the page
- $name = trim($_POST['client_name'] ?? (trim(($firstname ?? '').' '.($lastname ?? '')) ?: ($joint_name ?? '')));
- $email = trim($_POST['client_email'] ?? ($client_email ?? ''));
- $addr = trim($_POST['property_address'] ?? ($site_address ?? ''));
- $overwrite = (int)($_POST['overwrite'] ?? 0);
- $dst = loa_path($job);
- if (!is_dir(LOA_DIR)) @mkdir(LOA_DIR, 0775, true);
- if (file_exists($dst) && !$overwrite) {
- json_response(['ok'=>false,'error'=>'File already exists','path'=>$dst], 409); exit;
- }
- // Load template (fallback to minimal front-matter if missing)
- $tplPath = rtrim(LOA_DIR,'/\\').'/default-authorisation.md';
- $tpl = @file_get_contents($tplPath);
- if ($tpl === false || $tpl === '') {
- $q = fn($v) => '"'.str_replace(['\\','"'], ['\\\\','\\"'], (string)$v).'"';
- $tpl = "---\njob: ".$q($job)."\nclient:\n name: ".$q($name)."\n email: ".$q($email)."\nproperty:\n address: ".$q($addr)."\n---\n# Authorisation\n";
- } else {
- // Light YAML substitutions
- $tpl = preg_replace_callback('/^---\R(.*?)\R---/s', function($m) use($job,$name,$email,$addr){
- $yaml = $m[1];
- $q = fn($v) => '"'.str_replace(['\\','"'], ['\\\\','\\"'], (string)$v).'"';
- // job
- $yaml = preg_replace('/^\s*job\s*:\s*.*/mi', 'job: '.$q($job), $yaml, 1, $jobCount);
- if ($jobCount === 0) $yaml = "job: ".$q($job)."\n".$yaml;
- // ensure blocks exist
- if (!preg_match('/^\s*client\s*:/mi', $yaml)) $yaml = "client:\n name:\n email:\n".$yaml;
- if (!preg_match('/^\s*property\s*:/mi', $yaml)) $yaml = "property:\n address:\n".$yaml;
- // client.name/email
- $yaml = preg_replace_callback('/(^\s*client\s*:\s*\R(?:.*\R)*?)(?=^\S|\z)/ms', function($b) use($q,$name,$email){
- $blk = $b[0];
- $blk = preg_replace('/^\s*name\s*:\s*.*/mi', ' name: '.$q($name), $blk, 1, $c1);
- if ($c1===0) $blk = rtrim($blk)."\n name: ".$q($name)."\n";
- $blk = preg_replace('/^\s*email\s*:\s*.*/mi', ' email: '.$q($email), $blk, 1, $c2);
- if ($c2===0) $blk = rtrim($blk)."\n email: ".$q($email)."\n";
- return $blk;
- }, $yaml, 1);
- // property.address
- $yaml = preg_replace_callback('/(^\s*property\s*:\s*\R(?:.*\R)*?)(?=^\S|\z)/ms', function($b) use($q,$addr){
- $blk = $b[0];
- $blk = preg_replace('/^\s*address\s*:\s*.*/mi', ' address: '.$q($addr), $blk, 1, $p1);
- if ($p1===0) $blk = rtrim($blk)."\n address: ".$q($addr)."\n";
- return $blk;
- }, $yaml, 1);
- return "---\n".$yaml."\n---";
- }, $tpl, 1) ?? $tpl;
- }
- if (@file_put_contents($dst, $tpl, LOCK_EX) === false) {
- json_response(['ok'=>false,'error'=>'Write failed'], 500); exit;
- }
- json_response(['ok'=>true,'job'=>$job,'path'=>$dst,'public_url'=>loa_public_url($job)]);
- } catch (Throwable $e) {
- json_response(['ok'=>false,'error'=>$e->getMessage()], 500);
- }
- exit;
- }
- // Optional: auto-fill data for a job (used by other screens / future)
- if ($__action === 'loa_lookup') {
- $job = safe_clientid($_GET['job'] ?? $_POST['job'] ?? '');
- $data = $job ? lookup_job_for_loa($job) : ['client_name'=>'','client_email'=>'','property_address'=>'','source'=>null];
- $found = (bool)($data['client_name'] || $data['client_email'] || $data['property_address']);
- json_response(['ok'=>true,'found'=>$found,'data'=>$data]);
- exit;
- }
- /* -------------------------------------------------------------------------- */
- /* HELPER FUNCTIONS */
- /* -------------------------------------------------------------------------- */
- use Google\Client;
- use Google\Service\Drive;
- function createFolder(string $access_token, string $folder_name, string $parent_folder_id = ''): ?string
- {
- try {
- $client = new Google\Client();
- $client->setAccessToken($access_token);
- $driveService = new Drive($client);
- $metadata = new Drive\DriveFile([
- 'name' => $folder_name,
- 'mimeType' => 'application/vnd.google-apps.folder',
- ]);
- if ($parent_folder_id) {
- $metadata->setParents([$parent_folder_id]);
- }
- $file = $driveService->files->create($metadata, ['fields' => 'id,name,webViewLink']);
- return $file->id;
- } catch (Exception $e) {
- error_log('createFolder error: ' . $e->getMessage());
- return null;
- }
- }
- function createDealHubSpot($newDealData)
- {
- global $accessToken;
- $endpoint = 'https://api.hubapi.com/crm/v3/objects/deals';
- $curl = curl_init();
- curl_setopt_array($curl, [
- CURLOPT_URL => $endpoint,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_POST => true,
- CURLOPT_POSTFIELDS => json_encode($newDealData),
- CURLOPT_HTTPHEADER => [
- 'Authorization: Bearer ' . $accessToken, // Use OAuth 2.0 token OR 'Authorization: Bearer ' . $apiKey for API key
- 'Content-Type: application/json'
- ]
- ]);
- $response = curl_exec($curl);
- curl_close($curl);
- return $response;
- }
- function updateDealHubSpot($dealId, $data)
- {
- global $accessToken;
- $endpoint = 'https://api.hubapi.com/crm/v3/objects/deals/' . $dealId;
- $curl = curl_init();
- curl_setopt_array($curl, [
- CURLOPT_URL => $endpoint,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_CUSTOMREQUEST => 'PATCH',
- CURLOPT_POSTFIELDS => json_encode($data),
- CURLOPT_HTTPHEADER => [
- 'Authorization: Bearer ' . $accessToken, // Use OAuth 2.0 token OR 'Authorization: Bearer ' . $apiKey for API key
- 'Content-Type: application/json'
- ]
- ]);
- $response = curl_exec($curl);
- curl_close($curl);
- return $response;
- }
- function addContactToHubSpot($newContactData) {
- global $accessToken;
- $endpoint = 'https://api.hubapi.com/crm/v3/objects/contacts';
- $curl = curl_init();
- curl_setopt_array($curl, [
- CURLOPT_URL => $endpoint,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_POST => true,
- CURLOPT_POSTFIELDS => json_encode($newContactData),
- CURLOPT_HTTPHEADER => [
- 'Authorization: Bearer ' . $accessToken,
- 'Content-Type: application/json'
- ]
- ]);
- $response = curl_exec($curl);
- curl_close($curl);
- return $response;
- }
- function searchContact($query) {
- global $accessToken;
- $endpoint = 'https://api.hubapi.com/crm/v3/objects/contacts/search';
- $queryJson = json_encode($query);
- $ch = curl_init($endpoint);
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $queryJson);
- curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer ' . $accessToken, 'Content-Type: application/json'));
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- $response = curl_exec($ch);
- if (curl_errno($ch)) {
- echo 'Error making cURL request: ' . curl_error($ch);
- }
- curl_close($ch);
- return $response;
- }
- function updateContact($contactId, $data) {
- global $accessToken;
- $endpoint = 'https://api.hubapi.com/crm/v3/objects/contacts/' . $contactId;
- $curl = curl_init();
- curl_setopt_array($curl, [
- CURLOPT_URL => $endpoint,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_CUSTOMREQUEST => 'PUT',
- CURLOPT_POSTFIELDS => json_encode($data),
- CURLOPT_HTTPHEADER => [
- 'Authorization: Bearer ' . $accessToken,
- 'Content-Type: application/json'
- ]
- ]);
- $response = curl_exec($curl);
- curl_close($curl);
- return $response;
- }
- function format_E164($num)
- {
- $phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
- try {
- $phoneProto = $phoneUtil->parse($num, "AU");
- return [
- "phone_number" => $phoneUtil->format($phoneProto, \libphonenumber\PhoneNumberFormat::INTERNATIONAL),
- "phone_type" => $phoneUtil->getNumberType($phoneProto)
- ];
- } catch (\libphonenumber\NumberParseException $e) {
- return null;
- }
- }
- if (!empty($drg) and !empty($_POST['add_client_to_crm']) and empty($contactId)) {
- try {
- $query = [
- "filterGroups" => [
- [
- "filters" => [
- [
- "value" => $_POST['firstname'] . "*",
- "propertyName" => 'firstname',
- "operator" => "EQ"
- ],
- [
- "value" => $_POST['lastname'] . "*",
- "propertyName" => "lastname",
- "operator" => "EQ"
- ],
- [
- "value" => $_POST['client_mobile'] . "*",
- "propertyName" => "phone",
- "operator" => "EQ"
- ]
- ]
- ]
- ],
- ];
- $response = json_decode(searchContact($query), true);
- if ($response['total'] > 0) {
- echo "<h4 style=\"text-align: center;color: red;padding: 10px;\">Customer: {$_POST['firstname']} {$_POST['lastname']} already exists in crm, with id: {$response['results'][0]['id']}</h4>";
- } else {
- $newContactData = [
- 'properties' => [
- 'firstname' => $_POST['firstname'],
- 'lastname' => $_POST['lastname'],
- 'description' => 'Added via Online Client Brief Form # ' . $drg,
- 'company' => $_POST['joint_name'],
- 'email' => $_POST['client_email'],
- 'address' => $_POST['postal_address'],
- 'city' => $_POST['postal_address_town'],
- 'zip' => $_POST['postal_address_postcode'],
- 'country' => 'AU',
- 'state' => $_POST['postal_address_state'],
- 'hubspot_owner_id' => '585959844',
- ]
- ];
- if($phone) {
- if($phone["phone_type"] == \libphonenumber\PhoneNumberType::MOBILE)
- $newContactData["properties"]["mobilephone"] = $phone["phone_number"];
- else
- $newContactData["properties"]["phone"] = $phone["phone_number"];
- }
- $response = addContactToHubSpot($newContactData);
- file_put_contents("crmadd.log", $response);
- $createdContact = json_decode($response, true);
- if ($createdContact['id'] > 0) {
- $crm_id = intval($createdContact['id']);
- $result = mysqli_query($con, "UPDATE details SET crm_id = '{$crm_id}' WHERE drg = '{$drg}'");
- if (!$result) {
- printf("Error: %s\n", mysqli_error($con));
- exit();
- } else {
- echo "<div class='container alert alert-success alert-dismissible d-print-none' role='alert'><a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a><h4 style=\"text-align: center;\">Customer: {$_POST['firstname']} {$_POST['lastname']} added to crm, with id: {$crm_id}</h4></div>";
- $isHideDismissableAlert = 1;
- }
- }
- }
- } catch (\Exception $err) {
- echo '<pre>' . $err->getMessage() . '</pre>';
- die();
- }
- } elseif (!empty($drg) and !empty($_POST['edit_client_in_crm']) and !empty($contactId)) {
- try {
- $data = [
- 'properties' => [
- 'firstname' => $_POST['firstname'],
- 'lastname' => $_POST['lastname'],
- 'company' => $_POST['joint_name'],
- 'email' => $_POST['client_email'],
- 'address' => $_POST['postal_address'],
- 'city' => $_POST['postal_address_town'],
- 'zip' => $_POST['postal_address_postcode'],
- 'country' => 'AU',
- 'state' => $_POST['postal_address_state'],
- 'hubspot_owner_id' => '585959844',
- ]
- ];
- if($phone) {
- if($phone["phone_type"] == \libphonenumber\PhoneNumberType::MOBILE)
- $data["properties"]["mobilephone"] = $phone["phone_number"];
- else
- $data["properties"]["phone"] = $phone["phone_number"];
- }
- $query = [
- "filterGroups" => [
- [
- "filters" => [
- [
- "value" => $_POST['firstname'] . "*",
- "propertyName" => 'firstname',
- "operator" => "EQ"
- ],
- [
- "value" => $_POST['lastname'] . "*",
- "propertyName" => "lastname",
- "operator" => "EQ"
- ],
- [
- "value" => $_POST['client_mobile'] . "*",
- "propertyName" => "phone",
- "operator" => "EQ"
- ]
- ]
- ]
- ],
- ];
- $response = json_decode(searchContact($query), true);
- if ($response['total'] > 0) {
- $response = updateContact($contactId, $data);
- $result = mysqli_query($con, "UPDATE details SET crm_id = '{$response['id']}' WHERE drg = '{$drg}'");
- file_put_contents("crmupdate.log", $response);
- $response = json_decode($response, true);
- if ($response['id'] > 0) {
- echo "<div class='container alert alert-success alert-dismissible d-print-none' role='alert'><a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a><h4 style=\"text-align: center;\">Customer: {$_POST['firstname']} {$_POST['lastname']} updated in crm</h4></div>";
- $isHideDismissableAlert = 1;
- }
- } else {
- $response = addContactToHubSpot($newContactData);
- file_put_contents("crmadd.log", $response);
- $createdContact = json_decode($response, true);
- if ($createdContact['id'] > 0) {
- $crm_id = intval($createdContact['id']);
- echo "<div class='container alert alert-success alert-dismissible d-print-none' role='alert'><a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a><h4 style=\"text-align: center;\">Customer: {$_POST['firstname']} {$_POST['lastname']} added to crm, with id: {$crm_id}</h4></div>";
- $isHideDismissableAlert = 1;
- }
- }
- } catch (\Exception $err) {
- echo '<pre>Crm Id: ' . $contactId . ', response: ' . $err->getMessage() . '</pre>';
- die();
- }
- }
- // Create Deal from Enquiry Form
- if (!empty($quid) and !empty($_POST['add_deal_to_hubspot']) and empty($dealId)) {
- try {
- $newDealData = [
- 'associations' => [
- [
- 'types' => [
- [
- 'associationCategory' => 'HUBSPOT_DEFINED',
- 'associationTypeId' => 3,
- ]
- ],
- 'to' => [
- 'id' => $_POST['crm_id']
- ],
- ]
- ],
- 'properties' => [
- 'dealname' => $_POST['quid'] . ' - ' . $_POST['client'],
- 'dealtype' => 'newbusiness', // New or Existing Business - do we do a sql lookup and see if there is some won jobs for this customer ??
- 'hubspot_owner_id' => $_POST['hubspot_owner_id'],
- 'createdate' => $_POST['enquiry_date'],
- //assign deal to contact with hubspot contact id
- //'associatedCompanyIds' => $_POST['company_id'],
- 'pipeline' => '64401721',
- 'dealstage' => '126963334',
- 'width' => str_replace('m', '', $_POST['width']),
- 'length' => str_replace('m', '', $_POST['length']),
- 'height' => str_replace('m', '', $_POST['height']),
- 'quote_type' => $_POST['quote_type'],
- 'type' => $_POST['product'],
- 'roof_type' => $_POST['roof_style'],
- 'sides' => $_POST['side_walls'],
- 'ends' => $_POST['end_walls'],
- 'internal' => $_POST['internal_walls'],
- 'qty_bays' => $_POST['bay_qty'],
- //'bay_width' => $_POST['bay_width'],
- //'uneven_bays' => $_POST['bay_uneven'],
- 'quote' => $_POST['quid'],
- ]
- ];
- $response = createDealHubSpot($newDealData);
- file_put_contents("crmdeal.log", $response);
- $createdDeal = json_decode($response, true);
- if ($createdDeal['id'] > 0) {
- $dealId = intval($createdDeal['id']);
- $result = mysqli_query($con, "UPDATE details SET dealId = '{$dealId}' WHERE drg = '{$drg}'");
- echo "<div class='container alert alert-success alert-dismissible d-print-none' role='alert'><a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a><h4 style=\"text-align: center;\">Deal: {$quid} - {$client} added to hubspot</h4></div>";
- $isHideDismissableAlert = 1;
- }
- } catch (\Exception $err) {
- echo '<pre>' . $err->getMessage() . '</pre>';
- die();
- }
- } elseif (!empty($drg) and !empty($_POST['update_deal_in_hubspot']) and !empty($dealId)) {
- try {
- $updateDealData = [
- 'properties' => [
- 'dealname' => $_POST['drg'] . ' - ' . $_POST['client'],
- 'hubspot_owner_id' => $_POST['hubspot_owner_id'],
- 'createdate' => $_POST['enquiry_date'],
- //assign deal to contact with hubspot contact id
- //'associatedCompanyIds' => $_POST['company_id'],
- 'quote_type' => $_POST['quote_type'],
- 'type' => $_POST['product'],
- ],
- 'associations' => [
- 'types' => [
- 'association_category' => 'HUBSPOT_DEFINED',
- 'association_type_id' => 3
- ],
- 'to' => [
- 'id' => $_POST['crm_id']
- ]
- ]
- ];
- $response = updateDealHubSpot($dealId, $updateDealData);
- file_put_contents("crmdeal.log", $response);
- $updatedDeal = json_decode($response, true);
- if ($updatedDeal['id'] > 0) {
- $dealId = intval($updatedDeal['id']);
- echo "<div class='container alert alert-success alert-dismissible d-print-none' role='alert'><a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a><h4 style=\"text-align: center;\">Deal: {$quid} - {$client} added to hubspot</h4></div>";
- $isHideDismissableAlert = 1;
- }
- } catch (\Exception $err) {
- echo '<pre>' . $err->getMessage() . '</pre>';
- die();
- }
- }
- if (!empty($_GET['drg'])) {
- $contact_button = '';
- if ($crm_id > 5) {
- $contact_button = '<button type="button" class="btn btn-sm bg-brown-five brown-three" data-bs-toggle="modal" data-bs-target="#crmUpdateModal"><i class="fab fa-hubspot"></i> Update Hubspot</button>';
- } else {
- $contact_button = '<button type="submit" class="btn btn-sm bg-brown-five brown-three" name="add_client_to_crm" value="1" form="client-brief" ><i class="bi bi-briefcase-fill"></i> Save Customer</button>';
- }
- }
- ?>
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title><?php echo $drg; ?> - Client Brief</title>
- <link rel="shortcut icon" href="images/blueprint.ico" type="image/x-icon">
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
- <!-- jQuery first, then Popper.js, then Bootstrap JS -->
- <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
- <link href="css/blueprint.css" rel="stylesheet">
- <link href="css/print.css" rel="stylesheet" media="print">
- <script type="text/javascript" src="https://use.fontawesome.com/1e2844bb90.js"></script>
- <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-throttle-debounce/1.1/jquery.ba-throttle-debounce.min.js" integrity="sha512-JZSo0h5TONFYmyLMqp8k4oPhuo6yNk9mHM+FY50aBjpypfofqtEWsAgRDQm94ImLCzSaHeqNvYuD9382CEn2zw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
- </head>
- <body>
- <nav class="navbar bg-brown-dark brown-light border-bottom border-body d-print-none" data-bs-theme="dark">
- <div class="container-fluid">
- <a class="navbar-brand brown-light" href="#">
- <img src="images/blueprint-logo-light.png" alt="Logo" width="30" height="24" class="d-inline-block align-text-top">
- Modulos Design
- </a>
- </div>
- </nav>
- <div class="container">
- <div class="row pt-2">
- <div class="col-sm-4 col-md-4 pt-3">
- <img class="img-fluid logo pt-2" src="images/blueprint-full-logo-medium.png" alt="Modulos Design">
- </div>
- <div class="col-sm-4 col-md-4 m-auto text-center">
- <h3 class="architect text-center">Job: <?php echo $drg; ?></h3>
- </div>
- <div class="col-sm-4 col-md-4 text-end pt-3">
- <h2 class="fw-bold text-end mb-1">Client Brief Form</h2>
- <h4 class="text-end mb-1">
- <span class="fw-bold brown-two"><?php echo $enquiry_date; ?></span>
- </h4>
- </div>
- </div>
- <hr>
- <form id="client-brief" data-remote="true" method="post" accept-charset="UTF-8">
- <input type="hidden" name="csrf" id="csrf" value="<?php echo $csrf; ?>">
- <div class="row">
- <div class="col-12 col-md-6">
- <div class="row ">
- <div class="col ">
- <h4 class="fw-bold">Client Details</h4>
- </div>
- </div>
- <div class="mb-1">
- <div class="row ">
- <div class="col-12 col-md-6">
- <label for="firstname" class="form-label form-label-sm p-0 m-0">Clients Name</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-four" name="firstname" id="firstname" tabindex="1" value="<?php echo htmlspecialchars($firstname ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="First Name" autocomplete="given-name">
- </div>
- <div class="col-12 col-md-6">
- <label for="lastname" class="form-label form-label-sm p-0 m-0"></label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-four" name="lastname" id="lastname" tabindex="2" value="<?php echo htmlspecialchars($lastname ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Last Name" autocomplete="family-name">
- </div>
- </div>
- </div>
- <div class="mb-1">
- <label for="joint_name" class="form-label form-label-sm p-0 m-0">T/As - Joint Names</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="joint_name" id="joint_name" value="<?php echo htmlspecialchars($joint_name ?? '', ENT_QUOTES, 'UTF-8'); ?>" tabindex="3">
- </div>
- <div class="mb-1">
- <label for="postal_address" class="form-label form-label-sm p-0 m-0">Clients Postal Address</label>
- <input type="text" class="form-control form-control-sm fw-bold savable-text-field architect brown-three map-autocomplete" id="postal_address" name="postal_address" value="<?php echo htmlspecialchars($postal_address ?? '', ENT_QUOTES, 'UTF-8'); ?>" onFocus="geolocate(this)" tabindex="4" autocomplete="on">
- </div>
- <div class="mb-1">
- <div class="row ">
- <div class="col-md-6">
- <label for="phoneNumber" class="form-label form-label-sm p-0 m-0">Clients Mobile</label>
- <input type="phone" class="form-control form-control-sm savable-text-field architect brown-three" minlength="12" id="phoneNumber" name="client_mobile" value="<?php echo htmlspecialchars($client_mobile ?? '', ENT_QUOTES, 'UTF-8'); ?>" required onkeyup="check(); return false;" tabindex="5" autocomplete="tel">
- </div>
- <div class="col-12 col-md-3 d-print-none">
- <label for="crm_id" class="form-label form-label-sm p-0 m-0">CID</label>
- <input type="text" class="form-control form-control-sm savable-text-field brown-three" id="crm_id" name="crm_id" value="<?php echo $crm_id; ?>" >
- </div>
- <div class="col-12 col-md-3 d-print-none">
- <label for="dealId" class="form-label form-label-sm p-0 m-0">DID</label>
- <input type="text" class="form-control form-control-sm savable-text-field brown-three" id="dealId" name="dealId" value="<?php echo $dealId; ?>" >
- </div>
- </div>
- </div>
- <div class="mb-1">
- <label for="client_email" class="form-label form-label-sm p-0 m-0">Email address</label>
- <input type="email" class="form-control form-control-sm savable-text-field architect brown-three" name="client_email" id="client_email" value="<?php echo htmlspecialchars($client_email ?? '', ENT_QUOTES, 'UTF-8'); ?>" tabindex="6" autocomplete="email">
- </div>
- <hr>
- <div class="row ">
- <div class="col ">
- <h4 class="fw-bold">Proposed Site Details</h4>
- </div>
- </div>
- <div class="mb-1">
- <label for="site_address" class="form-label form-label-sm p-0 m-0">Site Address</label>
- <input type="text" class="form-control form-control-sm fw-bold savable-text-field architect brown-four map-autocomplete" id="site_address" name="site_address" value="<?php echo htmlspecialchars($site_address ?? '', ENT_QUOTES, 'UTF-8'); ?>" onFocus="geolocate(this)" tabindex="7">
- <input type="hidden" class="savable-text-field" id="site_lat" name="site_lat" value="<?php echo htmlspecialchars($site_lat ?? '', ENT_QUOTES, 'UTF-8'); ?>">
- <input type="hidden" class="savable-text-field" id="site_lng" name="site_lng" value="<?php echo htmlspecialchars($site_lng ?? '', ENT_QUOTES, 'UTF-8'); ?>">
- </div>
- <div class="row g-3">
- <div class="col-12 col-md-6">
- <label for="property_id" class="form-label form-label-sm p-0 m-0">Property ID:</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="property_id" id="property_id" value="<?php echo htmlspecialchars($property_id ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Pid">
- </div>
- <div class="col-12 col-md-6">
- <label for="title_id" class="form-label form-label-sm p-0 m-0">Title Reference:</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="title_id" id="title_id" value="<?php echo htmlspecialchars($title_id ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Title/Vol">
- </div>
- </div>
- <div class="mb-1">
- <label for="registered_owner" class="form-label form-label-sm p-0 m-0">Registered Title Owners:</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="registered_owner" id="registered_owner" value="<?php echo htmlspecialchars($registered_owner ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="">
- </div>
- <div class="row g-3">
- <div class="col-12 col-md-5">
- <label for="council" class="form-label form-label-sm p-0 m-0">Council:</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="council" id="council" value="<?php echo htmlspecialchars($council ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Local Council">
- </div>
- <div class="col-12 col-md-3">
- <label for="elevation" class="form-label form-label-sm p-0 m-0">Elev (AHD):</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="elevation" id="elevation" value="<?php echo htmlspecialchars($elevation ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Elevation (m)">
- </div>
- <div class="col-12 col-md-4">
- <label for="elevation" class="form-label form-label-sm p-0 m-0">Land Area (m2):</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="total_area" id="total_area" value="<?php echo htmlspecialchars($total_area ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="">
- </div>
- </div>
- <div class="row g-3">
- <div class="col-12 col-md-4">
- <label for="planning_zones" class="form-label form-label-sm p-0 m-0">Planning Zones:</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="planning_zones" id="planning_zones" value="<?php echo htmlspecialchars($planning_zones ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Planning Zones">
- </div>
- <div class="col-12 col-md-8">
- <label for="planning_scheme" class="form-label form-label-sm p-0 m-0">Planning Scheme:</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="planning_scheme" id="planning_scheme" value="<?php echo htmlspecialchars($planning_scheme ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Planning Scheme">
- </div>
- </div>
- <div class="row g-3">
- <div class="col-12">
- <label for="planning_codes" class="form-label form-label-sm p-0 m-0">Planning Codes:</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="planning_codes" id="planning_codes" value="<?php echo htmlspecialchars($planning_codes ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Planning Codes">
- </div>
- </div>
- <hr>
- <div class="row ">
- <div class="col ">
- <h4 class="fw-bold">Design Brief</h4>
- </div>
- </div>
- <div class="mb-1">
- <label for="design_style" class="form-label form-label-sm p-0 m-0">Type of Design</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="design_style" id="design_style" value="<?php echo htmlspecialchars($design_style ?? '', ENT_QUOTES, 'UTF-8'); ?>" >
- </div>
- <div class="row g-3">
- <div class="col-12 col-md-6">
- <label for="build_type" class="form-label form-label-sm p-0 m-0">Build Type:</label>
- <select type="text" name="build_type" id="build_type" class="form-select form-select-sm savable-dropdown-field architect brown-three" aria-required="true" aria-invalid="false">
- <option><?php echo $build_type; ?></option>
- <option >New Residential</option>
- <option >Residential Extension</option>
- <option >New Commercial</option>
- <option >Commercial Extension</option>
- <option >Shed or Ancillary Dwelling</option>
- <option >Pool</option>
- <option >Interior Design</option>
- <option >Other</option>
- </select>
- </div>
- <div class="col-12 col-md-6">
- <label for="scope" class="form-label form-label-sm p-0 m-0">Our Scope</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" id="scope" name="scope" value="<?php echo htmlspecialchars($scope ?? '', ENT_QUOTES, 'UTF-8'); ?>" >
- </div>
- </div>
- </div>
- <div class="col-12 col-md-6">
- <div class="row d-print-none">
- <div class="col-12 col-md my-1 d-grid">
- <?php echo $contact_button; ?>
- </div>
- <div class="col-12 col-md my-1 d-grid">
- <button type="button" class="btn btn-sm bg-brown-dark brown-three" data-bs-toggle="modal" data-bs-target="#emailTemplateModal"><i class="bi bi-clipboard"></i> Planning request text</button>
- </div>
- <div class="col-12 col-md my-1 d-grid">
- <button type="button" class="btn btn-sm bg-brown-three brown-five" id="createFolder"><i class="bi bi-folder-fill"></i> Create Job</button>
- </div>
- <div class="col-12 col-md my-1 d-grid">
- <button type="button" class="btn btn-sm bg-brown-three brown-five" onclick="fetchAndExtractData()"><i class="bi bi-folder-fill"></i> Planbuild</button>
- <!-- <button type="button" class="btn btn-sm bg-brown-light brown-five bd-brown-five"><i class="bi bi-award-fill"></i> Request Title</button> -->
- </div>
- </div>
- <div class="row d-print-none">
- <div class="col">
- <hr class="mvt-3">
- </div>
- </div>
- <div class="row ">
- <div class="col-12">
- <h5 class="fw-bold">Brief Checklist</h5>
- <p class="extra-light small">Have the following documents being provided?</p>
- </div>
- </div>
- <div class="row ">
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="copy_title" id="copy_title"
- value="1"
- <?php if ('1' == $copy_title) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="copy_title">Copy of Title</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="original_plans" id="original_plans"
- value="1"
- <?php if ('1' == $original_plans) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="original_plans">Original Plans</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="concepts_styles" id="concepts_styles"
- value="1"
- <?php if ('1' == $concepts_styles) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="concepts_styles">Concepts & Styles</label>
- </div>
- </div>
- </div>
- <div class="row ">
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="loa_signed" id="loa_signed"
- value="1"
- <?php if ('1' == $loa_signed) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="loa_signed">LOA signed</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="da_application" id="da_application"
- value="1"
- <?php if ('1' == $da_application) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="da_application">DA Application</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="ba_application" id="ba_application"
- value="1"
- <?php if ('1' == $ba_application) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="ba_application">BA Application</label>
- </div>
- </div>
- </div>
- <hr>
- <div class="row ">
- <div class="col ">
- <h5 class="fw-bold">Design Outputs</h5>
- <p class="extra-light small"></p>
- </div>
- </div>
- <div class="row ">
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="concepts_3d" id="concepts_3d"
- value="1"
- <?php if ('1' == $concepts_3d) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="concepts_3d">3D Concepts</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="draft_floorPlan" id="draft_floorPlan"
- value="1"
- <?php if ('1' == $draft_floorPlan) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="draft_floorPlan">Draft Floor Plan</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="fire_report" id="fire_report"
- value="1"
- <?php if ('1' == $fire_report) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="fire_report">Fire Report</label>
- </div>
- </div>
- </div>
- <div class="row ">
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="energy_report" id="energy_report"
- value="1"
- <?php if ('1' == $energy_report) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="energy_report">Energy Report</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="tender_set" id="tender_set"
- value="1"
- <?php if ('1' == $tender_set) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="tender_set">Tender Doc Set</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="quantity_survey" id="quantity_survey"
- value="1"
- <?php if ('1' == $quantity_survey) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="quantity_survey">Quantity Survey</label>
- </div>
- </div>
- </div>
- <hr>
- <div class="row ">
- <div class="col ">
- <h5 class="fw-bold">Presentations</h5>
- <p class="extra-light small"></p>
- </div>
- </div>
- <div class="row ">
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="vr_concepts" id="vr_concepts"
- value="1"
- <?php if ('1' == $vr_concepts) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="vr_concepts">VR Concepts</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="render_set" id="render_set"
- value="1"
- <?php if ('1' == $render_set) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="render_set">Full Rended Set</label>
- </div>
- </div>
- <div class="col-6 col-md-4">
- <div class="form-check form-check-inline savable-checkbox">
- <input class="form-check-input savable-checkbox-field"
- type="checkbox"
- name="model_3d" id="model_3d"
- value="1"
- <?php if ('1' == $model_3d) { echo 'checked'; } ?>
- >
- <label class="form-check-label" for="model_3d">3D Model</label>
- </div>
- </div>
- </div>
- <hr>
- <div class="row ">
- <div class="col ">
- <h5 class="fw-bold">Create Documents</h5>
- <p class="extra-light small"></p>
- </div>
- </div>
- <div class="row d-print-none mb-2">
- <div class="col d-inline-flex gap-1">
- <button type="button" class="btn btn-sm bg-brown-three brown-five" id="createLOA"><i class="bi bi-file-earmark-text-fill"></i> Create LOA</button>
- </div>
- </div>
- <div class="row d-print-none">
- <div class="col d-inline-flex gap-1">
- <button type="button" class="btn btn-sm bg-brown-five brown-three" id="createContract"><i class="bi bi-file-earmark-text-fill"></i> Create Contract</button>
- <div class="form-check d-inline-flex align-items-center ms-2">
- <input class="form-check-input" type="checkbox" id="updateFrontMatter">
- <label class="form-check-label ms-1" for="updateFrontMatter">
- Update contact details if file exists
- </label>
- </div>
- </div>
- </div>
- <hr>
- <div class="row ">
- <div class="col ">
- <h4 class="fw-bold">Investment Details</h4>
- </div>
- </div>
- <div class="row g-3">
- <div class="col-12 col-md-6">
- <label for="budget_low" class="form-label form-label-sm p-0 m-0">Budget Range (Lower)</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="budget_low" id="budget_low" value="<?php echo htmlspecialchars($budget_low ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="$300,000">
- </div>
- <div class="col-12 col-md-6">
- <label for="budget_high" class="form-label form-label-sm p-0 m-0">Budget Range (Upper)</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="budget_high" id="budget_high" value="<?php echo htmlspecialchars($budget_high ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="$2,000,000">
- </div>
- </div>
- <div class="mb-1">
- <label for="finance_status" class="form-label form-label-sm p-0 m-0">Finance</label>
- <input type="text" class="form-control form-control-sm savable-text-field architect brown-three" name="finance_status" id="finance_status" value="<?php echo htmlspecialchars($finance_status ?? '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Have you had a loan (pre)approved ?">
- </div>
- <hr>
- <div class="row ">
- <div class="col ">
- <h4 class="fw-bold">Services Used</h4>
- </div>
- </div>
- <div class="row g-3">
- <div class="col-12">
- <select class="form-control form-control-sm" id="building_surveyors_select" name="building_surveyors">
- <label for="building_surveyors">Building Surveyor:</label>
- <option selected="" disabled="">Select Building Surveyor</option>
- <option class='' data-id='Building Surveying Services Pty Ltd|Wayne Wilson|0487 911 123|building@buildingsurveyingservices.com.au|7 Marlborough Street, Longford, Tas, 7301' id='' value='building@buildingsurveyingservices.com.au' >Building Surveying Services - Wayne Wilson</option>
- <option class='' data-id='Plumb Building Surveying|Matthew Dewse|0476 830 336|hello@plumbbuildingsurveying.au|PO Box 120, Kings Meadows, Tas, 7249' id='' value='hello@plumbbuildingsurveying.au' >Plumb Building Surveying - Matthew Dewse</option>
- <option class='' data-id='Local Group|Barry Magnus|0455 681 912|bmagnus@localgroup.com.au|81 Elizabeth Street, Launceston , Tas, 7250' id='' value='bmagnus@localgroup.com.au' >Local Group - Barry Magnus</option>
- <option class='' data-id='Worthington Building Surveying|Peter Worthington|0475 854 904|peter@worthbuilding.com.au|, Frankford, Tas, 7275' id='' value='peter@worthbuilding.com.au' >Worthington Building Surveying - Peter Worthington</option>
- </select>
- <input type="hidden" id="building_surveyors_meta" name="building_surveyors_meta" value="<?php echo $building_surveyors_meta ?? ''; ?>">
- </div>
- <div class="col-12 col-md-6">
- </div>
- </div>
- <div class="row mb-1">
- <div class="col-12 col-md-6">
- <div class="row mb-1">
- <div class="col-12 col-md-6">
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <hr>
- <div class="row">
- <div class="col">
- <div class="mb-1">
- <label for="details" class="form-label form-label-sm p-0 m-0">Details</label>
- <textarea class="form-control form-control-sm savable-text-field small architect" name="details" id="details" rows="6"><?php echo htmlspecialchars($details ?? '', ENT_QUOTES, 'UTF-8'); ?></textarea>
- </div>
- </div>
- </div>
- <hr>
- <div class="row d-print-none">
- <div class="col-6">
- <!--Add buttons to initiate auth sequence and sign out-->
- <button id="authorize_button" type="button" class="btn btn-sm bg-brown-three brown-five">Authorize</button>
- <button id="signout_button" type="button" class="btn btn-sm bg-brown-three brown-five">Sign Out</button>
- </div>
- </div>
- <hr>
- <footer class="footer">
- <p class="text-center">© 2023 - Modulos Design</p>
- </footer>
- </form>
- </div>
- <!-- Planbuild/LIST preview modal -->
- <div class="modal fade" id="planbuildPreview" tabindex="-1" role="dialog" aria-labelledby="planbuildPreviewLabel" aria-hidden="true">
- <div class="modal-dialog modal-lg" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <h5 class="modal-title" id="planbuildPreviewLabel">Property info from LIST</h5>
- <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
- </div>
- <div class="modal-body">
- <div id="pb-errors" class="alert alert-danger d-none"></div>
- <div class="row">
- <div class="col-md-6">
- <dl class="row small mb-0">
- <dt class="col-5">PID</dt><dd class="col-7" id="pb_pid">–</dd>
- <dt class="col-5">Title</dt><dd class="col-7" id="pb_title">–</dd>
- <dt class="col-5">Total Area</dt><dd class="col-7" id="pb_area">–</dd>
- <dt class="col-5">Total Area sqm</dt><dd class="col-7" id="area_sqm">–</dd>
- <dt class="col-5">Total Area ha</dt><dd class="col-7" id="area_ha">–</dd>
- <dt class="col-5">Locality</dt><dd class="col-7" id="pb_locality">–</dd>
- </dl>
- </div>
- <div class="col-md-6">
- <dl class="row small mb-0">
- <dt class="col-5">Planning Scheme</dt><dd class="col-7" id="pb_scheme">–</dd>
- <dt class="col-5">Zones</dt><dd class="col-7" id="pb_zones">–</dd>
- <dt class="col-5">Code Overlays</dt><dd class="col-7" id="pb_codes">–</dd>
- </dl>
- </div>
- </div>
- <hr>
- <div class="row">
- <div class="col-md-6">
- <dl class="row small mb-0">
- <dt class="col-5">tenure</dt><dd class="col-7" id="tenure">–</dd>
- <dt class="col-5">lpi</dt><dd class="col-7" id="lpi">–</dd>
- <dt class="col-5">list_guid</dt><dd class="col-7" id="list_guid">–</dd>
- </dl>
- </div>
- <div class="col-md-6">
- </div>
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn btn-light" data-bs-dismiss="modal">Close</button>
- <button type="button" class="btn btn-primary" id="pb-apply">Apply to form</button>
- </div>
- </div>
- </div>
- </div>
- <!-- Prefilled email text modal -->
- <div class="modal fade" id="emailTemplateModal" tabindex="-1" role="dialog" aria-labelledby="emailTemplateLabel" aria-hidden="true">
- <div class="modal-dialog modal-lg" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <h5 class="modal-title" id="emailTemplateLabel">Email text to council</h5>
- <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
- </div>
- <div class="modal-body">
- <ul class="nav nav-tabs" role="tablist">
- <li class="nav-item">
- <a class="nav-link" data-bs-toggle="tab" href="#tabText" role="tab">Plain text</a>
- </li>
- <li class="nav-item">
- <a class="nav-link active" data-bs-toggle="tab" href="#tabHtml" role="tab">HTML email</a>
- </li>
- </ul>
- <div class="tab-content">
- <div class="tab-pane fade p-3" id="tabText" role="tabpanel">
- <textarea id="emailText" class="form-control small" rows="10" readonly style="font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;"></textarea>
- <p class="text-muted small mt-2 mb-0">
- Uses fields: Site Address, Registered Title Owners, Property ID, Title Reference
- </p>
- </div>
- <div class="tab-pane fade active show p-3" id="tabHtml" role="tabpanel">
- <div id="emailHtmlPreview" class="border rounded p-3" style="background:#ffffff; color:#000000; font-family:Arial,Helvetica,sans-serif; font-size:14px; line-height:1.5;"></div>
- <!--<textarea id="emailHtmlSource" class="form-control small mt-2" rows="8" readonly></textarea>
- <p class="text-muted small mt-2 mb-0">
- Preview above. Copy the HTML if you paste into an HTML-capable composer such as Gmail or Outlook.
- </p>-->
- </div>
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn btn-light" data-bs-dismiss="modal">Close</button>
- <button type="button" class="btn btn-outline-secondary" id="copyEmailText">Copy text</button>
- <button type="button" class="btn btn-outline-secondary" id="copyEmailHtml">Copy HTML</button>
- <a href="#" class="btn btn-primary" id="openMailto">Open email draft</a>
- </div>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- const drg = <?php echo (int)($drg ?? 0); ?>;
- const folder_name = <?php echo json_encode(($drg ?? '') . ' - ' . ($site_address_street ?? '')); ?>;
- $(function () {
- document.querySelectorAll('[data-bs-toggle="popover"]')
- .forEach(el => new bootstrap.Popover(el));
- });
- $(function () {
- $(".datetime").each(function(){
- $(this).datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayBtn: true, todayHighlight: true });
- });
- });
- $(function () {
- $(".datemonth").each(function(){
- $(this).datepicker({ format: 'MM yy', autoclose: true, todayBtn: true, todayHighlight: true });
- });
- });
- // Create LOA from current form fields
- $('#createLOA').on('click', async function () {
- const job = String(drg || '').trim();
- if (!job) { alert('Missing Job #'); return; }
- const clientName = ($('#joint_name').val().trim()) ||
- [$('#firstname').val().trim(), $('#lastname').val().trim()].filter(Boolean).join(' ');
- const clientEmail = $('#client_email').val().trim();
- const propertyAddr = $('#site_address').val().trim();
- // NEW fields
- const clientPhone = $('#phoneNumber').val().trim();
- const clientAddress = $('#postal_address').val().trim();
- const propertyPid = $('#property_id').val().trim();
- const propertyTitle = $('#title_id').val().trim(); // server will split vol/folio if possible
- //const startDate = $('#start_date').val?.().trim?.() || ''; // include if you add inputs
- //const endDate = $('#end_date').val?.().trim?.() || '';
- async function doCreate(overwrite) {
- const fd = new FormData();
- fd.append('action', 'loa_create');
- fd.append('job', job);
- fd.append('client_name', clientName);
- fd.append('client_email', clientEmail);
- fd.append('property_address', propertyAddr);
- // NEW fields
- fd.append('client_phone', clientPhone);
- fd.append('client_address', clientAddress);
- fd.append('property_pid', propertyPid);
- fd.append('property_title', propertyTitle);
- //fd.append('start_date', startDate);
- //fd.append('end_date', endDate);
- fd.append('overwrite', overwrite ? 1 : 0);
- fd.append('csrf', $('#csrf').val());
- const res = await fetch(location.pathname + '?action=loa_create', { method: 'POST', body: fd });
- return res.json();
- }
- try {
- let js = await doCreate(false);
- // If file exists, the server will just update front matter (no prompt).
- // If you still want an overwrite option:
- if (!js.ok && js.error && js.error.toLowerCase().includes('exists')) {
- if (confirm('An LOA already exists. Overwrite the whole file from template?')) {
- js = await doCreate(true);
- } else return;
- }
- if (js.ok) {
- const msg = 'LOA saved for Job #' + job + (js.public_url ? '\n\nOpen signing page now?' : '');
- if (confirm(msg) && js.public_url) window.open(js.public_url, '_blank', 'noopener');
- } else {
- alert(js.error || 'Failed to create/update LOA');
- }
- } catch (e) {
- alert('Error creating LOA: ' + e.message);
- }
- });
- // simple phone length “checker” (kept as-is)
- function check() {
- var mobile = document.getElementById('phoneNumber');
- if(!mobile) return;
- if(mobile.value.length !== 12){ /* no-op */ }
- }
- const isHideDismissableAlert = <?php echo json_encode($isHideDismissableAlert ?? 0); ?>;
- window.autocompletes = {};
- var placeSearch, clickedGeolocationField = null;
- var componentForm = {
- street_number: 'short_name',
- route: 'long_name',
- locality: 'long_name',
- administrative_area_level_1: 'short_name',
- postal_code: 'short_name'
- };
- $(document).ready(function() {
- if (isHideDismissableAlert > 0) {
- $(".alert-dismissible").fadeTo(2000, 500).slideUp(500, function () {
- document.querySelectorAll('.alert-dismissible').forEach(el => {
- bootstrap.Alert.getOrCreateInstance(el).close();
- });
- });
- }
- if (drg > 0) {
- const debouncedStore = $.debounce(500, function(name, value) { storeField(name, value); });
- $('.savable-text-field').on('keyup', function(e) {
- const key = e.keyCode || e.which;
- const systemKeys = [9,13,16,17,18,37,38,39,40,91];
- if (systemKeys.includes(key)) return;
- debouncedStore($(this).prop('name'), $(this).val());
- });
- }
- $('.savable-date-field').on('change', function () {
- storeField($(this).prop('name'), $(this).val());
- });
- $('.savable-dropdown-field').on('change', function () {
- const name = $(this).prop('name');
- const value = $(this).val();
- storeField(name, value);
- $(this).removeClass('form-control-danger');
- if (this.id === 'building_surveyors_select') {
- const meta = this.options[this.selectedIndex]?.dataset?.id || '';
- $('#building_surveyors_meta').val(meta);
- storeField('building_surveyors_meta', meta);
- }
- });
- $('.savable-checkbox-field').on('change', function () {
- storeField($(this).prop('name'), $(this).is(":checked") ? 1 : 0);
- });
- $('.savable-radio-field').on('change', function () {
- storeField($(this).prop('name'), $(this).val());
- });
- // phone mask
- const phoneInput = document.getElementById('phoneNumber');
- if (phoneInput) {
- phoneInput.addEventListener('keyup', function(evt){
- phoneInput.value = phoneFormat(phoneInput.value);
- });
- }
- }); // <--- correctly closes $(document).ready
- String.prototype.toProperCase = function () {
- return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
- };
- var rectangle, map, infoWindow, rectPoly, journey = '', rotate = '';
- function stateDisplay(shortCode) {
- if (!shortCode) return '';
- const s = shortCode.toUpperCase();
- const map = { TAS: 'Tas', VIC: 'Vic', QLD: 'Qld', NSW: 'NSW', WA: 'WA', SA: 'SA', ACT: 'ACT', NT: 'NT' };
- return map[s] || shortCode;
- }
- // Google Places — global so callback can find it
- window.initAutocomplete = function initAutocomplete() {
- const inputs = document.getElementsByClassName('map-autocomplete');
- for (let i = 0; i < inputs.length; i++) {
- const el = inputs[i];
- const ac = new google.maps.places.Autocomplete(
- el,
- { types: ['address'], componentRestrictions: { country: 'au' } }
- );
- ac.setFields(['address_component', 'geometry']);
- window.autocompletes[el.id] = ac; // store for geolocate()
- ac.addListener('place_changed', () => fillInAddress(el, ac));
- }
- };
- function fillInAddress(targetInput, ac) {
- const place = ac.getPlace();
- if (!place || !place.address_components) return;
- const parts = { street_number: '', route: '', locality: '', state: '', postal_code: '' };
- for (const comp of place.address_components) {
- const type = comp.types[0];
- if (type === 'street_number') parts.street_number = comp.short_name || '';
- if (type === 'route') parts.route = comp.long_name || '';
- if (type === 'locality') parts.locality = comp.long_name || '';
- if (type === 'administrative_area_level_1') parts.state = comp.short_name || '';
- if (type === 'postal_code') parts.postal_code = comp.short_name || '';
- }
- if (parts.street_number && parts.route && parts.locality && parts.state && parts.postal_code) {
- const formatted = `${parts.street_number} ${parts.route}, ${parts.locality}, ${stateDisplay(parts.state)}, ${parts.postal_code}`;
- targetInput.value = formatted;
- if (typeof storeField === 'function') {
- try { storeField(targetInput.name || targetInput.id, formatted); } catch (e) {}
- }
- if (targetInput.id === 'site_address' && typeof writeIfReady === 'function') {
- try { writeIfReady(); } catch (e) {}
- }
- // NEW: council lookup for TAS
- if (parts.state && parts.state.toUpperCase() === 'TAS') {
- const url = `classes/council_lookup.php?town=${encodeURIComponent(parts.locality)}&postcode=${encodeURIComponent(parts.postal_code)}&state=TAS`;
- fetch(url)
- .then(r => r.json())
- .then(data => {
- if (data && data.ok && data.council) {
- const councilEl = document.getElementById('council');
- if (councilEl) {
- councilEl.value = data.council;
- }
- if (typeof storeField === 'function') {
- storeField('council', data.council);
- }
- // If you also want to store the shapeFile, uncomment:
- // if (data.shapeFile) storeField('shapeFile', data.shapeFile);
- }
- })
- .catch(() => { /* silent fail is fine */ });
- }
- // store lat/lng if available
- if (place.geometry && place.geometry.location) {
- const lat = place.geometry.location.lat();
- const lng = place.geometry.location.lng();
- $('#site_lat').val(lat);
- $('#site_lng').val(lng);
- storeField('site_lat', lat);
- storeField('site_lng', lng);
- }
- if (typeof storeField === 'function') {
- try { storeField(targetInput.name || targetInput.id, formatted); } catch (e) {}
- }
- }
- }
- function geolocate(el) {
- if (!el || !el.id) return;
- clickedGeolocationField = el.name;
- const ac = window.autocompletes[el.id];
- if (!ac) return;
- if (navigator.geolocation) {
- navigator.geolocation.getCurrentPosition(function(position) {
- const circle = new google.maps.Circle({
- center: { lat: position.coords.latitude, lng: position.coords.longitude },
- radius: position.coords.accuracy
- });
- ac.setBounds(circle.getBounds());
- });
- }
- }
- function getElevation(lat, lng) {
- var elevationApiKey = 'AIzaSyB-QceOYrDe9otynMmQ9iNF3yEZzbpsanM';
- var elevationApiUrl = `https://maps.googleapis.com/maps/api/elevation/json?locations=${lat},${lng}&key=${elevationApiKey}`;
- fetch(elevationApiUrl)
- .then(function (response) { return response.json(); })
- .then(function (data) {
- if (data.results.length > 0) {
- var elevation = data.results[0].elevation;
- var el = document.getElementById('elevation');
- if (el) el.value = elevation;
- }
- })
- .catch(function (error) { console.error('Error fetching elevation: ' + error); });
- }
- // AU-ish phone mask
- function phoneFormat(input){
- input = input.replace(/\D/g,'');
- input = input.substring(0,20);
- var size = input.length;
- if(size === 0){
- input = input;
- } else if(size < 4){
- input = input + ' ';
- } else if(size < 7){
- input = input.substring(0,4)+' '+input.substring(4,6);
- } else if (input.startsWith("04") ) {
- input = input.substring(0,4)+' '+input.substring(4,7)+' '+input.substring(7,20);
- } else if (input.startsWith("+44") ) {
- input = input;
- } else {
- input = input.substring(0,2)+' '+input.substring(2,6)+' '+input.substring(6,20);
- }
- return input;
- }
- function storeField(name, value) {
- $.ajax({
- url: "database.php",
- type: "POST",
- data: {
- action: 'client-brief',
- drg: drg,
- field_name: name,
- field_value: value,
- csrf: $('#csrf').val()
- },
- success: function(data) {
- try {
- data = $.parseJSON(data);
- if (!data.success) alert('Error: ' + data.message);
- } catch(e) {
- console.warn('Non-JSON response', data);
- }
- },
- error: function() { alert("Please check for Errors."); }
- });
- }
- document.getElementById('authorize_button').addEventListener('click', (e) => {
- e.preventDefault();
- handleAuthClick();
- });
- document.getElementById('signout_button').addEventListener('click', (e) => {
- e.preventDefault();
- handleSignoutClick();
- });
- // Google API creds
- var CLIENT_ID = '615226084553-ujv34r7f62a4p6hvupq7v6rnnt04h59v.apps.googleusercontent.com';
- var API_KEY = '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';
- const DISCOVERY_DOC = 'https://www.googleapis.com/discovery/v1/apis/drive/v3/rest';
- var SCOPES = 'https://www.googleapis.com/auth/drive';
- // TODO: Set this to the Google Drive folder ID of the root projects directory
- // (e.g. the "[03] Projects 20XX" folder). Without this, new job folders are
- // created in the signed-in user's Drive root, not the shared projects directory.
- // Find the ID by opening the folder in Drive and copying the ID from the URL:
- // https://drive.google.com/drive/folders/<FOLDER_ID_HERE>
- const PROJECTS_PARENT_FOLDER_ID = ''; // <-- paste folder ID here
- let tokenClient, gapiInited = false, gisInited = false;
- window.gapiLoaded = function () {
- gapi.load('client', async () => {
- try {
- await gapi.client.init({ apiKey: API_KEY, discoveryDocs: ['https://www.googleapis.com/discovery/v1/apis/drive/v3/rest'] });
- gapiInited = true;
- maybeEnableButtons();
- } catch (err) {
- console.warn('Discovery failed, falling back to gapi.client.load()', err);
- // small backoff retries
- for (let i = 0; i < 3; i++) {
- try {
- await new Promise(r => setTimeout(r, 400 * (i + 1)));
- await gapi.client.load('drive', 'v3');
- gapiInited = true;
- maybeEnableButtons();
- break;
- } catch (e) {
- if (i === 2) console.error('Drive load failed after retries', e);
- }
- }
- }
- });
- };
- window.gisLoaded = function () {
- tokenClient = google.accounts.oauth2.initTokenClient({
- client_id: CLIENT_ID,
- scope: SCOPES,
- callback: () => {}
- });
- gisInited = true;
- maybeEnableButtons();
- };
- function maybeEnableButtons() {
- if (gapiInited && gisInited) {
- document.getElementById('authorize_button').style.visibility = 'visible';
- document.getElementById('createFolder')?.addEventListener('click', ensureAuthThenCreateFolder);
- }
- }
- function handleAuthClick() {
- tokenClient.callback = (resp) => {
- if (resp.error) { console.error(resp); return; }
- document.getElementById('signout_button').style.visibility = 'visible';
- document.getElementById('authorize_button').innerText = 'Refresh';
- };
- if (!gapi.client.getToken()) tokenClient.requestAccessToken({ prompt: 'consent' });
- else tokenClient.requestAccessToken({ prompt: '' });
- }
- function handleSignoutClick() {
- const tok = gapi.client.getToken();
- if (!tok) return;
- google.accounts.oauth2.revoke(tok.access_token);
- gapi.client.setToken(null);
- document.getElementById('authorize_button').innerText = 'Authorize';
- document.getElementById('signout_button').style.visibility = 'hidden';
- }
- async function ensureAuthThenCreateFolder() {
- if (!gapi.client.getToken()) {
- tokenClient.callback = async (resp) => {
- if (resp && resp.error) { console.error(resp); return; }
- await createFolder();
- };
- tokenClient.requestAccessToken({ prompt: 'consent' });
- } else {
- await createFolder();
- }
- }
- async function createFolder() {
- try {
- const resource = { name: folder_name, mimeType: 'application/vnd.google-apps.folder' };
- if (PROJECTS_PARENT_FOLDER_ID) resource.parents = [PROJECTS_PARENT_FOLDER_ID];
- const res = await gapi.client.drive.files.create({
- resource,
- fields: 'id,name,webViewLink',
- supportsAllDrives: true
- });
- alert('Folder created: ' + res.result.name + '\nID: ' + res.result.id);
- } catch (err) {
- const detail = err?.result?.error || err;
- console.error('Drive create error:', detail);
- alert('Drive error: ' + (detail.message || detail.statusText || JSON.stringify(detail)));
- }
- }
- /* ******************************************************************************************* */
- async function fetchAndExtractData() {
- const lat = $('#site_lat').val();
- const lng = $('#site_lng').val();
- if (!lat || !lng) {
- alert('Please select a Google suggested Site Address first so we can capture coordinates.');
- return;
- }
- // Helper to stringify area object from list_lookup.php
- const formatArea = (area) => {
- if (!area) return '';
- // prefer sqm label, fall back to ha
- return area.sqm_label || area.ha_label || '';
- };
- try {
- const resp = await fetch('classes/list_lookup.php', {
- method: 'POST',
- headers: { 'Content-Type': 'application/json' },
- body: JSON.stringify({ lat: parseFloat(lat), lng: parseFloat(lng) })
- });
- const data = await resp.json();
- // Show any lookup error in the modal
- if (!resp.ok || !data || data.ok !== true) {
- $('#pb-errors').removeClass('d-none').text((data && data.error) ? data.error : 'Lookup failed');
- bootstrap.Modal.getOrCreateInstance(document.getElementById('planbuildPreview')).show();
- return;
- }
- $('#pb-errors').addClass('d-none').text('');
- // Fill the preview modal
- $('#pb_pid').text(data.pid || '–');
- $('#pb_title').text(data.title_id || '–');
- $('#pb_area').text(formatArea(data.total_area) || '–');
- $('#pb_locality').text(data.locality || '–'); // include if you added locality in PHP later
- //$('#pb_council').text(data.council || '–');
- $('#pb_scheme').text(data.planning_scheme || '–');
- $('#pb_zones').text((Array.isArray(data.planning_zones) ? data.planning_zones.join(', ') : (data.planning_zones || '')) || '–');
- $('#pb_codes').text((Array.isArray(data.planning_codes) ? data.planning_codes.join(', ') : (data.planning_codes || '')) || '–');
- $('#area_sqm').text(data.area_sqm || '–');
- $('#area_ha').text(data.area_ha || '–');
- $('#tenure').text(data.tenure || '–');
- $('#lpi').text(data.lpi || '–');
- $('#list_guid').text(data.list_guid || '–');
- bootstrap.Modal.getOrCreateInstance(document.getElementById('planbuildPreview')).show();
- // Apply button writes to the form and DB
- $('#pb-apply').off('click').on('click', () => {
- const apply = (id, v) => {
- const el = document.getElementById(id);
- if (el && typeof v !== 'undefined' && v !== null) {
- el.value = v;
- storeField(id, v);
- }
- };
- apply('property_id', data.pid || '');
- apply('title_id', data.title_id || '');
- apply('total_area', formatArea(data.total_area) || '');
- apply('planning_scheme', data.planning_scheme || '');
- apply('planning_zones', Array.isArray(data.planning_zones) ? data.planning_zones.join(', ') : (data.planning_zones || ''));
- apply('planning_codes', Array.isArray(data.planning_codes) ? data.planning_codes.join(', ') : (data.planning_codes || ''));
- //apply('council', data.council || '');
- if (document.getElementById('locality')) apply('locality', data.locality || '');
- // Optional extras if you add matching inputs:
- //apply('area_sqm', data.total_area?.sqm_label || '');
- //apply('area_ha', data.total_area?.ha_label || '');
- //apply('tenure', data.tenure || '');
- //apply('lpi', data.lpi || '');
- //apply('list_guid',data.list_guid|| '');
- bootstrap.Modal.getOrCreateInstance(document.getElementById('planbuildPreview')).hide();
- });
- } catch (e) {
- $('#pb-errors').removeClass('d-none').text('Error fetching data: ' + e.message);
- bootstrap.Modal.getOrCreateInstance(document.getElementById('planbuildPreview')).show();
- }
- };
- // Build the exact body text from current form values
- const useDynamicGreeting = false;
- function getGreeting() {
- if (!useDynamicGreeting) return 'Good Morning,';
- const hour = new Date().getHours();
- if (hour < 12) return 'Good Morning,';
- if (hour < 18) return 'Good Afternoon,';
- return 'Good Evening,';
- }
- function escapeHtml(s) {
- return String(s || '').replace(/[&<>"']/g, c => ({
- '&':'&', '<':'<', '>':'>', '"':'"', "'":'''
- }[c]));
- }
- function buildPlanningEmailText() {
- const greet = getGreeting();
- const address = ($('#site_address').val() || '').trim();
- const owners = ($('#registered_owner').val() || '').trim();
- const pid = ($('#property_id').val() || '').trim();
- const title = ($('#title_id').val() || '').trim();
- const fallback = 'N/A';
- const lines = [
- greet,
- '',
- 'I am requesting the planning and plumbing information for the following address:',
- `Property Address: ${address || fallback}`,
- `Property Owners: ${owners || fallback}`,
- `Property ID: ${pid || fallback}`,
- `Title/Vol: ${title || fallback}`,
- '',
- 'Attached is a signed Letter of Authority from the property owners.'
- ];
- return lines.join('\n');
- }
- function buildPlanningEmailHtml() {
- const greet = getGreeting();
- const address = ($('#site_address').val() || '').trim();
- const owners = ($('#registered_owner').val() || '').trim();
- const pid = ($('#property_id').val() || '').trim();
- const title = ($('#title_id').val() || '').trim();
- const fallback = 'N/A';
- return `
- <div style="background:#ffffff;padding:16px;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.5;color:#000000;">
- <p style="margin:0 0 12px 0;">${escapeHtml(greet)}</p>
- <p style="margin:0 0 12px 0;">I am requesting the planning and plumbing information for the following address:</p>
- <table role="presentation" cellpadding="0" cellspacing="0" width="75%" style="border-collapse:collapse;background:#ffffff;color:#000000;">
- <tr>
- <td style="padding:8px;border:1px solid #d1d5db;font-weight:bold;width:200px;">Property Address</td>
- <td style="padding:8px;border:1px solid #d1d5db;">${escapeHtml(address || fallback)}</td>
- </tr>
- <tr>
- <td style="padding:8px;border:1px solid #d1d5db;font-weight:bold;">Property Owners</td>
- <td style="padding:8px;border:1px solid #d1d5db;">${escapeHtml(owners || fallback)}</td>
- </tr>
- <tr>
- <td style="padding:8px;border:1px solid #d1d5db;font-weight:bold;">Property ID</td>
- <td style="padding:8px;border:1px solid #d1d5db;">${escapeHtml(pid || fallback)}</td>
- </tr>
- <tr>
- <td style="padding:8px;border:1px solid #d1d5db;font-weight:bold;">Title/Vol</td>
- <td style="padding:8px;border:1px solid #d1d5db;">${escapeHtml(title || fallback)}</td>
- </tr>
- </table>
- <p style="margin:12px 0 0 0;">Attached is a signed Letter of Authority from the property owners.</p>
- </div>`;
- }
- function copyFromTextarea(selector, btnEl) {
- const val = $(selector).val();
- const doWrite = async () => {
- if (navigator.clipboard && navigator.clipboard.writeText) {
- await navigator.clipboard.writeText(val);
- } else {
- const ta = document.querySelector(selector);
- ta.focus();
- ta.select();
- document.execCommand('copy');
- }
- };
- doWrite().then(() => {
- const original = btnEl.textContent;
- btnEl.textContent = 'Copied';
- btnEl.disabled = true;
- setTimeout(() => { btnEl.textContent = original; btnEl.disabled = false; }, 1200);
- }).catch(() => {
- alert('Copy failed. You can select and copy the text manually.');
- });
- }
- // Single modal hook
- document.getElementById('emailTemplateModal')
- .addEventListener('show.bs.modal', function () {
- const text = buildPlanningEmailText();
- const html = buildPlanningEmailHtml();
- document.getElementById('emailText').value = text;
- document.getElementById('emailHtmlPreview').innerHTML = html;
- document.getElementById('emailHtmlSource').value = html;
- // Build subject using the current site address
- const addr = (document.getElementById('site_address')?.value || '').trim() || 'N/A';
- const subject = encodeURIComponent(`Request for Property Information - ${addr}`);
- const body = encodeURIComponent(text);
- document.getElementById('openMailto').href = `mailto:?subject=${subject}&body=${body}`;
- });
- // Single copy handlers
- $('#copyEmailText').on('click', function () {
- copyFromTextarea('#emailText', this);
- });
- $('#copyEmailHtml').on('click', function () {
- copyFromTextarea('#emailHtmlSource', this);
- });
- </script>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
- <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB-QceOYrDe9otynMmQ9iNF3yEZzbpsanM&libraries=places&loading=async&callback=initAutocomplete" ></script>
- <script async defer src="https://apis.google.com/js/api.js" onload="gapiLoaded()"></script>
- <script async defer src="https://accounts.google.com/gsi/client" onload="gisLoaded()"></script>
- </body>
- </html>
|