summaryrefslogtreecommitdiff
path: root/op-mode-definitions/webproxy.xml.in
blob: f8ec8fb0a908492dfb4720d828f36d9d9d91bef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="monitor">
    <children>
      <node name="webproxy">
        <properties>
          <help>Monitor WebProxy service</help>
        </properties>
        <command>${vyatta_bindir}/vyatta-monitor Webproxy squid</command>
        <children>
          <node name="access-log">
            <properties>
              <help>Monitor the last lines of the squid access log</help>
            </properties>
            <command>if [ -f /var/log/squid3/access.log ]; then sudo tail --follow=name /var/log/squid3/access.log; else echo "WebProxy cache-log does not exist"; fi</command>
          </node>
          <node name="background">
            <properties>
              <help>Monitor Webproxy in the background</help>
            </properties>
            <children>
              <node name="start">
                <properties>
                  <help>Start background monitoring of Webproxy</help>
                </properties>
                <command>${vyatta_bindir}/vyatta-monitor-background Webproxy squid</command>
              </node>
              <node name="stop">
                <properties>
                  <help>Stop background monitoring of Webproxy</help>
                </properties>
                <command>${vyatta_bindir}/vyatta-monitor-background-stop Webproxy </command>
              </node>
            </children>
          </node>
          <node name="cache-log">
            <properties>
              <help>Monitor the last lines of the squid cache log</help>
            </properties>
            <command>if [ -f /var/log/squid3/cache.log ]; then sudo tail --follow=name /var/log/squid3/cache.log; else echo "WebProxy cache-log does not exist"; fi</command>
          </node>
        </children>
      </node>
    </children>
  </node>
  <node name="restart">
    <children>
      <node name="webproxy">
        <properties>
          <help>Restart WebProxy service</help>
        </properties>
        <command>if cli-shell-api existsActive service webproxy; then sudo systemctl restart squid.service; else echo "Service WebProxy not configured"; fi</command>
      </node>
    </children>
  </node>
  <node name="show">
    <children>
      <node name="webproxy">
        <properties>
          <help>Show WebProxy information</help>
        </properties>
        <children>
          <!-- missing blacklist command -->
          <node name="blacklist">
            <properties>
              <help>Show webproxy blacklist information</help>
            </properties>
            <children>
              <node name="categories">
                <properties>
                  <help>Show webproxy blacklist categories</help>
                </properties>
                <command>${vyos_completion_dir}/list_webproxy_category.sh</command>
              </node>
            </children>
          </node>
          <node name="log">
            <properties>
              <help>Show contents of WebProxy access log</help>
            </properties>
            <command>if [ -e /var/log/squid/access.log ]; then sudo less $_vyatta_less_options --prompt="file %i of %m, page %dt of %D" -- `printf "%s\n" /var/log/squid/access.log* | sort -nr`; else echo "No WebProxy log"; fi</command>
          </node>
          <node name="update-log">
            <properties>
              <help>Show update log for url-filter database</help>
            </properties>
            <command>if [ -e /opt/vyatta/etc/config/url-filtering/squidguard/updatestatus ]; then cat /opt/vyatta/etc/config/url-filtering/squidguard/updatestatus; else echo "Update log not found"; fi</command>
          </node>
        </children>
      </node>
    </children>
  </node>
  <node name="update">
    <children>
      <node name="webproxy">
        <properties>
          <help>Update WebProxy</help>
        </properties>
        <children>
          <node name="blacklists">
            <properties>
              <help>Update the webproxy blacklist database</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/webproxy_update_blacklist.sh --update-blacklist</command>
          </node>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>