From 39785c21412deddd53fe1cdd357e0633387b1915 Mon Sep 17 00:00:00 2001 From: wisdomwei201804 Date: Thu, 19 Apr 2018 13:29:05 +0800 Subject: [PATCH] =?UTF-8?q?v3.7.1.0=20=201=E3=80=81=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E6=89=98=E7=9B=98=E5=9B=BE=E6=A0=87=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E6=9B=B4=E6=96=B0=E5=8A=9F=E8=83=BD=EF=BC=9A=E7=BA=A2?= =?UTF-8?q?=E8=89=B2-=E8=8E=B7=E5=8F=96WAN=E5=8F=A3IP=E6=88=96=E8=80=85?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=9F=9F=E5=90=8D=E7=BB=91=E5=AE=9AIP?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E3=80=82=E9=BB=84=E8=89=B2-=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E6=88=90=E5=8A=9F=EF=BC=8C=E4=BD=86WAN=E5=8F=A3IP?= =?UTF-8?q?=E5=92=8C=E5=9F=9F=E5=90=8D=E7=BB=91=E5=AE=9AIP=E4=B8=8D?= =?UTF-8?q?=E4=B8=80=E8=87=B4=E3=80=82=E7=BB=BF=E8=89=B2-=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E6=88=90=E5=8A=9F=EF=BC=8CWAN=E5=8F=A3IP=E5=92=8C?= =?UTF-8?q?=E5=9F=9F=E5=90=8D=E7=BB=91=E5=AE=9AIP=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E3=80=82=E7=81=B0=E8=89=B2-WAN=E5=8F=A3=E7=BD=91=E7=BB=9C?= =?UTF-8?q?=E4=B8=8D=E9=80=9A=E3=80=822=E3=80=81=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=92=8C=E7=AA=97=E4=BD=93=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E5=88=B7=E6=96=B0BUG=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 242 ++++++ LICENSE | 674 +++++++++++++++++ README.md | 2 + net.nutcore.aliddns/net.nutcore.aliddns.sln | 22 + .../net.nutcore.aliddns/App.config | 6 + .../Form_About.Designer.cs | 153 ++++ .../net.nutcore.aliddns/Form_About.cs | 43 ++ .../net.nutcore.aliddns/Form_About.resx | 120 +++ .../net.nutcore.aliddns/IPMaskedTextBox.dll | Bin 0 -> 14336 bytes .../net.nutcore.aliddns/Program.cs | 39 + .../Properties/AssemblyInfo.cs | 36 + .../Properties/Resources.Designer.cs | 103 +++ .../Properties/Resources.resx | 133 ++++ .../Properties/Settings.Designer.cs | 30 + .../Properties/Settings.settings | 7 + .../Resources/alidns_gray.ico | Bin 0 -> 4286 bytes .../Resources/alidns_green.ico | Bin 0 -> 4286 bytes .../Resources/alidns_red.ico | Bin 0 -> 4286 bytes .../Resources/alidns_yellow.ico | Bin 0 -> 4286 bytes .../net.nutcore.aliddns/alidns.ico | Bin 0 -> 4286 bytes .../net.nutcore.aliddns/alidns_gray.ico | Bin 0 -> 4286 bytes .../net.nutcore.aliddns/alidns_green.ico | Bin 0 -> 4286 bytes .../net.nutcore.aliddns/alidns_red.ico | Bin 0 -> 4286 bytes .../net.nutcore.aliddns/alidns_yellow.ico | Bin 0 -> 4286 bytes .../aliyun-net-sdk-alidns.dll | Bin 0 -> 68096 bytes .../aliyun-net-sdk-core.dll | Bin 0 -> 67072 bytes .../net.nutcore.aliddns/main.Designer.cs | 661 ++++++++++++++++ .../net.nutcore.aliddns/main.cs | 715 ++++++++++++++++++ .../net.nutcore.aliddns/main.resx | 288 +++++++ .../net.nutcore.aliddns.csproj | 158 ++++ .../net.nutcore.aliddns/updateinfo.txt | 65 ++ 31 files changed, 3497 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns.sln create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/App.config create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Form_About.Designer.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Form_About.resx create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/IPMaskedTextBox.dll create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Program.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.Designer.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.resx create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.settings create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_gray.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_green.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_red.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_yellow.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/alidns.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/alidns_gray.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/alidns_green.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/alidns_red.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/alidns_yellow.ico create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-alidns.dll create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-core.dll create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/main.Designer.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/main.cs create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/main.resx create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj create mode 100644 net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c9a181 --- /dev/null +++ b/.gitignore @@ -0,0 +1,242 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +[Xx]64/ +[Xx]86/ +[Bb]uild/ +bld/ +[Bb]in/ +[Oo]bj/ + +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX +project.lock.json +artifacts/ + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml + +# TODO: Un-comment the next line if you do not want to checkin +# your web deploy settings because they may include unencrypted +# passwords +#*.pubxml +*.publishproj + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directory +AppPackages/ +BundleArtifacts/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.pfx +*.publishsettings +node_modules/ +orleans.codegen.cs + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# LightSwitch generated files +GeneratedArtifacts/ +ModelManifest.xml + +# Paket dependency manager +.paket/paket.exe + +# FAKE - F# Make +.fake/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9cecc1d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..3c5d7c6 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# AliDDNS +基于云解析API的动态DNS diff --git a/net.nutcore.aliddns/net.nutcore.aliddns.sln b/net.nutcore.aliddns/net.nutcore.aliddns.sln new file mode 100644 index 0000000..b9c7980 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "net.nutcore.aliddns", "net.nutcore.aliddns\net.nutcore.aliddns.csproj", "{018BAB83-CA31-4BDE-BC01-EEC283CEABEA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {018BAB83-CA31-4BDE-BC01-EEC283CEABEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {018BAB83-CA31-4BDE-BC01-EEC283CEABEA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {018BAB83-CA31-4BDE-BC01-EEC283CEABEA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {018BAB83-CA31-4BDE-BC01-EEC283CEABEA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/App.config b/net.nutcore.aliddns/net.nutcore.aliddns/App.config new file mode 100644 index 0000000..88fa402 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.Designer.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.Designer.cs new file mode 100644 index 0000000..9fd01d2 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.Designer.cs @@ -0,0 +1,153 @@ +namespace net.nutcore.aliddns +{ + partial class Form_About + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.authorInformation = new System.Windows.Forms.GroupBox(); + this.label3 = new System.Windows.Forms.Label(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.PublishLink = new System.Windows.Forms.LinkLabel(); + this.personalWebsite = new System.Windows.Forms.LinkLabel(); + this.textBox_updateInfo = new System.Windows.Forms.TextBox(); + this.authorInformation.SuspendLayout(); + this.SuspendLayout(); + // + // authorInformation + // + this.authorInformation.Controls.Add(this.label3); + this.authorInformation.Controls.Add(this.linkLabel1); + this.authorInformation.Controls.Add(this.label2); + this.authorInformation.Controls.Add(this.label1); + this.authorInformation.Controls.Add(this.PublishLink); + this.authorInformation.Controls.Add(this.personalWebsite); + this.authorInformation.Location = new System.Drawing.Point(12, 12); + this.authorInformation.Name = "authorInformation"; + this.authorInformation.Size = new System.Drawing.Size(242, 91); + this.authorInformation.TabIndex = 8; + this.authorInformation.TabStop = false; + this.authorInformation.Text = "著作信息"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(6, 62); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(95, 12); + this.label3.TabIndex = 6; + this.label3.Text = "本程序发布地址:"; + // + // linkLabel1 + // + this.linkLabel1.AutoSize = true; + this.linkLabel1.Location = new System.Drawing.Point(107, 39); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(77, 12); + this.linkLabel1.TabIndex = 5; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = "阿里开发论坛"; + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(6, 39); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(95, 12); + this.label2.TabIndex = 4; + this.label2.Text = "原程序发布地址:"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(6, 17); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(71, 12); + this.label1.TabIndex = 3; + this.label1.Text = "原作者主页:"; + // + // PublishLink + // + this.PublishLink.AutoSize = true; + this.PublishLink.Location = new System.Drawing.Point(107, 62); + this.PublishLink.Name = "PublishLink"; + this.PublishLink.Size = new System.Drawing.Size(125, 12); + this.PublishLink.TabIndex = 2; + this.PublishLink.TabStop = true; + this.PublishLink.Text = "AliDDNS 3.0 之后版本"; + this.PublishLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.PublishLink_LinkClicked); + // + // personalWebsite + // + this.personalWebsite.AutoSize = true; + this.personalWebsite.Location = new System.Drawing.Point(83, 17); + this.personalWebsite.Name = "personalWebsite"; + this.personalWebsite.Size = new System.Drawing.Size(95, 12); + this.personalWebsite.TabIndex = 1; + this.personalWebsite.TabStop = true; + this.personalWebsite.Text = "www.nutcore.net"; + this.personalWebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.personalWebsite_LinkClicked); + // + // textBox_updateInfo + // + this.textBox_updateInfo.Location = new System.Drawing.Point(12, 109); + this.textBox_updateInfo.Multiline = true; + this.textBox_updateInfo.Name = "textBox_updateInfo"; + this.textBox_updateInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.textBox_updateInfo.Size = new System.Drawing.Size(242, 132); + this.textBox_updateInfo.TabIndex = 9; + // + // Form_About + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(267, 253); + this.Controls.Add(this.textBox_updateInfo); + this.Controls.Add(this.authorInformation); + this.Name = "Form_About"; + this.Text = "关于"; + this.authorInformation.ResumeLayout(false); + this.authorInformation.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.GroupBox authorInformation; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.LinkLabel linkLabel1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.LinkLabel PublishLink; + private System.Windows.Forms.LinkLabel personalWebsite; + private System.Windows.Forms.TextBox textBox_updateInfo; + } +} \ No newline at end of file diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs new file mode 100644 index 0000000..93bbb18 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.IO; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace net.nutcore.aliddns +{ + public partial class Form_About : Form + { + public Form_About() + { + InitializeComponent(); + textBox_updateInfo.ReadOnly = true; + string filePath = System.AppDomain.CurrentDomain.BaseDirectory; + string updateInfoFile = filePath + "updateinfo.txt"; + if (File.Exists(updateInfoFile)) + textBox_updateInfo.Text = File.ReadAllText(updateInfoFile, Encoding.Default); + else + textBox_updateInfo.Text = "软件运行目录下没有找到updateinfo.txt文件!"; + } + + private void PublishLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + System.Diagnostics.Process.Start("explorer.exe", "https://github.com/wisdomwei201804/AliDDNS/"); + } + + private void personalWebsite_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + System.Diagnostics.Process.Start("explorer.exe", "http://www.nutcore.net/"); + } + + private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + System.Diagnostics.Process.Start("explorer.exe", "https://bbs.aliyun.com/read/289624.html"); + } + } +} diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.resx b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/IPMaskedTextBox.dll b/net.nutcore.aliddns/net.nutcore.aliddns/IPMaskedTextBox.dll new file mode 100644 index 0000000000000000000000000000000000000000..e654d653cab8ca2acaa959e24e1fb7b23e398444 GIT binary patch literal 14336 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 X8;RZW9OkUs;eH!B{$J+rtq1-GI{8P= literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Program.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Program.cs new file mode 100644 index 0000000..c5baf2a --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Program.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace net.nutcore.aliddns +{ + static class Program + { + static System.Threading.Mutex _mutex; //定义为类变量,而非局部变量,用于检测线程 + /// + /// 应用程序的主入口点。 + /// + [STAThread] + static void Main() + { + //设定是否可以打开新进程的判断参数 + bool isNew; + + //获取程序集Guid作为唯一标识 + Attribute guid_attr = Attribute.GetCustomAttribute(System.Reflection.Assembly.GetExecutingAssembly(), typeof(GuidAttribute)); + string guid = ((GuidAttribute)guid_attr).Value; //此时guid对当前登录用户生效,当声明为Global时,对所有用户有效 + _mutex = new System.Threading.Mutex(true, guid, out isNew); + if ( isNew ) //没有重复进程时 + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new mainForm()); + } + else + { + MessageBox.Show("本程序已经在运行中!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Warning); + } + //_mutex.ReleaseMutex(); + } + } +} diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..1220fab --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的一般信息由以下 +// 控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("AliDDNS")] +[assembly: AssemblyDescription("通过AliDNS API自动更新域名解析,实现动态域名服务")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("https://github.com/wisdomwei201804/AliDDNS")] +[assembly: AssemblyProduct("AliDDNS")] +[assembly: AssemblyCopyright("https://github.com/wisdomwei201804/AliDDNS")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +//将 ComVisible 设置为 false 将使此程序集中的类型 +//对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, +//请将此类型的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("018bab83-ca31-4bde-bc01-eec283ceabea")] + +// 程序集的版本信息由下列四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, +// 方法是按如下所示使用“*”: : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("3.7.1.0")] +[assembly: AssemblyFileVersion("3.7.1.0")] diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.Designer.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.Designer.cs new file mode 100644 index 0000000..32d4ff6 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace net.nutcore.aliddns.Properties { + using System; + + + /// + /// 一个强类型的资源类,用于查找本地化的字符串等。 + /// + // 此类是由 StronglyTypedResourceBuilder + // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 + // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen + // (以 /str 作为命令选项),或重新生成 VS 项目。 + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// 返回此类使用的缓存的 ResourceManager 实例。 + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("net.nutcore.aliddns.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 使用此强类型资源类,为所有资源查找 + /// 重写当前线程的 CurrentUICulture 属性。 + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// 查找类似于 (Icon) 的 System.Drawing.Icon 类型的本地化资源。 + /// + internal static System.Drawing.Icon alidns_gray { + get { + object obj = ResourceManager.GetObject("alidns_gray", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// 查找类似于 (Icon) 的 System.Drawing.Icon 类型的本地化资源。 + /// + internal static System.Drawing.Icon alidns_green { + get { + object obj = ResourceManager.GetObject("alidns_green", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// 查找类似于 (Icon) 的 System.Drawing.Icon 类型的本地化资源。 + /// + internal static System.Drawing.Icon alidns_red { + get { + object obj = ResourceManager.GetObject("alidns_red", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// 查找类似于 (Icon) 的 System.Drawing.Icon 类型的本地化资源。 + /// + internal static System.Drawing.Icon alidns_yellow { + get { + object obj = ResourceManager.GetObject("alidns_yellow", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + } +} diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.resx b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.resx new file mode 100644 index 0000000..ca88d8c --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Resources.resx @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\alidns_gray.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\alidns_green.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\alidns_red.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\alidns_yellow.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs new file mode 100644 index 0000000..5b41329 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace net.nutcore.aliddns.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.settings b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_gray.ico b/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_gray.ico new file mode 100644 index 0000000000000000000000000000000000000000..2b680bb95de61cf1803efd4740bbf11e077e7e3e GIT binary patch literal 4286 zcmcJT*-uqh6o-##)jsyA4{h4mCT;rA*rqS-i-~E{^xtTcw&`2bM^pq2&I&j{!XyNd zfJPzoL8V}T7!#r(B7;&U2ap+Lo>zb0s@GgDTrOg}&Br}wpMCak?Y)L`jzO?R|90#M z_!|_x8wBqKLGZaySFl^qzmb-hn7CbhEOv_@MUp5JEuvS9ifOSZEP`d7&xvu-FWN<= zND;q@AH-+kok&~Mw?%v@GQ{6vOw0@BjMUl8`GV$|5M3fqd@Z(w?9lO7f;Dbt?#&@-750MX6AX5dorcDO?)I;UspdNA;H3V-TO5jKYt>2iD40QE$GF^$GdJ)Qj#4$ zeAwZbYy0-?v;F(`$DHS-7BTjn_(KqD>)yw_=w)YTTUAw+J$(4ky1KfYwzf9AefzfM z<>lF-Lxuc^~Ny|pxe~cWW&S5_Tt40hvT84AsZVTv+?n98yOj~_V#wW zaN&aQ!v<_1zpJ9@bN_(@2duQT)cX7TZDL}=b*C$V&v}ezr`ChO`><4yW z1N!UOK-_n)rO!QCSy?tPFkn+tQ&wABYpJQJuFt-+?qkP}+41AY4SnJPzi`j>>(|{M zoEH`rdd#k+p+0IVwQ^Og5YrDHJg~XBIeYr_sj=R&vNB&Adx1Z&4W2)L?)@_}Gj{9N zEw`b$x!GoCXYKLh$8KkoJs<~Qg+8&Kk&)s1j(*6m90U6Jgna+0%kd3o8cUcKtEhn+x8N>5Ms zeZd!}PMxxploYF}sd4?Do*p}LcmMu<@4IyAlEuZv zdF)g3_UzeX>;W-9I5_ArNk93CKkyMTimk7!Us6)y`mB+hr&U%~dOa#AC@?sG{=5|z z7rU>CN9rUtQxEZB41Ho?g^ zH*VbUzTVzmJ9_kJwDnI$>J$H=d&w#6M-OQ1GyZ99ZS|T&{b$`FTlfvtWX9jUd)I4W zq>j#czZr?_N1vFZe$dDv_JQXP@l1U4oFPs_P=jg2Ej57rq_Hpf2>(Uu=$!X8YS5}{ z%uC+T$nWIjWRGdqP98??XJ{;OK&*Fncl*6D>JRUVyeF>GPf)C~2gEatHIrk^hfmI( zJNN1thu)JXPkf(v_SM(dyD!+c(6ewY4fRob>!Muqcqu9>a(`n3K4$H-%a<>E4w8G+ zBK8HnzP>(>6XKp2B9^1guYTTv$^|}%_Fiq+Ks^g@te4tAEub!iVv{l0a_!nRj}7)w zb4Q~>*Rll9!688|QWIB<5BUNgQ(wciLN*ceo8VXRjTjJo+wd${wSM)znv1yszfz|G zyI3pz{DzNT=a|_4Uc4`O2jcq#n>Kp?n~v*{)~Diakr}4T`v0r%uJvrpmCp8;-#}mJ zIP@M!9>ny6#;iAYtZRJh`S%z4G@b7h*hDT+lUF^L)fa2twXU<5tY=U(i5#)>U)7a= z)xS-AD0Ye8MS-Xi>`j;G6TGjHC(MbBz%kD;zN2~sHML&+C9=gY;#={7*cz_d9R%AG U^I91poj5 literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_green.ico b/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_green.ico new file mode 100644 index 0000000000000000000000000000000000000000..5905178fc8b1ed4d89a3c70a8eae1d6216d43312 GIT binary patch literal 4286 zcmchbS!@+m7{^beP#=BrL8CzvjSmKmFZzO36w$b&#u(Iqf*~O;xFs4*a7&0rcru29 zQ4yE;pb?`ch_NCjY80i^g0#>Awk)L!ZGjf3$KS7WC%w#N?!8pxBmdr+GiT2K+s_$7 zsNvtFNx{G2<1<4zD}-<{U?|i9$E%TP8$&HPAJl;bLdTd)Mo1Jl7p;Eb#;jMack!BWry`oLk}npvLl+#g|`0ni5C1($=GR1dB%1KK#A zwa4?$7CGhTcLG>(3b|8#>*1UT&I6lHl>fTM5Q}l5?=#;xUjU|nZjkDg`zzm6a6NNx z`!mG5nnS!B+|KoM#(Z`ysAetZm}67H0${F{eb068fal4rA%3(s#Gm^^Y#a=6tAL_C5jc5Bo#x7!I+VtVfrH+e5s8cdF3A`fkYM z_kGt{@^^^ahsJojkA%3UH^j%$X?|;n^}9mcRiu~KEB1tVOH)N1zJR+ik6*hN!@aw( z_B!lW_QC%wzP@Thh;`teO(AYRm^@osnA5|YmFRF|c|VxTs)uzs636uHMVGfa zEAD-+y#_3+#IKLd$JDQ-{umqaT;v{TPUOVA*dL4Go&!pHa8@T{Xiln!eqBp{unztp zFU)y+lKJ78qfESux&0=17+eANX8H2&U0Yap_G#g@wmM#g&8ZIN{xonl$UOt)>2VUq zx3b2C;B-)b64p!Ys`mFCIBN^vK$mcRDt+L$-styN(Kp~^#?;9(p*^`|UuLXY+luGe zL|Q+AM-n^1K3m7gKxlc hFc(}2&H)pOIom_1UC4hCh~n}8^IEQk5Ke1{`(Hx2KIs4e literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_red.ico b/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_red.ico new file mode 100644 index 0000000000000000000000000000000000000000..06bc644769a67f266a707ce33b2f984cfd25d3af GIT binary patch literal 4286 zcmciGTZmOv7{Kv8l#P!)^-vTl6g`AVFZm*fkW=Y#48==EYF?T$3X3!g(xi(-X{0Y| zsYIz2zNmqCNwLI06B|rpO6HV}&8VZ3_xtYu@9Y(4&OT?)%z>u(b@o|%?e%?Yt#9wy zrzoo7-+uif{~N8pJ&Nv#qUe6m6b*&#-TEgN*G9RxKZaro-o{28#&Mj%MO;T*;wIm( z;4Iqk8+Kp`8c>J(&^MJ!F0P^dK`h6w=)hGtW@(&izF%XUb7;mIJcOG6^2o)5`0gC5 z8M~Tmnus;%-}t$>567SNV(gIb3S!=ddvK)3@kg>&#d^MW?(+Z)L3_928}D(9!Z=Jy zjOVi+o*RMgm0nlcU6q<^^UU)f8Y#^eHuG42QOn4jBO6~X~SBKMRpFG zh}~E*zVluR$LqjeG{QLZQHMwIG@9UAxJD;o9_x_34%U6XY<%;66~}NE-(V(;{}<+B zGNxi0tOwV|`fxqWQHx+ba#L^-nIJ4(2QqbO?(C8AH|cfZ#swcvu6zboP)7Gg0Z|8cEYv~FdW8J9U9;s{R#Km zYv#cHuwJL2n)u7O&ateC5Pv<#Z@_(h4{ySp+-u`IS97us-NWqo)$wPd*yftvNRIt}GimeK8t^`G{nx;@?DapNitk)kCD&fyvlYe*G2LhP=LhV?es~|6 zM{tT`Yti`5!8w)Av+#a%I@NCcS!jpXpTicc!*zHsjK}CAt2wr>`D{R2^8G5G3sL_5 z^L@={P&&6KXxjnDbgTwUhc)J0pF*f7YcuqHpW}(}@1oZp#w3Kkon!f~=zC&1zWrST z>&bB%@d}Q>J$VtXll@!^pL5oqb2S(D!F5{z`<07Pc=rBS;ap*CYuq`TgSj|&kC(uE zuny0|KF0SMWu5rkvWDtWKDOuOCG#|klBZ|}W*mqcpq37-iKep z`WTDK`yJ-(r@ski;$fUX@wv*!jxG0fOv3xn{A}-f&S7k8{}J4Y%I`qk&8z4AjuQ7? z+=>+ldG*%kYGT$Vzkwd$xHs3p-+G1LU*Sh!E*?mmIr&cLGdcZtxw~x25{K|9 z28OVmJ`2Cc?&kauyoAr;`?+h=j8^!*<~x&Pnxj1S@0h=%THrJF0Jh;1%)nsWg+9eG Z^HEg0fd56H;`aaZ*jT%w=$1UO{{e=`Vsiih literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_yellow.ico b/net.nutcore.aliddns/net.nutcore.aliddns/Resources/alidns_yellow.ico new file mode 100644 index 0000000000000000000000000000000000000000..f3cce76d3a5c1b0c816c7fb2420d03f2ae3f9272 GIT binary patch literal 4286 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 U^I91poj5 literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/alidns_green.ico b/net.nutcore.aliddns/net.nutcore.aliddns/alidns_green.ico new file mode 100644 index 0000000000000000000000000000000000000000..5905178fc8b1ed4d89a3c70a8eae1d6216d43312 GIT binary patch literal 4286 zcmchbS!@+m7{^beP#=BrL8CzvjSmKmFZzO36w$b&#u(Iqf*~O;xFs4*a7&0rcru29 zQ4yE;pb?`ch_NCjY80i^g0#>Awk)L!ZGjf3$KS7WC%w#N?!8pxBmdr+GiT2K+s_$7 zsNvtFNx{G2<1<4zD}-<{U?|i9$E%TP8$&HPAJl;bLdTd)Mo1Jl7p;Eb#;jMack!BWry`oLk}npvLl+#g|`0ni5C1($=GR1dB%1KK#A zwa4?$7CGhTcLG>(3b|8#>*1UT&I6lHl>fTM5Q}l5?=#;xUjU|nZjkDg`zzm6a6NNx z`!mG5nnS!B+|KoM#(Z`ysAetZm}67H0${F{eb068fal4rA%3(s#Gm^^Y#a=6tAL_C5jc5Bo#x7!I+VtVfrH+e5s8cdF3A`fkYM z_kGt{@^^^ahsJojkA%3UH^j%$X?|;n^}9mcRiu~KEB1tVOH)N1zJR+ik6*hN!@aw( z_B!lW_QC%wzP@Thh;`teO(AYRm^@osnA5|YmFRF|c|VxTs)uzs636uHMVGfa zEAD-+y#_3+#IKLd$JDQ-{umqaT;v{TPUOVA*dL4Go&!pHa8@T{Xiln!eqBp{unztp zFU)y+lKJ78qfESux&0=17+eANX8H2&U0Yap_G#g@wmM#g&8ZIN{xonl$UOt)>2VUq zx3b2C;B-)b64p!Ys`mFCIBN^vK$mcRDt+L$-styN(Kp~^#?;9(p*^`|UuLXY+luGe zL|Q+AM-n^1K3m7gKxlc hFc(}2&H)pOIom_1UC4hCh~n}8^IEQk5Ke1{`(Hx2KIs4e literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/alidns_red.ico b/net.nutcore.aliddns/net.nutcore.aliddns/alidns_red.ico new file mode 100644 index 0000000000000000000000000000000000000000..06bc644769a67f266a707ce33b2f984cfd25d3af GIT binary patch literal 4286 zcmciGTZmOv7{Kv8l#P!)^-vTl6g`AVFZm*fkW=Y#48==EYF?T$3X3!g(xi(-X{0Y| zsYIz2zNmqCNwLI06B|rpO6HV}&8VZ3_xtYu@9Y(4&OT?)%z>u(b@o|%?e%?Yt#9wy zrzoo7-+uif{~N8pJ&Nv#qUe6m6b*&#-TEgN*G9RxKZaro-o{28#&Mj%MO;T*;wIm( z;4Iqk8+Kp`8c>J(&^MJ!F0P^dK`h6w=)hGtW@(&izF%XUb7;mIJcOG6^2o)5`0gC5 z8M~Tmnus;%-}t$>567SNV(gIb3S!=ddvK)3@kg>&#d^MW?(+Z)L3_928}D(9!Z=Jy zjOVi+o*RMgm0nlcU6q<^^UU)f8Y#^eHuG42QOn4jBO6~X~SBKMRpFG zh}~E*zVluR$LqjeG{QLZQHMwIG@9UAxJD;o9_x_34%U6XY<%;66~}NE-(V(;{}<+B zGNxi0tOwV|`fxqWQHx+ba#L^-nIJ4(2QqbO?(C8AH|cfZ#swcvu6zboP)7Gg0Z|8cEYv~FdW8J9U9;s{R#Km zYv#cHuwJL2n)u7O&ateC5Pv<#Z@_(h4{ySp+-u`IS97us-NWqo)$wPd*yftvNRIt}GimeK8t^`G{nx;@?DapNitk)kCD&fyvlYe*G2LhP=LhV?es~|6 zM{tT`Yti`5!8w)Av+#a%I@NCcS!jpXpTicc!*zHsjK}CAt2wr>`D{R2^8G5G3sL_5 z^L@={P&&6KXxjnDbgTwUhc)J0pF*f7YcuqHpW}(}@1oZp#w3Kkon!f~=zC&1zWrST z>&bB%@d}Q>J$VtXll@!^pL5oqb2S(D!F5{z`<07Pc=rBS;ap*CYuq`TgSj|&kC(uE zuny0|KF0SMWu5rkvWDtWKDOuOCG#|klBZ|}W*mqcpq37-iKep z`WTDK`yJ-(r@ski;$fUX@wv*!jxG0fOv3xn{A}-f&S7k8{}J4Y%I`qk&8z4AjuQ7? z+=>+ldG*%kYGT$Vzkwd$xHs3p-+G1LU*Sh!E*?mmIr&cLGdcZtxw~x25{K|9 z28OVmJ`2Cc?&kauyoAr;`?+h=j8^!*<~x&Pnxj1S@0h=%THrJF0Jh;1%)nsWg+9eG Z^HEg0fd56H;`aaZ*jT%w=$1UO{{e=`Vsiih literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/alidns_yellow.ico b/net.nutcore.aliddns/net.nutcore.aliddns/alidns_yellow.ico new file mode 100644 index 0000000000000000000000000000000000000000..f3cce76d3a5c1b0c816c7fb2420d03f2ae3f9272 GIT binary patch literal 4286 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 G!2b(au7mdg literal 0 HcmV?d00001 diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/main.Designer.cs b/net.nutcore.aliddns/net.nutcore.aliddns/main.Designer.cs new file mode 100644 index 0000000..05bc34e --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/main.Designer.cs @@ -0,0 +1,661 @@ +namespace net.nutcore.aliddns +{ + partial class mainForm + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows 窗体设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainForm)); + this.timeSetGroup = new System.Windows.Forms.GroupBox(); + this.checkBox_logAutoSave = new System.Windows.Forms.CheckBox(); + this.checkBox_minimized = new System.Windows.Forms.CheckBox(); + this.checkBox_autoUpdate = new System.Windows.Forms.CheckBox(); + this.checkBox_autoBoot = new System.Windows.Forms.CheckBox(); + this.label3 = new System.Windows.Forms.Label(); + this.label_nextUpdateSeconds = new System.Windows.Forms.Label(); + this.updateNow = new System.Windows.Forms.Button(); + this.debugMessage = new System.Windows.Forms.GroupBox(); + this.recordId = new System.Windows.Forms.TextBox(); + this.globalValue = new System.Windows.Forms.Label(); + this.globalDomainType = new System.Windows.Forms.Label(); + this.label12 = new System.Windows.Forms.Label(); + this.label11 = new System.Windows.Forms.Label(); + this.globalRR = new System.Windows.Forms.Label(); + this.label10 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.globalSetGroup = new System.Windows.Forms.GroupBox(); + this.button_ShowHide = new System.Windows.Forms.Button(); + this.checkAndSaveConfig = new System.Windows.Forms.Button(); + this.label8 = new System.Windows.Forms.Label(); + this.newSeconds = new System.Windows.Forms.TextBox(); + this.label7 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.fullDomainName = new System.Windows.Forms.TextBox(); + this.accessKeySecret = new System.Windows.Forms.TextBox(); + this.label5 = new System.Windows.Forms.Label(); + this.accessKeyId = new System.Windows.Forms.TextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.autoUpdateTimer = new System.Windows.Forms.Timer(this.components); + this.notifyIcon_sysTray = new System.Windows.Forms.NotifyIcon(this.components); + this.contextMenuStrip_sysTrayMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.toolStripMenuItem_Exit = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem_About = new System.Windows.Forms.ToolStripMenuItem(); + this.textBox_log = new System.Windows.Forms.TextBox(); + this.groupBox_netstate = new System.Windows.Forms.GroupBox(); + this.label_DomainIpStatus = new System.Windows.Forms.Label(); + this.label_localIpStatus = new System.Windows.Forms.Label(); + this.domainIP = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.localIP = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.groupBox_setWanIp = new System.Windows.Forms.GroupBox(); + this.maskedTextBox_setIP = new System.Windows.Forms.MaskedTextBox(); + this.button_setIP = new System.Windows.Forms.Button(); + this.comboBox_whatIsUrl = new System.Windows.Forms.ComboBox(); + this.button_whatIsTest = new System.Windows.Forms.Button(); + this.label14 = new System.Windows.Forms.Label(); + this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); + this.timeSetGroup.SuspendLayout(); + this.debugMessage.SuspendLayout(); + this.globalSetGroup.SuspendLayout(); + this.contextMenuStrip_sysTrayMenu.SuspendLayout(); + this.groupBox_netstate.SuspendLayout(); + this.groupBox_setWanIp.SuspendLayout(); + this.SuspendLayout(); + // + // timeSetGroup + // + this.timeSetGroup.Controls.Add(this.checkBox_logAutoSave); + this.timeSetGroup.Controls.Add(this.checkBox_minimized); + this.timeSetGroup.Controls.Add(this.checkBox_autoUpdate); + this.timeSetGroup.Controls.Add(this.checkBox_autoBoot); + this.timeSetGroup.Controls.Add(this.label3); + this.timeSetGroup.Controls.Add(this.label_nextUpdateSeconds); + this.timeSetGroup.Controls.Add(this.updateNow); + this.timeSetGroup.Location = new System.Drawing.Point(12, 185); + this.timeSetGroup.Name = "timeSetGroup"; + this.timeSetGroup.Size = new System.Drawing.Size(201, 123); + this.timeSetGroup.TabIndex = 4; + this.timeSetGroup.TabStop = false; + this.timeSetGroup.Text = "其它设置"; + // + // checkBox_logAutoSave + // + this.checkBox_logAutoSave.AutoSize = true; + this.checkBox_logAutoSave.Location = new System.Drawing.Point(8, 45); + this.checkBox_logAutoSave.Name = "checkBox_logAutoSave"; + this.checkBox_logAutoSave.Size = new System.Drawing.Size(96, 16); + this.checkBox_logAutoSave.TabIndex = 8; + this.checkBox_logAutoSave.Text = "日志自动转储"; + this.checkBox_logAutoSave.UseVisualStyleBackColor = true; + this.checkBox_logAutoSave.CheckedChanged += new System.EventHandler(this.checkBox_logAutoSave_CheckedChanged); + // + // checkBox_minimized + // + this.checkBox_minimized.AutoSize = true; + this.checkBox_minimized.Location = new System.Drawing.Point(98, 21); + this.checkBox_minimized.Name = "checkBox_minimized"; + this.checkBox_minimized.Size = new System.Drawing.Size(96, 16); + this.checkBox_minimized.TabIndex = 7; + this.checkBox_minimized.Text = "启动时最小化"; + this.checkBox_minimized.UseVisualStyleBackColor = true; + this.checkBox_minimized.CheckedChanged += new System.EventHandler(this.checkBox_minimized_CheckedChanged); + // + // checkBox_autoUpdate + // + this.checkBox_autoUpdate.AutoSize = true; + this.checkBox_autoUpdate.Checked = true; + this.checkBox_autoUpdate.CheckState = System.Windows.Forms.CheckState.Checked; + this.checkBox_autoUpdate.Location = new System.Drawing.Point(8, 71); + this.checkBox_autoUpdate.Name = "checkBox_autoUpdate"; + this.checkBox_autoUpdate.Size = new System.Drawing.Size(72, 16); + this.checkBox_autoUpdate.TabIndex = 6; + this.checkBox_autoUpdate.Text = "自动更新"; + this.checkBox_autoUpdate.UseVisualStyleBackColor = true; + this.checkBox_autoUpdate.CheckedChanged += new System.EventHandler(this.checkBox_autoUpdate_CheckedChanged); + // + // checkBox_autoBoot + // + this.checkBox_autoBoot.AutoSize = true; + this.checkBox_autoBoot.Location = new System.Drawing.Point(8, 21); + this.checkBox_autoBoot.Name = "checkBox_autoBoot"; + this.checkBox_autoBoot.Size = new System.Drawing.Size(84, 16); + this.checkBox_autoBoot.TabIndex = 5; + this.checkBox_autoBoot.Text = "随系统启动"; + this.checkBox_autoBoot.UseVisualStyleBackColor = true; + this.checkBox_autoBoot.CheckedChanged += new System.EventHandler(this.checkBox_autoBoot_CheckedChanged); + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(117, 72); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(77, 12); + this.label3.TabIndex = 4; + this.label3.Text = "秒后更新记录"; + // + // label_nextUpdateSeconds + // + this.label_nextUpdateSeconds.AutoSize = true; + this.label_nextUpdateSeconds.ForeColor = System.Drawing.Color.Red; + this.label_nextUpdateSeconds.Location = new System.Drawing.Point(97, 72); + this.label_nextUpdateSeconds.Name = "label_nextUpdateSeconds"; + this.label_nextUpdateSeconds.Size = new System.Drawing.Size(17, 12); + this.label_nextUpdateSeconds.TabIndex = 3; + this.label_nextUpdateSeconds.Text = "60"; + // + // updateNow + // + this.updateNow.Location = new System.Drawing.Point(6, 94); + this.updateNow.Name = "updateNow"; + this.updateNow.Size = new System.Drawing.Size(185, 23); + this.updateNow.TabIndex = 2; + this.updateNow.Text = "立即更新"; + this.updateNow.UseVisualStyleBackColor = true; + this.updateNow.Click += new System.EventHandler(this.updateNow_Click); + // + // debugMessage + // + this.debugMessage.Controls.Add(this.recordId); + this.debugMessage.Controls.Add(this.globalValue); + this.debugMessage.Controls.Add(this.globalDomainType); + this.debugMessage.Controls.Add(this.label12); + this.debugMessage.Controls.Add(this.label11); + this.debugMessage.Controls.Add(this.globalRR); + this.debugMessage.Controls.Add(this.label10); + this.debugMessage.Controls.Add(this.label9); + this.debugMessage.Location = new System.Drawing.Point(219, 47); + this.debugMessage.Name = "debugMessage"; + this.debugMessage.Size = new System.Drawing.Size(206, 79); + this.debugMessage.TabIndex = 5; + this.debugMessage.TabStop = false; + this.debugMessage.Text = "调试信息"; + // + // recordId + // + this.recordId.Location = new System.Drawing.Point(68, 18); + this.recordId.Name = "recordId"; + this.recordId.Size = new System.Drawing.Size(116, 21); + this.recordId.TabIndex = 8; + this.recordId.Text = ""; + // + // globalValue + // + this.globalValue.AutoSize = true; + this.globalValue.Location = new System.Drawing.Point(47, 60); + this.globalValue.Name = "globalValue"; + this.globalValue.Size = new System.Drawing.Size(41, 12); + this.globalValue.TabIndex = 7; + this.globalValue.Text = ""; + // + // globalDomainType + // + this.globalDomainType.AutoSize = true; + this.globalDomainType.Location = new System.Drawing.Point(110, 42); + this.globalDomainType.Name = "globalDomainType"; + this.globalDomainType.Size = new System.Drawing.Size(41, 12); + this.globalDomainType.TabIndex = 6; + this.globalDomainType.Text = ""; + // + // label12 + // + this.label12.AutoSize = true; + this.label12.Location = new System.Drawing.Point(8, 59); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(41, 12); + this.label12.TabIndex = 5; + this.label12.Text = "Value:"; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Location = new System.Drawing.Point(77, 41); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(35, 12); + this.label11.TabIndex = 4; + this.label11.Text = "Type:"; + // + // globalRR + // + this.globalRR.AutoSize = true; + this.globalRR.Location = new System.Drawing.Point(28, 41); + this.globalRR.Name = "globalRR"; + this.globalRR.Size = new System.Drawing.Size(41, 12); + this.globalRR.TabIndex = 3; + this.globalRR.Text = ""; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Location = new System.Drawing.Point(7, 41); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(23, 12); + this.label10.TabIndex = 2; + this.label10.Text = "RR:"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Location = new System.Drawing.Point(7, 21); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(53, 12); + this.label9.TabIndex = 0; + this.label9.Text = "RecordId"; + // + // globalSetGroup + // + this.globalSetGroup.Controls.Add(this.button_ShowHide); + this.globalSetGroup.Controls.Add(this.checkAndSaveConfig); + this.globalSetGroup.Controls.Add(this.label8); + this.globalSetGroup.Controls.Add(this.newSeconds); + this.globalSetGroup.Controls.Add(this.label7); + this.globalSetGroup.Controls.Add(this.label6); + this.globalSetGroup.Controls.Add(this.fullDomainName); + this.globalSetGroup.Controls.Add(this.accessKeySecret); + this.globalSetGroup.Controls.Add(this.label5); + this.globalSetGroup.Controls.Add(this.accessKeyId); + this.globalSetGroup.Controls.Add(this.label4); + this.globalSetGroup.Location = new System.Drawing.Point(219, 132); + this.globalSetGroup.Name = "globalSetGroup"; + this.globalSetGroup.Size = new System.Drawing.Size(206, 176); + this.globalSetGroup.TabIndex = 6; + this.globalSetGroup.TabStop = false; + this.globalSetGroup.Text = "设置"; + // + // button_ShowHide + // + this.button_ShowHide.Location = new System.Drawing.Point(106, 147); + this.button_ShowHide.Name = "button_ShowHide"; + this.button_ShowHide.Size = new System.Drawing.Size(91, 23); + this.button_ShowHide.TabIndex = 14; + this.button_ShowHide.Text = "显示录入"; + this.button_ShowHide.UseVisualStyleBackColor = true; + this.button_ShowHide.Click += new System.EventHandler(this.button_ShowHide_Click); + // + // checkAndSaveConfig + // + this.checkAndSaveConfig.Location = new System.Drawing.Point(8, 147); + this.checkAndSaveConfig.Name = "checkAndSaveConfig"; + this.checkAndSaveConfig.Size = new System.Drawing.Size(93, 23); + this.checkAndSaveConfig.TabIndex = 10; + this.checkAndSaveConfig.Text = "测试并保存"; + this.checkAndSaveConfig.UseVisualStyleBackColor = true; + this.checkAndSaveConfig.Click += new System.EventHandler(this.checkConfig_Click); + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Location = new System.Drawing.Point(107, 125); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(65, 12); + this.label8.TabIndex = 8; + this.label8.Text = "秒更新一次"; + // + // newSeconds + // + this.newSeconds.Location = new System.Drawing.Point(41, 122); + this.newSeconds.Name = "newSeconds"; + this.newSeconds.Size = new System.Drawing.Size(60, 21); + this.newSeconds.TabIndex = 7; + this.newSeconds.Text = "60"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Location = new System.Drawing.Point(6, 125); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(29, 12); + this.label7.TabIndex = 6; + this.label7.Text = "每隔"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Location = new System.Drawing.Point(6, 98); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(53, 12); + this.label6.TabIndex = 5; + this.label6.Text = "完整域名"; + // + // fullDomainName + // + this.fullDomainName.Location = new System.Drawing.Point(65, 95); + this.fullDomainName.Name = "fullDomainName"; + this.fullDomainName.Size = new System.Drawing.Size(135, 21); + this.fullDomainName.TabIndex = 4; + this.fullDomainName.Text = "www.xxx.com"; + this.fullDomainName.ModifiedChanged += new System.EventHandler(this.fullDomainName_ModifiedChanged); + // + // accessKeySecret + // + this.accessKeySecret.Location = new System.Drawing.Point(8, 68); + this.accessKeySecret.Name = "accessKeySecret"; + this.accessKeySecret.PasswordChar = '*'; + this.accessKeySecret.Size = new System.Drawing.Size(192, 21); + this.accessKeySecret.TabIndex = 3; + this.accessKeySecret.Text = "null"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(6, 53); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(95, 12); + this.label5.TabIndex = 2; + this.label5.Text = "accessKeySecret"; + // + // accessKeyId + // + this.accessKeyId.Location = new System.Drawing.Point(8, 29); + this.accessKeyId.Name = "accessKeyId"; + this.accessKeyId.PasswordChar = '*'; + this.accessKeyId.Size = new System.Drawing.Size(192, 21); + this.accessKeyId.TabIndex = 1; + this.accessKeyId.Text = "null"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(6, 14); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(71, 12); + this.label4.TabIndex = 0; + this.label4.Text = "accessKeyId"; + // + // autoUpdateTimer + // + this.autoUpdateTimer.Enabled = true; + this.autoUpdateTimer.Interval = 1000; + this.autoUpdateTimer.Tick += new System.EventHandler(this.autoUpdateTimer_Tick); + // + // notifyIcon_sysTray + // + this.notifyIcon_sysTray.ContextMenuStrip = this.contextMenuStrip_sysTrayMenu; + this.notifyIcon_sysTray.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon_sysTray.Icon"))); + this.notifyIcon_sysTray.Text = "AliDDNS Tray"; + this.notifyIcon_sysTray.Visible = true; + this.notifyIcon_sysTray.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_sysTray_MouseDoubleClick); + // + // contextMenuStrip_sysTrayMenu + // + this.contextMenuStrip_sysTrayMenu.ImageScalingSize = new System.Drawing.Size(24, 24); + this.contextMenuStrip_sysTrayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripMenuItem_Exit, + this.ToolStripMenuItem_About}); + this.contextMenuStrip_sysTrayMenu.Name = "contextMenuStrip1"; + this.contextMenuStrip_sysTrayMenu.Size = new System.Drawing.Size(101, 48); + // + // toolStripMenuItem_Exit + // + this.toolStripMenuItem_Exit.Name = "toolStripMenuItem_Exit"; + this.toolStripMenuItem_Exit.Size = new System.Drawing.Size(100, 22); + this.toolStripMenuItem_Exit.Text = "退出"; + this.toolStripMenuItem_Exit.Click += new System.EventHandler(this.toolStripMenuItem1_Click); + // + // ToolStripMenuItem_About + // + this.ToolStripMenuItem_About.Name = "ToolStripMenuItem_About"; + this.ToolStripMenuItem_About.Size = new System.Drawing.Size(100, 22); + this.ToolStripMenuItem_About.Text = "关于"; + this.ToolStripMenuItem_About.Click += new System.EventHandler(this.ToolStripMenuItem_About_Click); + // + // textBox_log + // + this.textBox_log.Location = new System.Drawing.Point(12, 314); + this.textBox_log.Multiline = true; + this.textBox_log.Name = "textBox_log"; + this.textBox_log.ReadOnly = true; + this.textBox_log.ScrollBars = System.Windows.Forms.ScrollBars.Both; + this.textBox_log.Size = new System.Drawing.Size(413, 109); + this.textBox_log.TabIndex = 8; + // + // groupBox_netstate + // + this.groupBox_netstate.Controls.Add(this.label_DomainIpStatus); + this.groupBox_netstate.Controls.Add(this.label_localIpStatus); + this.groupBox_netstate.Controls.Add(this.domainIP); + this.groupBox_netstate.Controls.Add(this.label2); + this.groupBox_netstate.Controls.Add(this.localIP); + this.groupBox_netstate.Controls.Add(this.label1); + this.groupBox_netstate.Location = new System.Drawing.Point(12, 3); + this.groupBox_netstate.Name = "groupBox_netstate"; + this.groupBox_netstate.Size = new System.Drawing.Size(413, 38); + this.groupBox_netstate.TabIndex = 9; + this.groupBox_netstate.TabStop = false; + this.groupBox_netstate.Text = "网络状态"; + // + // label_DomainIpStatus + // + this.label_DomainIpStatus.AutoSize = true; + this.label_DomainIpStatus.ForeColor = System.Drawing.Color.Red; + this.label_DomainIpStatus.Location = new System.Drawing.Point(364, 19); + this.label_DomainIpStatus.Name = "label_DomainIpStatus"; + this.label_DomainIpStatus.Size = new System.Drawing.Size(41, 12); + this.label_DomainIpStatus.TabIndex = 9; + this.label_DomainIpStatus.Text = "未绑定"; + // + // label_localIpStatus + // + this.label_localIpStatus.AutoSize = true; + this.label_localIpStatus.ForeColor = System.Drawing.Color.Red; + this.label_localIpStatus.Location = new System.Drawing.Point(156, 19); + this.label_localIpStatus.Name = "label_localIpStatus"; + this.label_localIpStatus.Size = new System.Drawing.Size(41, 12); + this.label_localIpStatus.TabIndex = 8; + this.label_localIpStatus.Text = "未连接"; + // + // domainIP + // + this.domainIP.AutoSize = true; + this.domainIP.Location = new System.Drawing.Point(259, 19); + this.domainIP.Name = "domainIP"; + this.domainIP.Size = new System.Drawing.Size(47, 12); + this.domainIP.TabIndex = 7; + this.domainIP.Text = "0.0.0.0"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(213, 19); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(47, 12); + this.label2.TabIndex = 6; + this.label2.Text = "域名IP:"; + // + // localIP + // + this.localIP.AutoSize = true; + this.localIP.Location = new System.Drawing.Point(57, 19); + this.localIP.Name = "localIP"; + this.localIP.Size = new System.Drawing.Size(47, 12); + this.localIP.TabIndex = 5; + this.localIP.Text = "0.0.0.0"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(5, 19); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(53, 12); + this.label1.TabIndex = 4; + this.label1.Text = "WAN口IP:"; + // + // groupBox_setWanIp + // + this.groupBox_setWanIp.Controls.Add(this.maskedTextBox_setIP); + this.groupBox_setWanIp.Controls.Add(this.button_setIP); + this.groupBox_setWanIp.Controls.Add(this.comboBox_whatIsUrl); + this.groupBox_setWanIp.Controls.Add(this.button_whatIsTest); + this.groupBox_setWanIp.Controls.Add(this.label14); + this.groupBox_setWanIp.Location = new System.Drawing.Point(12, 47); + this.groupBox_setWanIp.Name = "groupBox_setWanIp"; + this.groupBox_setWanIp.Size = new System.Drawing.Size(201, 135); + this.groupBox_setWanIp.TabIndex = 10; + this.groupBox_setWanIp.TabStop = false; + this.groupBox_setWanIp.Text = "WAN口IP设置"; + // + // maskedTextBox_setIP + // + this.maskedTextBox_setIP.Location = new System.Drawing.Point(7, 100); + this.maskedTextBox_setIP.Mask = "000.000.000.000"; + this.maskedTextBox_setIP.Name = "maskedTextBox_setIP"; + this.maskedTextBox_setIP.PromptChar = ' '; + this.maskedTextBox_setIP.Size = new System.Drawing.Size(106, 21); + this.maskedTextBox_setIP.TabIndex = 20; + // + // button_setIP + // + this.button_setIP.Location = new System.Drawing.Point(119, 99); + this.button_setIP.Name = "button_setIP"; + this.button_setIP.Size = new System.Drawing.Size(76, 23); + this.button_setIP.TabIndex = 19; + this.button_setIP.Text = "手工指定IP"; + this.button_setIP.UseVisualStyleBackColor = true; + this.button_setIP.Click += new System.EventHandler(this.button_setIP_Click); + // + // comboBox_whatIsUrl + // + this.comboBox_whatIsUrl.FormattingEnabled = true; + this.comboBox_whatIsUrl.Items.AddRange(new object[] { + "http://whatismyip.akamai.com/", + "http://www.net.cn/static/customercare/yourip.asp"}); + this.comboBox_whatIsUrl.Location = new System.Drawing.Point(6, 41); + this.comboBox_whatIsUrl.Name = "comboBox_whatIsUrl"; + this.comboBox_whatIsUrl.Size = new System.Drawing.Size(189, 20); + this.comboBox_whatIsUrl.TabIndex = 18; + this.comboBox_whatIsUrl.Text = "http://whatismyip.akamai.com/"; + // + // button_whatIsTest + // + this.button_whatIsTest.Location = new System.Drawing.Point(6, 66); + this.button_whatIsTest.Name = "button_whatIsTest"; + this.button_whatIsTest.Size = new System.Drawing.Size(189, 23); + this.button_whatIsTest.TabIndex = 17; + this.button_whatIsTest.Text = "获取WAN口IP"; + this.button_whatIsTest.UseVisualStyleBackColor = true; + this.button_whatIsTest.Click += new System.EventHandler(this.button_whatIsTest_Click); + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Location = new System.Drawing.Point(7, 22); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(59, 12); + this.label14.TabIndex = 16; + this.label14.Text = "查询网址:"; + // + // notifyIcon1 + // + this.notifyIcon1.Text = "notifyIcon1"; + this.notifyIcon1.Visible = true; + // + // mainForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(437, 430); + this.Controls.Add(this.groupBox_setWanIp); + this.Controls.Add(this.groupBox_netstate); + this.Controls.Add(this.textBox_log); + this.Controls.Add(this.globalSetGroup); + this.Controls.Add(this.debugMessage); + this.Controls.Add(this.timeSetGroup); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "mainForm"; + this.Text = "AliDDNS"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.mainForm_FormClosing); + this.Load += new System.EventHandler(this.mainForm_Load); + this.timeSetGroup.ResumeLayout(false); + this.timeSetGroup.PerformLayout(); + this.debugMessage.ResumeLayout(false); + this.debugMessage.PerformLayout(); + this.globalSetGroup.ResumeLayout(false); + this.globalSetGroup.PerformLayout(); + this.contextMenuStrip_sysTrayMenu.ResumeLayout(false); + this.groupBox_netstate.ResumeLayout(false); + this.groupBox_netstate.PerformLayout(); + this.groupBox_setWanIp.ResumeLayout(false); + this.groupBox_setWanIp.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.GroupBox timeSetGroup; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label_nextUpdateSeconds; + private System.Windows.Forms.Button updateNow; + private System.Windows.Forms.GroupBox debugMessage; + private System.Windows.Forms.GroupBox globalSetGroup; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.TextBox newSeconds; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.TextBox fullDomainName; + private System.Windows.Forms.TextBox accessKeySecret; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.TextBox accessKeyId; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Timer autoUpdateTimer; + private System.Windows.Forms.Button checkAndSaveConfig; + private System.Windows.Forms.Label label9; + private System.Windows.Forms.Label label12; + private System.Windows.Forms.Label label11; + private System.Windows.Forms.Label globalRR; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.Label globalDomainType; + private System.Windows.Forms.Label globalValue; + private System.Windows.Forms.TextBox recordId; + private System.Windows.Forms.NotifyIcon notifyIcon_sysTray; + private System.Windows.Forms.ContextMenuStrip contextMenuStrip_sysTrayMenu; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_Exit; + private System.Windows.Forms.TextBox textBox_log; + private System.Windows.Forms.GroupBox groupBox_netstate; + private System.Windows.Forms.Label label_DomainIpStatus; + private System.Windows.Forms.Label label_localIpStatus; + private System.Windows.Forms.Label domainIP; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label localIP; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button button_ShowHide; + private System.Windows.Forms.CheckBox checkBox_autoBoot; + private System.Windows.Forms.CheckBox checkBox_autoUpdate; + private System.Windows.Forms.CheckBox checkBox_minimized; + private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_About; + private System.Windows.Forms.CheckBox checkBox_logAutoSave; + private System.Windows.Forms.GroupBox groupBox_setWanIp; + private System.Windows.Forms.ComboBox comboBox_whatIsUrl; + private System.Windows.Forms.Button button_whatIsTest; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Button button_setIP; + private System.Windows.Forms.MaskedTextBox maskedTextBox_setIP; + private System.Windows.Forms.NotifyIcon notifyIcon1; + } +} + diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/main.cs b/net.nutcore.aliddns/net.nutcore.aliddns/main.cs new file mode 100644 index 0000000..11f3f96 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/main.cs @@ -0,0 +1,715 @@ +using Aliyun.Acs.Alidns.Model.V20150109; +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Exceptions; +using Aliyun.Acs.Core.Profile; +using System; +using System.Collections.Generic; +using System.IO; +using System.Net; +using System.Text; +using System.Text.RegularExpressions; +using System.Windows.Forms; +using System.Xml; +using static Aliyun.Acs.Alidns.Model.V20150109.DescribeSubDomainRecordsResponse; + +namespace net.nutcore.aliddns +{ + public partial class mainForm : Form + { + static IClientProfile clientProfile; + static DefaultAcsClient client; + + public mainForm() + { + InitializeComponent(); + this.MinimizeBox = false; //取消窗口最小化按钮 + this.MaximizeBox = false; //取消窗口最大化按钮 + } + + private void mainForm_Load(object sender, EventArgs e) + { + try //检查设置文件,如果没有则新建,并赋值默认值 + { + string ExePath = System.AppDomain.CurrentDomain.BaseDirectory; + string config_file = ExePath + "aliddns_config.xml"; + if (File.Exists(config_file) != true) //当设置文件aliddns_config.xml不存在时,创建一个新的。 + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "没有找到设置文件 aliddns_config.xml,重新创建!" + "\r\n"); + if (saveConfigFile()) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "设置文件 aliddns_config.xml 创建成功!" + "\r\n"); + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "设置文件设置项目默认赋值完成!" + "\r\n"); + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "请填写正确内容,点击“测试并保存”完成设置!" + "\r\n"); + } + } + } + catch(Exception error) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "运行出错!信息:" + error + "\r\n"); + this.Dispose(); + } + + //读取设置文件config.xml + readConfigFile(); + //窗体根据参数判断是否最小化驻留系统托盘 + if (checkBox_minimized.Checked == true) + { + this.ShowInTaskbar = false; //从状态栏清除 + this.WindowState = FormWindowState.Minimized; //窗体最小化 + this.Hide(); //窗体隐藏 + } + else if (checkBox_minimized.Checked == false) + { + this.Show(); //窗体显示 + this.WindowState = FormWindowState.Normal; //窗体正常化 + this.ShowInTaskbar = true; //从状态栏显示 + } + + try //获取WAN口IP + { + localIP.Text = getLocalIP(); + } + catch (Exception) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "获取WAN口IP失败!" + "\r\n"); + } + + try + { + clientProfile = DefaultProfile.GetProfile("cn-hangzhou", accessKeyId.Text, accessKeySecret.Text); + client = new DefaultAcsClient(clientProfile); + domainIP.Text = getDomainIP(); + } + catch (Exception) + { + + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "获取域名和绑定IP失败,请检查设置项目内容和网络状态!" + "\r\n"); + } + } + + private void readConfigFile() + { + try + { + //Create xml object + XmlDocument xmlDOC = new XmlDocument(); + string ExePath = System.AppDomain.CurrentDomain.BaseDirectory; + string config_file = ExePath + "aliddns_config.xml"; + xmlDOC.Load(config_file); + XmlNodeReader readXML = new XmlNodeReader(xmlDOC); + XmlNodeList nodes = xmlDOC.SelectSingleNode("Config").ChildNodes; //读取config节点下所有元素 + /* + for (int i = 0; i < nodes.Count; i++) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + nodes[i].Name + ":" + nodes[i].InnerText + "\r\n"); //显示读取内容,用于调试DEBUG。 + } + string[] config = new string[nodes.Count]; //创建一个设置读取数组用于存储读取内容 + int i = 0; + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "设置文件找到,开始读取..." + "\r\n"); + while (readXML.Read()) + { + readXML.MoveToElement(); //Forward + if (readXML.NodeType == XmlNodeType.Text) //(node.NodeType 是Text时,即是最内层 即innertext值,node.Attributes为null。 + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + readXML.NodeType + "\r\n"); //显示读取内容,用于调试DEBUG。 + config[i] = readXML.Value; + //此行用于调试读取内容 + //textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "项目[" + i + "]: " + config[i] + "\r\n"); //显示读取内容,用于调试DEBUG。 + i++; + } + }*/ + accessKeyId.Text = nodes[0].InnerText; + accessKeySecret.Text = nodes[1].InnerText; + recordId.Text = nodes[2].InnerText; + fullDomainName.Text = nodes[3].InnerText; + label_nextUpdateSeconds.Text = newSeconds.Text = nodes[4].InnerText; + if (nodes[5].InnerText == "On") checkBox_autoUpdate.Checked = true; + else checkBox_autoUpdate.Checked = false; + //if ( config[5] == "On" ) autoUpdateOn.Checked = true; + //if ( config[5] == "Off ") autoUpdateOff.Checked = true; + comboBox_whatIsUrl.Text = nodes[6].InnerText; + if (nodes[7].InnerText == "On") checkBox_autoBoot.Checked = true; + else checkBox_autoBoot.Checked = false; + if (nodes[8].InnerText == "On") checkBox_minimized.Checked = true; + else checkBox_minimized.Checked = false; + if (nodes[9].InnerText == "On") + checkBox_logAutoSave.Checked = true; + else + checkBox_logAutoSave.Checked = false; + + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "设置文件读取成功!" + "\r\n"); + } + catch (Exception error) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "运行出错!信息: " + error + "\r\n"); + } + + } + + private bool saveConfigFile() + { + try + { + if (accessKeyId.Text == "" || accessKeySecret.Text == "" || recordId.Text == "" || fullDomainName.Text == "" || newSeconds.Text == "" || comboBox_whatIsUrl.Text == "") + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "任何值都不能为空!无法填写请输入null或0!" + "\r\n"); + return false; + } + string ExePath = System.AppDomain.CurrentDomain.BaseDirectory; + string config_file = ExePath + "aliddns_config.xml"; + XmlTextWriter textWriter = new XmlTextWriter(config_file, null); + textWriter.WriteStartDocument(); //文档开始 + + textWriter.WriteComment("AlidnsAutoCheckTool"); + textWriter.WriteComment("Version:Beta 1.0"); + //Start config file + textWriter.WriteStartElement("Config"); //设置项目开始 + + textWriter.WriteStartElement("AccessKeyID", ""); + textWriter.WriteString(accessKeyId.Text); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("AccessKeySecret", ""); + textWriter.WriteString(accessKeySecret.Text); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("RecordID", ""); + textWriter.WriteString(recordId.Text); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("fullDomainName", ""); + textWriter.WriteString(fullDomainName.Text); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("WaitingTime", ""); + textWriter.WriteString(newSeconds.Text); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("autoUpdate", ""); + if (checkBox_autoUpdate.Checked == true) + textWriter.WriteString("On"); + else + textWriter.WriteString("Off"); + /*if (autoUpdateOn.Checked == true) + textWriter.WriteString("On"); + if (autoUpdateOff.Checked) + textWriter.WriteString("Off");*/ + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("whatIsUrl", ""); + textWriter.WriteString(comboBox_whatIsUrl.Text); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("autoBoot", ""); + if (checkBox_autoBoot.Checked == true) + textWriter.WriteString("On"); + else + textWriter.WriteString("Off"); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("minimized", ""); + if (checkBox_minimized.Checked == true) + textWriter.WriteString("On"); + else + textWriter.WriteString("Off"); + textWriter.WriteEndElement(); + + textWriter.WriteStartElement("logautosave", ""); + if (checkBox_logAutoSave.Checked == true) + textWriter.WriteString("On"); + else + textWriter.WriteString("Off"); + textWriter.WriteEndElement(); + + textWriter.WriteEndElement(); //设置项目结束 + textWriter.WriteEndDocument();//文档结束 + textWriter.Close(); //文档保存关闭 + + label_nextUpdateSeconds.Text = newSeconds.Text; + + return true; + } + catch (Exception error) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "运行出错!信息: " + error + "\r\n"); + return false; + } + + } + + private string getLocalIP() + { + try + { + string strUrl = comboBox_whatIsUrl.Text; //"http://whatismyip.akamai.com/"; + Uri uri = new Uri(strUrl); + WebRequest webreq = WebRequest.Create(uri); + Stream s = webreq.GetResponse().GetResponseStream(); + StreamReader sr = new StreamReader(s, Encoding.Default); + string all = sr.ReadToEnd(); + //textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "DEBUG信息:" + all + "\r\n"); + //Cut the string + /* + string[] symbols = new string[2] { "[", "]" }; + string[] data = all.Split(symbols, 30, StringSplitOptions.RemoveEmptyEntries); + string ip = data[1];*/ + all = Regex.Replace(all, @"(\d+)", "000$1"); + //textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "DEBUG信息:" + all + "\r\n"); + all = Regex.Replace(all, @"0+(\d{1,4})", "$1"); + //textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "DEBUG信息:" + all + "\r\n"); + string reg = @"(\d{1,4}\.\d{1,4}\.\d{1,4}\.\d{1,4})"; + Regex regex = new Regex(reg); + Match match = regex.Match(all); + //textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "DEBUG信息:" + match + "\r\n"); + string ip = match.Groups[1].Value; + //textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "DEBUG信息:" + ip + "\r\n"); + //return Regex.Replace(ip, @"0*(\d+)", "$1"); + + //string ip = all; + if (ip.Length > 0) + { + label_localIpStatus.Text = "已连接"; + label_localIpStatus.ForeColor = System.Drawing.Color.FromArgb(0, 0, 0, 255); + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "成功获取WAN口IP:" + ip + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_yellow; + } + //return ip; + return Regex.Replace(ip, @"0*(\d+)", "$1"); + } + catch (Exception) + { + + label_localIpStatus.Text = "无连接"; + label_localIpStatus.ForeColor = System.Drawing.Color.FromArgb(255,255,0,0); + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "获取WAN口IP失败,请检查设置!" + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_gray; + return "0.0.0.0"; + } + } + + private bool setRecordId() + { + DescribeSubDomainRecordsRequest request = new DescribeSubDomainRecordsRequest(); + request.SubDomain = fullDomainName.Text; + try + { + DescribeSubDomainRecordsResponse response = client.GetAcsResponse(request); + List list = response.DomainRecords; + + if (list.Count == 0) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "阿里云DNS服务访问成功,但没有找到对应域名信息!" + "\r\n"); + if (addDomainRecord()) + return true; + else + return false; + } + + int i = 0; + + foreach (Record record in list) + { + i++; + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "阿里云DNS服务返回RecordId:" + i.ToString() + " RecordId:" + record.RecordId + "\r\n"); + recordId.Text = record.RecordId; + globalRR.Text = record.RR; + globalDomainType.Text = record.Type; + globalValue.Text = domainIP.Text = record.Value; + label_DomainIpStatus.Text = "已绑定"; + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_yellow; + label_DomainIpStatus.ForeColor = System.Drawing.Color.FromArgb(0, 0, 0, 255); + } + return true; + } + //处理错误 + catch (ServerException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Server Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + return false; + } + catch (ClientException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Client Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + return false; + } + } + + private string getDomainIP() + { + DescribeDomainRecordInfoRequest request = new DescribeDomainRecordInfoRequest(); + request.RecordId = recordId.Text; + try + { + DescribeDomainRecordInfoResponse response = client.GetAcsResponse(request); + if (response.Value != "0.0.0.0") + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名:" + response.RR + "." + response.DomainName + " 已经绑定IP:" + response.Value + "\r\n"); + recordId.Text = response.RecordId; + globalRR.Text = response.RR; + globalDomainType.Text = response.Type; + globalValue.Text = response.Value; + label_DomainIpStatus.Text = "已绑定"; + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_yellow; + label_DomainIpStatus.ForeColor = System.Drawing.Color.FromArgb(0, 0, 0, 255); + return response.Value; + } + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "获取域名绑定IP失败!" + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + return "0.0.0.0"; + } + //处理错误 + catch (ServerException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Server Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + label_DomainIpStatus.Text = "未绑定"; + label_DomainIpStatus.ForeColor = System.Drawing.Color.FromArgb(255, 255, 0, 0); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + return "0.0.0.0"; + } + catch (ClientException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Client Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + label_DomainIpStatus.Text = "未绑定"; + label_DomainIpStatus.ForeColor = System.Drawing.Color.FromArgb(255, 255, 0, 0); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + return "0.0.0.0"; + } + } + + private void updateDomainRecord() + { + string[] symbols = new string[1] { "." }; + string[] data = fullDomainName.Text.Split(symbols, 30, StringSplitOptions.RemoveEmptyEntries); + string domainRR = data[0]; + string domainName = data[1] + "." + data[2]; + + UpdateDomainRecordRequest request = new UpdateDomainRecordRequest(); + request.Type = "A"; + request.RR = domainRR; + request.RecordId = recordId.Text; + request.Value = localIP.Text; + try + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "正在将WAN口IP:" + localIP.Text + "与域名" + fullDomainName.Text + "绑定..." + "\r\n"); + UpdateDomainRecordResponse response = client.GetAcsResponse(request); + if (response.RecordId != null) + { + domainIP.Text = localIP.Text; //更新窗体数据 + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_green; + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名绑定IP更新成功!" + "\r\n"); + } + recordId.Text = response.RecordId; + } + //处理错误 + catch (ServerException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Server Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + } + catch (ClientException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Client Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + } + } + + private bool addDomainRecord() + { + string[] symbols = new string[1] { "." }; + string[] data = fullDomainName.Text.Split(symbols, 30, StringSplitOptions.RemoveEmptyEntries); + string domainRR = data[0]; + string domainName = data[1] + "." + data[2]; + + AddDomainRecordRequest request = new AddDomainRecordRequest(); + request.Type = "A"; + request.RR = domainRR; + request.DomainName = domainName; + request.Value = localIP.Text; + try + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "正在向阿里云DNS服务添加域名:" + fullDomainName.Text + "\r\n"); + AddDomainRecordResponse response = client.GetAcsResponse(request); + if (response.RecordId != null) + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "RecordId:" + response.RecordId + " 域名:" + fullDomainName.Text + "添加成功!" + "\r\n"); + recordId.Text = response.RecordId; + globalDomainType.Text = request.Type; + globalRR.Text = request.RR; + globalValue.Text = domainIP.Text = request.Value; + label_DomainIpStatus.Text = "已绑定"; + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_green; + label_DomainIpStatus.ForeColor = System.Drawing.Color.FromArgb(0, 0, 0, 255); + return true; + } + //处理错误 + catch (ServerException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Server Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + return false; + } + catch (ClientException e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Client Exception: " + e.ErrorCode + e.ErrorMessage + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + return false; + } + } + + private void updatePrepare() + { + label_nextUpdateSeconds.Text = newSeconds.Text; + try + { + localIP.Text = getLocalIP(); + domainIP.Text = getDomainIP(); + if (domainIP.Text == localIP.Text) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "WAN口IP:" + localIP.Text + " 与域名绑定IP:" + domainIP.Text + "一致,无需更新!" + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_green; + } + else + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "WAN口IP:" + localIP.Text + " 与域名绑定IP:" + domainIP.Text + "不一致,需要更新!" + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_yellow; + updateDomainRecord(); + } + + //localIP.Text = getLocalIP(); + //domainIP.Text = getDomainIP(); + } + catch (Exception) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名绑定IP更新失败!" + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + } + } + + //Events in form + private void updateNow_Click(object sender, EventArgs e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---立即开始WAN口IP和域名绑定IP进行查询比较---" + "\r\n"); + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_yellow; + updatePrepare(); + } + + private void checkConfig_Click(object sender, EventArgs e) + { + try + { + localIP.Text = getLocalIP(); //读取WAN口IP + //domainIP.Text = getDomainIP(); //读取AliDDNS已经绑定IP + + clientProfile = DefaultProfile.GetProfile("cn-hangzhou", accessKeyId.Text, accessKeySecret.Text); + client = new DefaultAcsClient(clientProfile); + if (setRecordId()) //检查能否从服务器返回RecordId,返回则设置正确,否则设置不正确 + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "设置项目内容填写正确,即将保存到设置文件! " + "\r\n"); + + if (saveConfigFile()) //检查设置文件是否保存成功 + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "设置文件保存成功! " + "\r\n"); + else + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "设置文件保存失败,请检查文件权限! " + "\r\n"); + } + else + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "阿里云DNS服务没有返回RecordId,设置项目内容没有保存!" + "\r\n"); + } + + } + catch (Exception) { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "阿里云DNS服务访问失败,请检查账户accessKeyId和accessKeySecret!" + "\r\n"); + label_DomainIpStatus.Text = "未绑定"; + domainIP.Text = "0.0.0.0"; + recordId.Text = "null"; + globalRR.Text = "null"; + globalDomainType.Text = "null"; + globalValue.Text = "null"; + this.notifyIcon_sysTray.Icon = Properties.Resources.alidns_red; + label_DomainIpStatus.ForeColor = System.Drawing.Color.FromArgb(255, 255, 0, 0); + } + } + + private void autoUpdateTimer_Tick(object sender, EventArgs e) + { + try + { + if (checkBox_autoUpdate.Checked == true && label_nextUpdateSeconds.Text != "") + { + int seconds = Convert.ToInt32(label_nextUpdateSeconds.Text); + if (seconds > 0) seconds--; + label_nextUpdateSeconds.Text = seconds.ToString(); + + if (seconds == 0) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---计划任务被触发,开始WAN口IP和域名IP查询比较---" + "\r\n"); + updatePrepare(); + } + } + if (checkBox_logAutoSave.Checked == true) + { + if ( textBox_log.GetLineFromCharIndex(textBox_log.Text.Length) >10000 ) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---运行日志超过10000行,开始日志转储---" + "\r\n"); + logToFiles(); + } + } + } + catch (Exception error) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "运行出错!信息: " + error + "\r\n"); + } + } + + private void toolStripMenuItem1_Click(object sender, EventArgs e) + { + this.Dispose(); + } + + private void notifyIcon_sysTray_MouseDoubleClick(object sender, MouseEventArgs e) + { + if (this.WindowState == FormWindowState.Minimized) + { + this.Show(); //窗体显示 + this.WindowState = FormWindowState.Normal; //窗体正常化 + this.ShowInTaskbar = true; //从状态栏显示 + } + else if (this.WindowState == FormWindowState.Normal) + { + this.ShowInTaskbar = false; //从状态栏清除 + this.WindowState = FormWindowState.Minimized; //窗体最小化 + this.Hide(); //窗体隐藏 + } + } + + private void mainForm_FormClosing(object sender, FormClosingEventArgs e) + { + e.Cancel = true; //取消关闭窗体 + this.WindowState = FormWindowState.Minimized; //窗体最小化 + this.Hide(); //窗体隐藏 + } + + private void button_whatIsTest_Click(object sender, EventArgs e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "开始向网址发起查询... " + "\r\n"); + localIP.Text = getLocalIP(); + } + + private void button_ShowHide_Click(object sender, EventArgs e) + { + if (button_ShowHide.Text == "显示录入") + { + button_ShowHide.Text = "隐藏录入"; + accessKeyId.PasswordChar = (char)0; + accessKeySecret.PasswordChar = (char)0; + } + else + { + button_ShowHide.Text = "显示录入"; + accessKeyId.PasswordChar = '*'; + accessKeySecret.PasswordChar = '*'; + } + } + + private void fullDomainName_ModifiedChanged(object sender, EventArgs e) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名修改后请测试并保存!" + "\r\n"); + } + + private void checkBox_autoBoot_CheckedChanged(object sender, EventArgs e) + { + if(checkBox_autoBoot.Checked == true) + { + //获取执行该方法的程序集,并获取该程序集的文件路径(由该文件路径可以得到程序集所在的目录) + string thisExecutablePath = System.Reflection.Assembly.GetExecutingAssembly().Location;//this.GetType().Assembly.Location; + //SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run注册表中这个路径是开机自启动的路径 + Microsoft.Win32.RegistryKey Rkey = Microsoft.Win32.Registry.LocalMachine.CreateSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"); + Rkey.SetValue("AliDDNS Tray", thisExecutablePath); + Rkey.Close(); + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "随系统启动自动运行设置成功!" + "\r\n"); + } + else + { + Microsoft.Win32.RegistryKey Rkey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run",true); + Rkey.DeleteValue("AliDDNS Tray"); + Rkey.Close(); + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "随系统启动自动运行取消!" + "\r\n"); + } + + + } + + private void ToolStripMenuItem_About_Click(object sender, EventArgs e) + { + this.MinimizeBox = false; //取消窗口最小化按钮 + this.MaximizeBox = false; //取消窗口最大化按钮 + Form_About about = new Form_About(); + about.Show(this); + } + + private void checkBox_logAutoSave_CheckedChanged(object sender, EventArgs e) + { + if (checkBox_logAutoSave.Checked == true) + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "日志自动转储启用成功!日志超过1万行将自动转储。" + "\r\n"); + else + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "日志自动转储取消!" + "\r\n"); + } + + private void logToFiles() + { + string logPath = System.AppDomain.CurrentDomain.BaseDirectory; + string logfile = logPath + DateTime.Now.ToString("yyyyMMddHHmmss") + "aliddns_log.txt"; + if (!File.Exists(logfile)) + { + //using (File.Create(logPath)) { } + System.IO.StreamWriter sw = System.IO.File.AppendText(logfile); + sw.WriteLine(textBox_log.Text); + sw.Close(); + sw.Dispose(); + textBox_log.Clear(); + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "日志转储为: " + logfile + "\r\n"); + } + } + + private void checkBox_autoUpdate_CheckedChanged(object sender, EventArgs e) + { + if(checkBox_autoUpdate.Checked == true) + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名记录自动更新启用成功!" + "\r\n"); + else + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名记录自动更新取消!" + "\r\n"); + } + + private void checkBox_minimized_CheckedChanged(object sender, EventArgs e) + { + if (checkBox_minimized.Checked == true) + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "软件启动时驻留到系统托盘启用!" + "\r\n"); + else + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "软件启动时驻留到系统托盘取消!" + "\r\n"); + } + + private void button_setIP_Click(object sender, EventArgs e) + { + try + { + string strIn = maskedTextBox_setIP.Text; + if (Regex.IsMatch(strIn, @"^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$")) + { + localIP.Text = maskedTextBox_setIP.Text; + updateDomainRecord(); + //getDomainIP(); + } + else + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "请检查输入格式是否正确!IP地址示例格式:255.255.255.255" + "\r\n"); + } + } + catch(Exception error) + { + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "出错:" + error + "\r\n"); + } + + } + + } +} diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/main.resx b/net.nutcore.aliddns/net.nutcore.aliddns/main.resx new file mode 100644 index 0000000..8f527b3 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/main.resx @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 173, 17 + + + 291, 17 + + + + + AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAABILAAASCwAAAAAAAAAA + AAAAAAAARU36AEVN+gBFTfoHRU36IUVN+kBFTfpgRU36hEVN+rJFTfrWRU365kVN+u9FTfr2RU36/EVN + +v9FTfr/RU36/0VN+v9FTfr+RU36+UVN+vJFTfrpRU363EVN+r1FTfqPRU36aEVN+kdFTfomRU36CEVN + +gBFTfoAAAAAAEVN+gBFTfoBRU36L0VN+plFTfrbRU368EVN+vpFTfr+RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr7RU3680VN + +t9FTfqgRU36MkVN+gFFTfoARU36AEVN+jBFTfrWRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfraRU36MEVN+gBFTfoFRU36okVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfqaRU36BkVN+h5FTfrXRU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/REz6/0RM+v9ETPr/REz6/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+ttFTfoiRU36PUVN+u1FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/Qkr4/0ZO9f9PVvL/VFvw/1Vb7/9QV/D/R0/y/0JK + 9f9DS/n/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU368EVN+kJFTfpxRU36+kVN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/Q0v4/1FY9P9zefD/p6v0/8nL+f/S1Pr/09X6/8zO + +f+xtPT/fIHs/1Vb7P9DS/T/REz6/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr6RU36YUVN + +qZFTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/REz6/0ZO9/9yePP/w8X5/+Xm/v/r7P//6+z//+Xm + ///k5f//6er//+zt///n6P7/ztD5/4CF7P9IUO//REz5/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfqERU36wEVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0RM+v9IUPj/j5T2/+Hi/f/u7///6+z//+3u + //+8v/v/cHb7/2ty+/+anv3/5+j//+zt///u7///5+n+/6Km8f9NVO7/REz5/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+rNFTfrSRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/Rk75/46T9//o6f7/7vD//8TH + /f/P0v3/7O3+/3l/9/8+R/n/QEj5/1de+v/Y2v7/5OX9/8LF+f/p6///7u/+/6Sn8f9JUPD/REz6/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU3610VN+uBFTfr/RU36/0VN+v9FTfr/RU36/0NM+v9udfj/4eP9//Hy + //+ytfv/YGb3/9DS/f/l5/3/cXfw/1lf7/9bYe//XWPv/8jL+v/r7P7/c3nv/5me+P/s7f//7O3+/4OI + 7v9DS/X/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrmRU366UVN+v9FTfr/RU36/0VN+v9FTfr/TFT5/8DD + /P/29///2Nr7/32C7/+VmfH/6uv+//Hx/v/h4vv/4uP7/+Lj+//f4Pv/6+z9//P0//+vsvL/dXrr/8XH + 9//29v//1tj5/1de8P9ETPr/RU36/0VN+v9FTfr/RU36/0VN+vBFTfrwRU36/0VN+v9FTfr/RU36/0NL + +v9rcfr/6er+//f3///t7v3/7u/9//f3///29///8PH+/+jp///k5v//5Ob//+fo///t7v//9fb///f3 + ///x8f3/6uv8//X2///z9P7/gobv/0JK9/9FTfr/RU36/0VN+v9FTfr/RU3690VN+vVFTfr/RU36/0VN + +v9FTfr/REz6/6Gl+//5+f//9/j//+nq///P0f7/4OH+//r7//+usvf/Ymn5/15l+/9eZfv/YGf7/4iN + /P/y8v//7e79/87Q/P/k5f//9fb///v7//+8v/b/SVD1/0VN+v9FTfr/RU36/0VN+v9FTfr9RU36+EVN + +v9FTfr/RU36/0VN+v9IUPr/wsX9//////+/wvn/ZWz6/05W+v+2uv3//v///42S8/9ASPj/Q0z6/0NM + +v9BSfr/ZWz7/+/w///e3/v/W2L2/1xj+/+nqv3/+vv//9vd+v9TWvX/REz6/0VN+v9FTfr/RU36/0VN + +v9FTfr6RU36/0VN+v9FTfr/RU36/0tT+v/O0P7//////4uQ8/9ASPj/Rk76/7y//f//////iIzy/z5G + 9v9BSfb/QUn2/z9H9v9haPn/7u/+/+Pk/P9XXvb/QEj6/3B2+//29///5uf8/1lg9v9ETPr/RU36/0VN + +v9FTfr/RU36/0VN+vpFTfr/RU36/0VN+v9FTfr/S1P6/87Q/v//////j5Tx/0BI9/9DS/f/vL/7//// + //+lqPH/dnvs/4GG7f+Ch+z/en7s/4iM7//z9P7/4+T7/1Ra8v8/R/j/dHr7//n5///m5/z/WWD3/0RM + +v9FTfr/RU36/0VN+v9FTfr/RU3690VN+v9FTfr/RU36/0VN+v9IT/r/wcT9//////+3uvT/W2Lv/4OI + 8P/e4Pr///////v7/v/9/f7////+/////v/+/v7/+/v+///////y8v3/lZnu/11j6/+coPf//////9zd + /P9SWvj/REz6/0VN+v9FTfr/RU36/0VN+v9FTfr0RU36/0VN+v9FTfr/RU36/0NL+v+anvz///////T1 + /f/n6Pv//f3+//39////////8PD9/87Q/f/FyP7/xMf9/8rM/v/i4/7//v7///7+///+/v//7Oz7/+7u + /P//////t7r5/0hP+f9FTfr/RU36/0VN+v9FTfr/RU36/kVN+u5FTfr/RU36/0VN+v9FTfr/Q0v6/2Rr + +//s7f7///////Pz/f+1uPv/o6f9//v8///P0fj/UFf2/0hQ+v9IUPr/SFD6/5uf+///////xcf5/6qt + +//o6f7///////n6/v99gvj/Qkr6/0VN+v9FTfr/RU36/0VN+v9FTfr5RU365kVN+v9FTfr/RU36/0VN + +v9FTfr/SVH6/7q9/f//////6On7/2Jo7P9dZPf/7+///+Lj+v9VXPT/REz6/0VN+v9GTvr/ur38//// + //+Fivb/Uln1/9PV+///////1Nb8/1Rb+f9ETPr/RU36/0VN+v9FTfr/RU36/0VN+vJFTfrcRU36/0VN + +v9FTfr/RU36/0VN+v9DTPr/ZGv7/+Pk/v//////0dL2/21z7P/W1/v/9PX9/2hu8f9DS/n/REz6/09X + +v/W2P3/9PT9/32C8/+6vfj//v7///Pz/v96gPr/Q0v6/0VN+v9FTfr/RU36/0VN+v9FTfr/RU366UVN + +s1FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/gYb8/+7v////////4+T5/+Lj+v//////io/v/z5G + 8/8/R/X/Y2r3/+7v/v/z9P3/4OH6//39///4+P//mp77/0dP+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfrbRU36ukVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/gYb8/+Tl/v////////////// + ///Y2vj/j5Ps/4qO7f+8vvT//f3/////////////7+/+/5eb/P9JUfr/REz6/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+rxFTfqbRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/ZGv7/7q9 + /f/t7v///f3////////////////////////+/v//8vL//8nL/f9zefv/Rk76/0RM+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36jkVN+mRFTfr4RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9DTPr/SVH6/2Rr+/+anvz/wsT9/8/R/v/Q0v7/xcj9/6Wp/f9tc/v/TVT6/0NL+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+vtFTfpmRU36N0VN+upFTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/Q0v6/0NL+v9IT/r/S1P6/0tT+v9IUPr/REz6/0NL+v9ETPr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU368kVN+kVFTfoaRU360kVN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrdRU36JUVN+gRFTfqaRU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+p9FTfoHRU36AEVN + +ixFTfrSRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrWRU36MEVN + +gBFTfoARU36AEVN+i5FTfqfRU3610VN+u5FTfr6RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr+RU36+EVN+utFTfrURU36nUVN + +i5FTfoARU36AAAAAABFTfoARU36AEVN+gZFTfodRU36PUVN+m9FTfqkRU36wEVN+tJFTfrfRU366EVN + +vBFTfr1RU36+EVN+vpFTfr6RU36+EVN+vRFTfrtRU365UVN+txFTfrORU36u0VN+pxFTfplRU36OEVN + +htFTfoFRU36AEVN+gAAAAAA4AAAB4AAAAGAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACAAAABgAAAAeAAAAc= + + + + 532, 17 + + + 56 + + + + AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAABILAAASCwAAAAAAAAAA + AAAAAAAARU36AEVN+gBFTfoHRU36IUVN+kBFTfpgRU36hEVN+rJFTfrWRU365kVN+u9FTfr2RU36/EVN + +v9FTfr/RU36/0VN+v9FTfr+RU36+UVN+vJFTfrpRU363EVN+r1FTfqPRU36aEVN+kdFTfomRU36CEVN + +gBFTfoAAAAAAEVN+gBFTfoBRU36L0VN+plFTfrbRU368EVN+vpFTfr+RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr7RU3680VN + +t9FTfqgRU36MkVN+gFFTfoARU36AEVN+jBFTfrWRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfraRU36MEVN+gBFTfoFRU36okVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfqaRU36BkVN+h5FTfrXRU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/REz6/0RM+v9ETPr/REz6/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+ttFTfoiRU36PUVN+u1FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/Qkr4/0ZO9f9PVvL/VFvw/1Vb7/9QV/D/R0/y/0JK + 9f9DS/n/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU368EVN+kJFTfpxRU36+kVN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/Q0v4/1FY9P9zefD/p6v0/8nL+f/S1Pr/09X6/8zO + +f+xtPT/fIHs/1Vb7P9DS/T/REz6/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr6RU36YUVN + +qZFTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/REz6/0ZO9/9yePP/w8X5/+Xm/v/r7P//6+z//+Xm + ///k5f//6er//+zt///n6P7/ztD5/4CF7P9IUO//REz5/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfqERU36wEVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0RM+v9IUPj/j5T2/+Hi/f/u7///6+z//+3u + //+8v/v/cHb7/2ty+/+anv3/5+j//+zt///u7///5+n+/6Km8f9NVO7/REz5/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+rNFTfrSRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/Rk75/46T9//o6f7/7vD//8TH + /f/P0v3/7O3+/3l/9/8+R/n/QEj5/1de+v/Y2v7/5OX9/8LF+f/p6///7u/+/6Sn8f9JUPD/REz6/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU3610VN+uBFTfr/RU36/0VN+v9FTfr/RU36/0NM+v9udfj/4eP9//Hy + //+ytfv/YGb3/9DS/f/l5/3/cXfw/1lf7/9bYe//XWPv/8jL+v/r7P7/c3nv/5me+P/s7f//7O3+/4OI + 7v9DS/X/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrmRU366UVN+v9FTfr/RU36/0VN+v9FTfr/TFT5/8DD + /P/29///2Nr7/32C7/+VmfH/6uv+//Hx/v/h4vv/4uP7/+Lj+//f4Pv/6+z9//P0//+vsvL/dXrr/8XH + 9//29v//1tj5/1de8P9ETPr/RU36/0VN+v9FTfr/RU36/0VN+vBFTfrwRU36/0VN+v9FTfr/RU36/0NL + +v9rcfr/6er+//f3///t7v3/7u/9//f3///29///8PH+/+jp///k5v//5Ob//+fo///t7v//9fb///f3 + ///x8f3/6uv8//X2///z9P7/gobv/0JK9/9FTfr/RU36/0VN+v9FTfr/RU3690VN+vVFTfr/RU36/0VN + +v9FTfr/REz6/6Gl+//5+f//9/j//+nq///P0f7/4OH+//r7//+usvf/Ymn5/15l+/9eZfv/YGf7/4iN + /P/y8v//7e79/87Q/P/k5f//9fb///v7//+8v/b/SVD1/0VN+v9FTfr/RU36/0VN+v9FTfr9RU36+EVN + +v9FTfr/RU36/0VN+v9IUPr/wsX9//////+/wvn/ZWz6/05W+v+2uv3//v///42S8/9ASPj/Q0z6/0NM + +v9BSfr/ZWz7/+/w///e3/v/W2L2/1xj+/+nqv3/+vv//9vd+v9TWvX/REz6/0VN+v9FTfr/RU36/0VN + +v9FTfr6RU36/0VN+v9FTfr/RU36/0tT+v/O0P7//////4uQ8/9ASPj/Rk76/7y//f//////iIzy/z5G + 9v9BSfb/QUn2/z9H9v9haPn/7u/+/+Pk/P9XXvb/QEj6/3B2+//29///5uf8/1lg9v9ETPr/RU36/0VN + +v9FTfr/RU36/0VN+vpFTfr/RU36/0VN+v9FTfr/S1P6/87Q/v//////j5Tx/0BI9/9DS/f/vL/7//// + //+lqPH/dnvs/4GG7f+Ch+z/en7s/4iM7//z9P7/4+T7/1Ra8v8/R/j/dHr7//n5///m5/z/WWD3/0RM + +v9FTfr/RU36/0VN+v9FTfr/RU3690VN+v9FTfr/RU36/0VN+v9IT/r/wcT9//////+3uvT/W2Lv/4OI + 8P/e4Pr///////v7/v/9/f7////+/////v/+/v7/+/v+///////y8v3/lZnu/11j6/+coPf//////9zd + /P9SWvj/REz6/0VN+v9FTfr/RU36/0VN+v9FTfr0RU36/0VN+v9FTfr/RU36/0NL+v+anvz///////T1 + /f/n6Pv//f3+//39////////8PD9/87Q/f/FyP7/xMf9/8rM/v/i4/7//v7///7+///+/v//7Oz7/+7u + /P//////t7r5/0hP+f9FTfr/RU36/0VN+v9FTfr/RU36/kVN+u5FTfr/RU36/0VN+v9FTfr/Q0v6/2Rr + +//s7f7///////Pz/f+1uPv/o6f9//v8///P0fj/UFf2/0hQ+v9IUPr/SFD6/5uf+///////xcf5/6qt + +//o6f7///////n6/v99gvj/Qkr6/0VN+v9FTfr/RU36/0VN+v9FTfr5RU365kVN+v9FTfr/RU36/0VN + +v9FTfr/SVH6/7q9/f//////6On7/2Jo7P9dZPf/7+///+Lj+v9VXPT/REz6/0VN+v9GTvr/ur38//// + //+Fivb/Uln1/9PV+///////1Nb8/1Rb+f9ETPr/RU36/0VN+v9FTfr/RU36/0VN+vJFTfrcRU36/0VN + +v9FTfr/RU36/0VN+v9DTPr/ZGv7/+Pk/v//////0dL2/21z7P/W1/v/9PX9/2hu8f9DS/n/REz6/09X + +v/W2P3/9PT9/32C8/+6vfj//v7///Pz/v96gPr/Q0v6/0VN+v9FTfr/RU36/0VN+v9FTfr/RU366UVN + +s1FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/gYb8/+7v////////4+T5/+Lj+v//////io/v/z5G + 8/8/R/X/Y2r3/+7v/v/z9P3/4OH6//39///4+P//mp77/0dP+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfrbRU36ukVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/gYb8/+Tl/v////////////// + ///Y2vj/j5Ps/4qO7f+8vvT//f3/////////////7+/+/5eb/P9JUfr/REz6/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+rxFTfqbRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/ZGv7/7q9 + /f/t7v///f3////////////////////////+/v//8vL//8nL/f9zefv/Rk76/0RM+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36jkVN+mRFTfr4RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9DTPr/SVH6/2Rr+/+anvz/wsT9/8/R/v/Q0v7/xcj9/6Wp/f9tc/v/TVT6/0NL+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+vtFTfpmRU36N0VN+upFTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/Q0v6/0NL+v9IT/r/S1P6/0tT+v9IUPr/REz6/0NL+v9ETPr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU368kVN+kVFTfoaRU360kVN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrdRU36JUVN+gRFTfqaRU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+p9FTfoHRU36AEVN + +ixFTfrSRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrWRU36MEVN + +gBFTfoARU36AEVN+i5FTfqfRU3610VN+u5FTfr6RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN + +v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr+RU36+EVN+utFTfrURU36nUVN + +i5FTfoARU36AAAAAABFTfoARU36AEVN+gZFTfodRU36PUVN+m9FTfqkRU36wEVN+tJFTfrfRU366EVN + +vBFTfr1RU36+EVN+vpFTfr6RU36+EVN+vRFTfrtRU365UVN+txFTfrORU36u0VN+pxFTfplRU36OEVN + +htFTfoFRU36AEVN+gAAAAAA4AAAB4AAAAGAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACAAAABgAAAAeAAAAc= + + + \ No newline at end of file diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj b/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj new file mode 100644 index 0000000..a2fa2b0 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj @@ -0,0 +1,158 @@ + + + + + Debug + AnyCPU + {018BAB83-CA31-4BDE-BC01-EEC283CEABEA} + WinExe + Properties + net.nutcore.aliddns + AliDDNS + v4.5.2 + 512 + true + false + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 0.0.0.%2a + false + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + alidns.ico + + + + aliyun-net-sdk-alidns.dll + + + aliyun-net-sdk-core.dll + + + + + + + + + + + + + + + + + + + + + + + Form + + + Form_About.cs + + + Form + + + main.cs + + + + + Form_About.cs + + + main.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + + + + + + + + + + + False + Microsoft .NET Framework 4.5.2 %28x86 和 x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + + + + + copy "$(SolutionDir)net.nutcore.aliddns\updateinfo.txt" "$(TargetDir)" + + + \ No newline at end of file diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt b/net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt new file mode 100644 index 0000000..31c0f68 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt @@ -0,0 +1,65 @@ +v3.7.1.0 +1ϵͳͼ״̬¹ܣɫ-ȡWANIP߻ȡIPʧܡɫ-ȡɹWANIPIPһ¡ɫ-ȡɹWANIPIPһ¡ɫ-WAN粻ͨ +2޸ĴʹǩˢBUG + +v3.7.0.4 +1Ӹ״̬ˢϵͳͼ깦ܡ + +v3.7.0.3 +1߳жϴ룬ȷǰûֻһʵظС + +v3.7.0.2 +1Żļȡͳʼ룬ļȡʱв + +v3.7.0.1 +1޸岼޸ɵĹʵʧBUG2ֹIPʱĸʽУ顣 + +v3.7.0 +1汾޸Ϊv3.7.0.02ָֹIPܣַܻȡWANIPʱΪʱȼܡ + +v3.6.1.1 +1ϵͳҼ˵ڡϢܡ + +v3.6.0.1 +1WANIPȡܣʹʽhttpϢвxxx.xxx.xxx.xxxʽ֣ΪWANIPأʹ÷Χ㡣2ַΪIPѯַ + +v3.6.0 +1汾޸Ϊ3.6.0 +2־Զתܡ +3޸BUG +4岼΢ + +v3.5.0.1 +1汾ŸΪ3.5.0.1 +2޸Ȼʾ3.2.0BUG +3ϵͳܡ +4ʱСפϵͳ̹ܡ +5ƵʱΪ¼¼ӡ + +v3.5.0 +1ϵͳܡ +2ʱСפϵͳ̹ܡ +3ƵʱΪ¼¼ӡ +4汾ŸΪ3.5.0 + +v3.4.0 +1޸ijBUG +2ϸʵַ־ +3ǷԶºWANIPȡַΪдļconfig.xml + +v3.3.0 +1ü߼ +2޸ĺӲʾ + +v3.2.0 +1޸IJ޸ġ +2ܣֱʾWAN״̬״̬ +3¼Aliyun˺Ϣ + +v3.1.0 +1 +2ԴBUG޸ġ +3ʵϸ޸ġ + +v3.0.0 +Fork from http://github.com/dtsdao/AliDDNS \ No newline at end of file