]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - Classes/class-plugin-git.php
really fix, thanks Mi_92
[irc/unrealircd/unrealircd-webpanel.git] / Classes / class-plugin-git.php
index 232fc2073de6a66e8ffe7ac33f40012afb56eb5d..04fa44ccbca27444ca90251ab031e61afe370f78 100644 (file)
@@ -1,62 +1,75 @@
 <?php
-       define('DEFAULT_PLUGINS_DIR', 'https://api.dalek.services/plugins.list');
+       define('DEFAULT_PLUGINS_DIR', 'https://api.valware.uk/plugins.list');
        
-       class PluginRepo
-       {
-           public $plugins ;
-           public $data;
-           public $err;
-           function __construct($url = DEFAULT_PLUGINS_DIR)
-           {
-            global $config;
-            if (!isset($config['third-party-plugins']))
+class PluginRepo
+{
+    public $plugins ;
+    public $data;
+    public $err;
+    function __construct($url = DEFAULT_PLUGINS_DIR)
+    {
+        global $config;
+        if (!isset($config['third-party-plugins']))
+        {
+            $config['third-party-plugins']['data'] = NULL;
+            $config['third-party-plugins']['timestamp'] = 0;
+        }
+        if (time() - $config['third-party-plugins']['timestamp'] > 200) // Cache for 3.333 minutes lol
+        {
+            // come simba it is taem
+            $curl = curl_init($url);
+
+            // Set the options
+            curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);  // Return the response instead of printing it
+            curl_setopt($curl, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);  // Set the content type to JSON
+            curl_setopt($curl, CURLOPT_USERAGENT, "UnrealIRCd Admin Panel"); // This is Secret Agent UnrealIRCd Admin Panel reporting for doody
+            // Execute the request
+            $response = curl_exec($curl);
+    
+            // Check for errors
+            if ($response === false)
+                $this->err = curl_error($curl);
+            else
             {
-                $config['third-party-plugins']['data'] = NULL;
-                $config['third-party-plugins']['timestamp'] = 0;
+                $this->data = json_decode($response, false);
+                $config['third-party-plugins']['data'] = $this->data;
+                $config['third-party-plugins']['timestamp'] = time();
+                write_config('third-party-plugins');
             }
-            if (time() - $config['third-party-plugins']['timestamp'] > 200) // Cache for 3.333 minutes lol
-            {
-                // come simba it is taem
-                $curl = curl_init($url);
-       
-                // Set the options
-                curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);  // Return the response instead of printing it
-                curl_setopt($curl, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);  // Set the content type to JSON
-                curl_setopt($curl, CURLOPT_USERAGENT, "UnrealIRCd Admin Panel"); // This is Secret Agent UnrealIRCd Admin Panel reporting for doody
-                // Execute the request
-                $response = curl_exec($curl);
+        }
+        else
+            $this->data = $config['third-party-plugins']['data'];
         
-                // Check for errors
-                if ($response === false)
-                    $this->err = curl_error($curl);
-                else
-                {
-                    $this->data = json_decode($response, false);
-                    $config['third-party-plugins']['data'] = $this->data;
-                    $config['third-party-plugins']['timestamp'] = time();
-                    write_config('third-party-plugins');
-                }
-            }
-            else
-                $this->data = $config['third-party-plugins']['data'];
-               
-           }
+    }
 
 
 
-        public function ifInstalledLabel($name, $installed = false)
+    public function ifInstalledLabel($name, $installed = false)
+    {
+        if ($installed)
+        {   ?>
+            <div style="margin-left:40px;" class="badge rounded-pill badge-success">✔ Installed</div>
+<?php   }
+        else if (Plugins::plugin_exists($name))
         {
-            if ($installed)
-            {   ?>
+            ?>
                 <div style="margin-left:40px;" class="badge rounded-pill badge-success">✔ Installed</div>
-    <?php   }
-            else if (Plugins::plugin_exists($name))
-            {
-                ?>
-                    <div style="margin-left:40px;" class="badge rounded-pill badge-success">✔ Installed</div>
-                <?php
-            }
+            <?php
         }
+    }
+    public function ifCompatible($plugin)
+    {
+        $tok = split(WEBPANEL_VERSION,"-");
+        $wpversion = $tok[0];
+        if ($plugin->minver <= $wpversion)
+        {   ?>
+            <div style="margin-left:40px;" class="badge rounded-pill badge-info">Compatible</div>
+<?php   }
+        else
+        {   ?>
+            <div style="margin-left:40px;" class="badge rounded-pill badge-danger">Incompatible</div>
+<?php   }
+    }
 
 
 
         global $config;
         if ($this->err)
             die("Could not fetch list.\n");
-        global $config;
+
             ?>
                <div class="row">
             <?php     
         $counter = 0;
 
 
-        foreach($this->data as $p)
+        foreach($this->data->list as $p)
         {
+            $tok = split(WEBPANEL_VERSION,"-");
+            $upgradeRequired = false;
+            $wpversion = $tok[0];
+            if ($p->minver > $wpversion)
+                $upgradeRequired = true;
             $installed = in_array($p->name, $config['plugins']) ? true : false;
-
             if (is_string($p))
                 continue;
             
                     <div class="media">
                         <img class="align-self-start mr-3" src="<?php echo $p->icon ?>" height="50" width="55">
                         <div class="media-body">
-                            <div style="position:relative;float:inline-end"><?php echo $this->ifInstalledLabel($p->name); ?></div>
+                            <div style="position:relative;float:inline-end"><?php echo $this->ifInstalledLabel($p->name); $this->ifCompatible($p) ?></div>
                             <h4 class="mb-0 mt-0"><?php echo $p->title ?></h4>
-                            <small>By <a href="<?php echo "mailto:$p->email" ?>" target="_blank"><?php echo $p->author ?></a></small>
+                            <small>By <a href="<?php echo "mailto:$p->contact" ?>" target="_blank"><?php echo $p->author ?></a></small>
                         </div>
                     </div>
                 </div>
                 <!-- Card body -->
                 <div class="card-body">
                     <h6 class="card-title"><?php echo $p->title ?> <small><code>v<?php echo $p->version ?></code></small></h6>
-                    <p class="card-text"><?php echo $p->description ?> </p>
+                    <p class="card-text"><?php echo $p->description ?><br><br>  </p>
                 </div>
 
                 <!-- Card footer -->
-                <div class="card-footer d-flex justify-content-between align-items-center">
-                    <ul class="list-unstyled">
-                        <li class="list-item"><i><a href="<?php echo "mailto:".$p->contact ?? "#" ?>">By <?php echo $p->author ?></i></a></li>
-                    </ul>
+                <div class="card-footer d-flex justify-content-between">
+                    <div id="justALonelyEmptyDivCryEmoji"></div>
                     <div>
                         <div id="<?php echo $p->name ?>" class="more-info btn btn-info">More Info</div>
-                        <div id="<?php echo $p->name ?>install" class="btn-install-plugin btn btn-primary">Install</div>
+                        <?php if ($upgradeRequired){
+                            ?>
+                                <div id="<?php echo $p->name ?>coming-soon" class="btn-coming-soon btn btn-dark disabled">Panel Upgrade Required</div>
+                            <?php
+                        }
+                        ?>
+                        <div id="<?php echo $p->name ?>install" <?php if ($upgradeRequired) echo 'style="display:none" '; ?> class="btn-install-plugin btn btn-primary">Install</div>
                     </div>
                 </div>
             </div>